mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 00:11:45 +03:00
c61e397658
Scrollbars
60 lines
1.6 KiB
TypeScript
60 lines
1.6 KiB
TypeScript
import type { GraphSelection } from '@/providers/graphSelection'
|
|
import type { GraphNavigator } from '../src/providers/graphNavigator'
|
|
import { Rect } from '../src/util/data/rect'
|
|
import { Vec2 } from '../src/util/data/vec2'
|
|
|
|
export const graphNavigator: GraphNavigator = {
|
|
events: {} as any,
|
|
clientToScenePos: () => Vec2.Zero,
|
|
clientToSceneRect: () => Rect.Zero,
|
|
panAndZoomTo: () => {},
|
|
panTo: () => {},
|
|
scrollTo: () => {},
|
|
stepZoom: () => {},
|
|
transform: '',
|
|
prescaledTransform: '',
|
|
translate: Vec2.Zero,
|
|
targetScale: 1,
|
|
scale: 1,
|
|
sceneMousePos: Vec2.Zero,
|
|
viewBox: '',
|
|
viewport: Rect.Zero,
|
|
}
|
|
|
|
export function graphNavigatorWith(modifications?: Partial<GraphNavigator>): GraphNavigator {
|
|
return Object.assign({}, graphNavigator, modifications)
|
|
}
|
|
|
|
export const graphSelection: GraphSelection = {
|
|
events: {} as any,
|
|
anchor: undefined,
|
|
deselectAll: () => {},
|
|
handleSelectionOf: () => {},
|
|
setSelection: () => {},
|
|
hoveredNode: undefined,
|
|
hoveredPort: undefined,
|
|
isSelected: () => false,
|
|
isChanging: false,
|
|
mouseHandler: () => false,
|
|
selectAll: () => {},
|
|
selected: new Set(),
|
|
}
|
|
|
|
export function graphSelectionWith(modifications?: Partial<GraphSelection>): GraphSelection {
|
|
return Object.assign({}, graphSelection, modifications)
|
|
}
|
|
|
|
export const all = {
|
|
'graph navigator': graphNavigator,
|
|
'graph selection': graphSelection,
|
|
}
|
|
|
|
export function allWith(
|
|
modifications: Partial<{ [K in keyof typeof all]: Partial<(typeof all)[K]> }>,
|
|
): typeof all {
|
|
return {
|
|
'graph navigator': graphNavigatorWith(modifications['graph navigator']),
|
|
'graph selection': graphSelectionWith(modifications['graph selection']),
|
|
}
|
|
}
|