-
-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathgraph.ts
440 lines (369 loc) · 12.4 KB
/
graph.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
import { markRaw } from 'vue'
import type {
Actions,
Box,
Connection,
CoordinateExtent,
DefaultEdgeOptions,
Dimensions,
Edge,
EdgeMarkerType,
Element,
ElementData,
Elements,
FlowElements,
GraphEdge,
GraphNode,
MaybeElement,
Node,
Rect,
SnapGrid,
ViewportTransform,
XYPosition,
XYZPosition,
} from '../types'
import { isDef, snapPosition } from '.'
export function nodeToRect(node: GraphNode): Rect {
return {
...(node.computedPosition || { x: 0, y: 0 }),
width: node.dimensions.width || 0,
height: node.dimensions.height || 0,
}
}
export function getOverlappingArea(rectA: Rect, rectB: Rect) {
const xOverlap = Math.max(0, Math.min(rectA.x + rectA.width, rectB.x + rectB.width) - Math.max(rectA.x, rectB.x))
const yOverlap = Math.max(0, Math.min(rectA.y + rectA.height, rectB.y + rectB.height) - Math.max(rectA.y, rectB.y))
return Math.ceil(xOverlap * yOverlap)
}
export function getDimensions(node: HTMLElement): Dimensions {
return {
width: node.offsetWidth,
height: node.offsetHeight,
}
}
export function clamp(val: number, min = 0, max = 1) {
return Math.min(Math.max(val, min), max)
}
export function clampPosition(position: XYPosition, extent: CoordinateExtent): XYPosition {
return {
x: clamp(position.x, extent[0][0], extent[1][0]),
y: clamp(position.y, extent[0][1], extent[1][1]),
}
}
export function getHostForElement(element: HTMLElement): Document {
const doc = element.getRootNode() as Document
if ('elementFromPoint' in doc) {
return doc
}
return window.document
}
export function isEdge<Data = ElementData>(element: MaybeElement): element is Edge<Data> {
return element && typeof element === 'object' && 'id' in element && 'source' in element && 'target' in element
}
export function isGraphEdge<Data = ElementData>(element: MaybeElement): element is GraphEdge<Data> {
return isEdge(element) && 'sourceNode' in element && 'targetNode' in element
}
export function isNode<Data = ElementData>(element: MaybeElement): element is Node<Data> {
return element && typeof element === 'object' && 'id' in element && 'position' in element && !isEdge(element)
}
export function isGraphNode<Data = ElementData>(element: MaybeElement): element is GraphNode<Data> {
return isNode(element) && 'computedPosition' in element
}
function isNumeric(n: any): n is number {
return !Number.isNaN(n) && Number.isFinite(n)
}
export function isRect(obj: any): obj is Rect {
return isNumeric(obj.width) && isNumeric(obj.height) && isNumeric(obj.x) && isNumeric(obj.y)
}
export function parseNode(node: Node, existingNode?: GraphNode, parentNode?: string): GraphNode {
const initialState = {
id: node.id.toString(),
type: node.type ?? 'default',
dimensions: markRaw({
width: 0,
height: 0,
}),
computedPosition: markRaw({
z: 0,
...node.position,
}),
// todo: shouldn't be defined initially, as we want to use handleBounds to check if a node was actually initialized or not
handleBounds: {
source: [],
target: [],
},
draggable: undefined,
selectable: undefined,
connectable: undefined,
focusable: undefined,
selected: false,
dragging: false,
resizing: false,
initialized: false,
isParent: false,
position: {
x: 0,
y: 0,
},
data: isDef(node.data) ? node.data : {},
events: markRaw(isDef(node.events) ? node.events : {}),
} as GraphNode
return Object.assign(existingNode ?? initialState, node, { id: node.id.toString(), parentNode }) as GraphNode
}
export function parseEdge(edge: Edge, existingEdge?: GraphEdge, defaultEdgeOptions?: DefaultEdgeOptions): GraphEdge {
const initialState = {
id: edge.id.toString(),
type: edge.type ?? existingEdge?.type ?? 'default',
source: edge.source.toString(),
target: edge.target.toString(),
sourceHandle: edge.sourceHandle?.toString(),
targetHandle: edge.targetHandle?.toString(),
updatable: edge.updatable ?? defaultEdgeOptions?.updatable,
selectable: edge.selectable ?? defaultEdgeOptions?.selectable,
focusable: edge.focusable ?? defaultEdgeOptions?.focusable,
data: isDef(edge.data) ? edge.data : {},
events: markRaw(isDef(edge.events) ? edge.events : {}),
label: edge.label ?? '',
interactionWidth: edge.interactionWidth ?? defaultEdgeOptions?.interactionWidth,
...(defaultEdgeOptions ?? {}),
} as GraphEdge
return Object.assign(existingEdge ?? initialState, edge, { id: edge.id.toString() }) as GraphEdge
}
function getConnectedElements<T extends Node = Node>(
nodeOrId: Node | { id: string } | string,
nodes: T[],
edges: Edge[],
dir: 'source' | 'target',
): T[] {
const id = typeof nodeOrId === 'string' ? nodeOrId : nodeOrId.id
const connectedIds = new Set()
const origin = dir === 'source' ? 'target' : 'source'
for (const edge of edges) {
if (edge[origin] === id) {
connectedIds.add(edge[dir])
}
}
return nodes.filter((n) => connectedIds.has(n.id))
}
export function getOutgoers<N extends Node>(nodeOrId: Node | { id: string } | string, nodes: N[], edges: Edge[]): N[]
export function getOutgoers<T extends Elements>(
nodeOrId: Node | { id: string } | string,
elements: T,
): T extends FlowElements ? GraphNode[] : Node[]
export function getOutgoers(...args: any[]) {
if (args.length === 3) {
const [nodeOrId, nodes, edges] = args
return getConnectedElements(nodeOrId, nodes, edges, 'target')
}
const [nodeOrId, elements] = args
const nodeId = typeof nodeOrId === 'string' ? nodeOrId : nodeOrId.id
const outgoers = elements.filter((el: Element) => isEdge(el) && el.source === nodeId)
return outgoers.map((edge: Edge) => elements.find((el: Element) => isNode(el) && el.id === edge.target))
}
export function getIncomers<N extends Node>(nodeOrId: Node | { id: string } | string, nodes: N[], edges: Edge[]): N[]
export function getIncomers<T extends Elements>(
nodeOrId: Node | { id: string } | string,
elements: T,
): T extends FlowElements ? GraphNode[] : Node[]
export function getIncomers(...args: any[]) {
if (args.length === 3) {
const [nodeOrId, nodes, edges] = args
return getConnectedElements(nodeOrId, nodes, edges, 'source')
}
const [nodeOrId, elements] = args
const nodeId = typeof nodeOrId === 'string' ? nodeOrId : nodeOrId.id
const incomers = elements.filter((el: Element) => isEdge(el) && el.target === nodeId)
return incomers.map((edge: Edge) => elements.find((el: Element) => isNode(el) && el.id === edge.source))
}
export function getEdgeId({ source, sourceHandle, target, targetHandle }: Connection) {
return `vueflow__edge-${source}${sourceHandle ?? ''}-${target}${targetHandle ?? ''}`
}
export function connectionExists(edge: Edge | Connection, elements: Elements) {
return elements.some(
(el) =>
isEdge(el) &&
el.source === edge.source &&
el.target === edge.target &&
(el.sourceHandle === edge.sourceHandle || (!el.sourceHandle && !edge.sourceHandle)) &&
(el.targetHandle === edge.targetHandle || (!el.targetHandle && !edge.targetHandle)),
)
}
export function rendererPointToPoint({ x, y }: XYPosition, { x: tx, y: ty, zoom: tScale }: ViewportTransform): XYPosition {
return {
x: x * tScale + tx,
y: y * tScale + ty,
}
}
export function pointToRendererPoint(
{ x, y }: XYPosition,
{ x: tx, y: ty, zoom: tScale }: ViewportTransform,
snapToGrid: boolean = false,
snapGrid: SnapGrid = [1, 1],
): XYPosition {
const position: XYPosition = {
x: (x - tx) / tScale,
y: (y - ty) / tScale,
}
return snapToGrid ? snapPosition(position, snapGrid) : position
}
function getBoundsOfBoxes(box1: Box, box2: Box): Box {
return {
x: Math.min(box1.x, box2.x),
y: Math.min(box1.y, box2.y),
x2: Math.max(box1.x2, box2.x2),
y2: Math.max(box1.y2, box2.y2),
}
}
export function rectToBox({ x, y, width, height }: Rect): Box {
return {
x,
y,
x2: x + width,
y2: y + height,
}
}
export function boxToRect({ x, y, x2, y2 }: Box): Rect {
return {
x,
y,
width: x2 - x,
height: y2 - y,
}
}
// todo: fix typo
export function getBoundsofRects(rect1: Rect, rect2: Rect) {
return boxToRect(getBoundsOfBoxes(rectToBox(rect1), rectToBox(rect2)))
}
export function getRectOfNodes(nodes: GraphNode[]) {
let box: Box = {
x: Number.POSITIVE_INFINITY,
y: Number.POSITIVE_INFINITY,
x2: Number.NEGATIVE_INFINITY,
y2: Number.NEGATIVE_INFINITY,
}
for (let i = 0; i < nodes.length; i++) {
const node = nodes[i]
box = getBoundsOfBoxes(
box,
rectToBox({
...node.computedPosition,
...node.dimensions,
} as Rect),
)
}
return boxToRect(box)
}
export function getNodesInside(
nodes: GraphNode[],
rect: Rect,
viewport: ViewportTransform = { x: 0, y: 0, zoom: 1 },
partially = false,
// set excludeNonSelectableNodes if you want to pay attention to the nodes "selectable" attribute
excludeNonSelectableNodes = false,
) {
const paneRect = {
...pointToRendererPoint(rect, viewport),
width: rect.width / viewport.zoom,
height: rect.height / viewport.zoom,
}
const visibleNodes: GraphNode[] = []
for (const node of nodes) {
const { dimensions, selectable = true, hidden = false } = node
const width = dimensions.width ?? node.width ?? null
const height = dimensions.height ?? node.height ?? null
if ((excludeNonSelectableNodes && !selectable) || hidden) {
continue
}
const overlappingArea = getOverlappingArea(paneRect, nodeToRect(node))
const notInitialized = width === null || height === null
const partiallyVisible = partially && overlappingArea > 0
const area = (width ?? 0) * (height ?? 0)
const isVisible = notInitialized || partiallyVisible || overlappingArea >= area
if (isVisible || node.dragging) {
visibleNodes.push(node)
}
}
return visibleNodes
}
export function getConnectedEdges<E extends Edge>(nodesOrId: Node[] | string, edges: E[]) {
const nodeIds = new Set()
if (typeof nodesOrId === 'string') {
nodeIds.add(nodesOrId)
} else if (nodesOrId.length >= 1) {
for (const n of nodesOrId) {
nodeIds.add(n.id)
}
}
return edges.filter((edge) => nodeIds.has(edge.source) || nodeIds.has(edge.target))
}
export function getConnectedNodes<N extends Node | { id: string } | string>(nodes: N[], edges: Edge[]) {
const nodeIds = new Set()
for (const node of nodes) {
nodeIds.add(typeof node === 'string' ? node : node.id)
}
const connectedNodeIds = edges.reduce((acc, edge) => {
if (nodeIds.has(edge.source)) {
acc.add(edge.target)
}
if (nodeIds.has(edge.target)) {
acc.add(edge.source)
}
return acc
}, new Set())
return nodes.filter((node) => connectedNodeIds.has(typeof node === 'string' ? node : node.id))
}
export function getTransformForBounds(
bounds: Rect,
width: number,
height: number,
minZoom: number,
maxZoom: number,
padding = 0.1,
offset: {
x?: number
y?: number
} = { x: 0, y: 0 },
): ViewportTransform {
const xZoom = width / (bounds.width * (1 + padding))
const yZoom = height / (bounds.height * (1 + padding))
const zoom = Math.min(xZoom, yZoom)
const clampedZoom = clamp(zoom, minZoom, maxZoom)
const boundsCenterX = bounds.x + bounds.width / 2
const boundsCenterY = bounds.y + bounds.height / 2
const x = width / 2 - boundsCenterX * clampedZoom + (offset.x ?? 0)
const y = height / 2 - boundsCenterY * clampedZoom + (offset.y ?? 0)
return { x, y, zoom: clampedZoom }
}
export function getXYZPos(parentPos: XYZPosition, computedPosition: XYZPosition): XYZPosition {
return {
x: computedPosition.x + parentPos.x,
y: computedPosition.y + parentPos.y,
z: (parentPos.z > computedPosition.z ? parentPos.z : computedPosition.z) + 1,
}
}
export function isParentSelected(node: GraphNode, findNode: Actions['findNode']): boolean {
if (!node.parentNode) {
return false
}
const parent = findNode(node.parentNode)
if (!parent) {
return false
}
if (parent.selected) {
return true
}
return isParentSelected(parent, findNode)
}
export function getMarkerId(marker: EdgeMarkerType | undefined, vueFlowId?: string) {
if (typeof marker === 'undefined') {
return ''
}
if (typeof marker === 'string') {
return marker
}
const idPrefix = vueFlowId ? `${vueFlowId}__` : ''
return `${idPrefix}${Object.keys(marker)
.sort()
.map((key) => `${key}=${marker[<keyof EdgeMarkerType>key]}`)
.join('&')}`
}