This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
forked from maxGraph/maxGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHandles.stories.js
245 lines (207 loc) · 6.15 KB
/
Handles.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
import {
Graph,
CylinderShape,
DomHelpers,
CellRenderer,
Point,
Rectangle,
VertexHandler,
InternalEvent,
RubberBandHandler,
utils,
VertexHandle,
} from '@maxgraph/core';
import { globalTypes } from '../.storybook/preview';
export default {
title: 'Layouts/Handles',
argTypes: {
...globalTypes,
contextMenu: {
type: 'boolean',
defaultValue: false,
},
rubberBand: {
type: 'boolean',
defaultValue: true,
},
},
};
const Template = ({ label, ...args }) => {
const div = document.createElement('div');
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';
div.appendChild(container);
class MyShape extends CylinderShape {
defaultPos1 = 20;
defaultPos2 = 60;
getLabelBounds(rect) {
const pos1 = utils.getValue(this.style, 'pos1', this.defaultPos1) * this.scale;
const pos2 = utils.getValue(this.style, 'pos2', this.defaultPos2) * this.scale;
return new Rectangle(
rect.x,
rect.y + pos1,
rect.width,
Math.min(rect.height, pos2) - Math.max(0, pos1)
);
}
redrawPath(path, x, y, w, h, isForeground) {
const pos1 = utils.getValue(this.style, 'pos1', this.defaultPos1);
const pos2 = utils.getValue(this.style, 'pos2', this.defaultPos2);
if (isForeground) {
if (pos1 < h) {
path.moveTo(0, pos1);
path.lineTo(w, pos1);
}
if (pos2 < h) {
path.moveTo(0, pos2);
path.lineTo(w, pos2);
}
} else {
path.rect(0, 0, w, h);
}
}
}
CellRenderer.registerShape('myShape', MyShape);
class MyCustomVertexHandler extends VertexHandler {
livePreview = true;
rotationEnabled = true;
createCustomHandles() {
if (this.state.style.shape === 'myShape') {
// Implements the handle for the first divider
const firstHandle = new VertexHandle(this.state);
firstHandle.getPosition = function (bounds) {
const pos2 = Math.max(
0,
Math.min(
bounds.height,
parseFloat(
utils.getValue(this.state.style, 'pos2', MyShape.prototype.defaultPos2)
)
)
);
const pos1 = Math.max(
0,
Math.min(
pos2,
parseFloat(
utils.getValue(this.state.style, 'pos1', MyShape.prototype.defaultPos1)
)
)
);
return new Point(bounds.getCenterX(), bounds.y + pos1);
};
firstHandle.setPosition = function (bounds, pt) {
const pos2 = Math.max(
0,
Math.min(
bounds.height,
parseFloat(
utils.getValue(this.state.style, 'pos2', MyShape.prototype.defaultPos2)
)
)
);
this.state.style.pos1 = Math.round(
Math.max(0, Math.min(pos2, pt.y - bounds.y))
);
};
firstHandle.execute = function () {
this.copyStyle('pos1');
};
firstHandle.ignoreGrid = true;
// Implements the handle for the second divider
const secondHandle = new VertexHandle(this.state);
secondHandle.getPosition = function (bounds) {
const pos1 = Math.max(
0,
Math.min(
bounds.height,
parseFloat(
utils.getValue(this.state.style, 'pos1', MyShape.prototype.defaultPos1)
)
)
);
const pos2 = Math.max(
pos1,
Math.min(
bounds.height,
parseFloat(
utils.getValue(this.state.style, 'pos2', MyShape.prototype.defaultPos2)
)
)
);
return new Point(bounds.getCenterX(), bounds.y + pos2);
};
secondHandle.setPosition = function (bounds, pt) {
const pos1 = Math.max(
0,
Math.min(
bounds.height,
parseFloat(
utils.getValue(this.state.style, 'pos1', MyShape.prototype.defaultPos1)
)
)
);
this.state.style.pos2 = Math.round(
Math.max(pos1, Math.min(bounds.height, pt.y - bounds.y))
);
};
secondHandle.execute = function () {
this.copyStyle('pos2');
};
secondHandle.ignoreGrid = true;
return [firstHandle, secondHandle];
}
return null;
}
}
class MyCustomGraph extends Graph {
createVertexHandler(state) {
return new MyCustomVertexHandler(state);
}
}
// Disables the built-in context menu
if (!args.contextMenu) InternalEvent.disableContextMenu(container);
// Creates the graph inside the given container
const graph = new MyCustomGraph(container);
graph.setCellsCloneable(true);
graph.setHtmlLabels(true);
graph.setPanning(true);
graph.centerZoom = false;
// Enables rubberband selection
if (args.rubberBand) new RubberBandHandler(graph);
// 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 cells to the model in a single step
graph.batchUpdate(() => {
const v1 = graph.insertVertex(
parent,
null,
'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.',
20,
20,
240,
120,
{ shape: 'myShape', whiteSpace: 'wrap', overflow: 'hidden', pos1: 30, pos2: 80 }
);
});
const buttons = document.createElement('div');
div.appendChild(buttons);
buttons.appendChild(
DomHelpers.button('+', function () {
graph.zoomIn();
})
);
buttons.appendChild(
DomHelpers.button('-', function () {
graph.zoomOut();
})
);
return div;
};
export const Default = Template.bind({});