forked from maxGraph/maxGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTree.stories.js
279 lines (224 loc) · 8.24 KB
/
Tree.stories.js
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
/*
Copyright 2021-present The maxGraph project Contributors
Copyright (c) 2006-2020, JGraph Ltd
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import {
Graph,
CylinderShape,
CellRenderer,
GraphView,
ImageBox,
Client,
EdgeStyle,
KeyHandler,
CompactTreeLayout,
LayoutManager,
Rectangle,
Point,
} from '@maxgraph/core';
import { globalTypes } from '../.storybook/preview';
export default {
title: 'Layouts/Tree',
argTypes: {
...globalTypes,
},
};
const Template = ({ label, ...args }) => {
const container = document.createElement('div');
container.style.position = 'relative';
container.style.overflow = 'hidden';
container.style.width = `${args.width}px`;
container.style.height = `${args.height}px`;
container.style.background = 'url(/images/grid.gif)';
container.style.cursor = 'default';
Client.setImageBasePath('/images');
/*
Defines a custom shape for the tree node that includes the
upper half of the outgoing edge(s).
*/
class TreeNodeShape extends CylinderShape {
// Defines the length of the upper edge segment.
static segment = 20;
constructor(bounds, fill, stroke, strokewidth) {
super(bounds, fill, stroke, strokewidth);
}
// Needs access to the cell state for rendering
apply(state) {
super.apply(state);
this.state = state;
}
redrawPath(path, x, y, w, h, isForeground) {
const { graph } = this.state.view;
const hasChildren = graph.getOutgoingEdges(this.state.cell).length > 0;
if (isForeground) {
if (hasChildren) {
// Painting outside of vertex bounds is used here
path.moveTo(w / 2, h + this.segment);
path.lineTo(w / 2, h);
path.end();
}
} else {
path.moveTo(0, 0);
path.lineTo(w, 0);
path.lineTo(w, h);
path.lineTo(0, h);
path.close();
}
}
}
CellRenderer.registerShape('treenode', TreeNodeShape);
class MyCustomGraphView extends GraphView {
updateFloatingTerminalPoint(edge, start, end, source) {
// Defines a custom perimeter for the nodes in the tree
let pt = null;
if (source) {
pt = new Point(
start.x + start.width / 2,
start.y + start.height + TreeNodeShape.segment
);
} else {
pt = new Point(start.x + start.width / 2, start.y);
}
edge.setAbsoluteTerminalPoint(pt, source);
}
}
class MyCustomCellRenderer extends CellRenderer {
getControlBounds(state) {
// Defines the position of the folding icon
if (state.control != null) {
const oldScale = state.control.scale;
const w = state.control.bounds.width / oldScale;
const h = state.control.bounds.height / oldScale;
const s = state.view.scale;
return new Rectangle(
state.x + state.width / 2 - (w / 2) * s,
state.y + state.height + TreeNodeShape.segment * s - (h / 2) * s,
w * s,
h * s
);
}
return null;
}
}
// Make the layout instance accessible by MyCustomGraph
let layout;
class MyCustomGraph extends Graph {
// Sets the collapse and expand icons. The values below are the default
// values, but this is how to replace them if you need to.
collapsedImage = new ImageBox(`${Client.imageBasePath}/collapsed.gif`, 9, 9);
expandedImage = new ImageBox(`${Client.imageBasePath}/expanded.gif`, 9, 9);
isCellFoldable(cell) {
// Defines the condition for showing the folding icon
return this.getOutgoingEdges(cell).length > 0;
}
createCellRenderer() {
return new MyCustomCellRenderer();
}
createGraphView() {
return new MyCustomGraphView(this);
}
foldCells(collapse, recurse, cells) {
// Implements the click on a folding icon
this.model.beginUpdate();
try {
this.toggleSubtree(this, cells[0], !collapse);
this.model.setCollapsed(cells[0], collapse);
// Executes the layout for the new graph since
// changes to visiblity and collapsed state do
// not trigger a layout in the current manager.
layout.execute(this.getDefaultParent());
} finally {
this.model.endUpdate();
}
}
toggleSubtree(cell, show) {
// Updates the visible state of a given subtree taking into
// account the collapsed state of the traversed branches
show = show != null ? show : true;
const cells = [];
this.traverse(cell, true, function (vertex) {
if (vertex !== cell) {
cells.push(vertex);
}
// Stops recursion if a collapsed cell is seen
return vertex === cell || !this.isCellCollapsed(vertex);
});
this.toggleCells(show, cells, true);
}
}
// Creates the graph inside the given container
const graph = new MyCustomGraph(container);
// Disallow any selections
graph.setCellsSelectable(false);
// Avoids overlap of edges and collapse icons
graph.keepEdgesInBackground = true;
// Set some stylesheet options for the visual appearance
let style = graph.getStylesheet().getDefaultVertexStyle();
style.shape = 'treenode';
style.gradientColor = 'white';
style.shadow = true;
style = graph.getStylesheet().getDefaultEdgeStyle();
style.edge = EdgeStyle.TopToBottom;
style.rounded = true;
// Enables automatic sizing for vertices after editing and
// panning by using the left mouse button.
graph.setAutoSizeCells(true);
graph.setPanning(true);
const panningHandler = graph.getPlugin('PanningHandler');
panningHandler.useLeftButtonForPanning = true;
// Stops editing on enter or escape keypress
const keyHandler = new KeyHandler(graph);
// Enables automatic layout on the graph and installs
// a tree layout for all groups who's children are
// being changed, added or removed.
layout = new CompactTreeLayout(graph, false);
layout.useBoundingBox = false;
layout.edgeRouting = false;
layout.levelDistance = 30;
layout.nodeDistance = 10;
const layoutMgr = new LayoutManager(graph);
layoutMgr.getLayout = function (cell) {
if (cell.getChildCount() > 0) {
return layout;
}
};
// Gets the default parent for inserting new cells. This
// is normally the first child of the root (ie. layer 0).
const parent = graph.getDefaultParent();
// Adds the root vertex of the tree
graph.batchUpdate(() => {
const w = graph.container.offsetWidth;
const root = graph.insertVertex(parent, 'treeRoot', 'Root', w / 2 - 30, 20, 60, 40);
const v1 = graph.insertVertex(parent, 'v1', 'Child 1', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', root, v1);
const v2 = graph.insertVertex(parent, 'v2', 'Child 2', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', root, v2);
const v3 = graph.insertVertex(parent, 'v3', 'Child 3', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', root, v3);
const v11 = graph.insertVertex(parent, 'v11', 'Child 1.1', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v1, v11);
const v12 = graph.insertVertex(parent, 'v12', 'Child 1.2', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v1, v12);
const v21 = graph.insertVertex(parent, 'v21', 'Child 2.1', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v2, v21);
const v22 = graph.insertVertex(parent, 'v22', 'Child 2.2', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v2, v22);
const v221 = graph.insertVertex(parent, 'v221', 'Child 2.2.1', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v22, v221);
const v222 = graph.insertVertex(parent, 'v222', 'Child 2.2.2', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v22, v222);
const v31 = graph.insertVertex(parent, 'v31', 'Child 3.1', 0, 0, 60, 40);
graph.insertEdge(parent, null, '', v3, v31);
});
return container;
};
export const Default = Template.bind({});