mxWebColaLayout.js
10.8 KB
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
/**
* Copyright (c) 2006-2018, JGraph Ltd
* Copyright (c) 2006-2018, Gaudenz Alder
*/
/**
* Class: mxWebColaLayout
*
* Extends <mxGraphLayout> to implement a WebCola-based layout.
*
* Example:
*
* (code)
* var layout = new mxWebColaLayout(graph);
* layout.execute(graph.getDefaultParent());
* (end)
*
* Constructor: mxWebColaLayout
*
* Constructs a new WebCola-based layout for the graph.
*
* Arguments:
*
* graph - <mxGraph> that contains the cells.
*
**/
function mxWebColaLayout(graph, layoutType)
/**
* Constructs a WebCola-based layout
* @param graph <mxGraph> that contains the cells.
* @param layoutType Type of WebCola layout
*/
{
mxGraphLayout.call(this, graph);
this.layoutType = layoutType;
this.originalGeometries = new mxDictionary();
};
mxWebColaLayout.prototype = new mxGraphLayout();
mxWebColaLayout.prototype.constructor = mxWebColaLayout;
mxWebColaLayout.prototype.layoutType = null;
mxWebColaLayout.prototype.execute = function(parent)
/**
* Runs re-layouting of the portion of a graph from a given starting cell
* @param parent starting cell
*/
{
var movableVertices = this.getReachableVertices(parent);
var ps = this.graph.getPageSize();
this.layout = new mxWebColaAdaptor(this.graph, (this.graph.pageVisible) ?
[ps.width, ps.height] : [800, 800], movableVertices);
var initial = true;
var update = function (isUndoable) {
// console.log("mxColaLayout: update");
this.updateGraph(isUndoable, initial);
initial = false;
}.bind(this);
this.layout.updatePositions = update;
//this.resetGraph(this.graph);
var finalLayout = this.computePositions(this.layout);
};
mxWebColaLayout.prototype.getReachableVertices = function(parent)
/***
* Finds all vertices reachable from a given parent
* @param parent starting cell of a search
* @returns dictionary of vertice IDs that are reachable in the form of {id: True}
* if undefined is returned, it means parent was not provided and it should be interpreted as all vertices
* are reachable
*/
{
if (parent == undefined)
return undefined;
// first, get all incidental edges in a sub-tree (or a connected component if with loops)
var edges = this.graph.getEdges(parent, null, true, true, true, true);
// now all vertices that are reachable are subject to change; unreachable should be fixed
var reachableVertices = void(0);
if (edges.length != 0)
{
var reachableVertices = {};
for (var i = 0; i < edges.length; i++)
{
var edge = edges[i];
reachableVertices[edge.source.id] = true;
reachableVertices[edge.target.id] = true;
}
}
// vertices connected by returned edges must be allowed to move, rest must be fixed in place
return reachableVertices;
}
mxWebColaLayout.prototype.computePositions = function()
/**
* Executes layout to compute positions
*/
{
return this.layout.run();
}
mxWebColaLayout.prototype.resetGraph = function(graph)
/**
* Resets initial vertex positions
*/
{
var model = graph.getModel();
var cells = model.cells;
var view = graph.getView();
model.beginUpdate();
try
{
for (var id in cells)
{
var cell = cells[id];
var state = view.getState(cell);
var bounds = view.getBoundingBox(state, true);
var isFirst = true;
if (cell.isVertex()) {
var geometry = model.getGeometry(cell);
if (geometry != null && typeof geometry != "undefined")
{
geometry = geometry.clone();
geometry.offset = null;
model.setGeometry(cell, geometry);
}
}
}
}
finally
{
model.endUpdate();
}
}
mxWebColaLayout.prototype.getGroupBounds = function(model, groupCell)
/**
* Computes bounds of a group as boundary encompassing all children of a group
* @param model graph model
* @param groupCell starting group
* @returns boundaries of all children inside a group
*/
{
var minX = 1000000;
var minY = 1000000;
var maxX = -1000000;
var maxY = -1000000;
if (groupCell.children == null || groupCell.children.length == 0)
return null;
var cellsToVisit = [];
cellsToVisit = cellsToVisit.concat(groupCell.children);
while (cellsToVisit.length > 0)
{
var child = cellsToVisit.shift();
if (child.isVertex())
{
if (this.layout.isLeafOrCollapsed(child))
{
var geometry = model.getGeometry(child);
if (geometry != null && typeof geometry != "undefined")
{
if (geometry.x < minX)
{
minX = geometry.x;
}
if (geometry.y < minY)
{
minY = geometry.y;
}
if (geometry.x + geometry.width > maxX)
{
maxX = geometry.x + geometry.width;
}
if (geometry.y + geometry.height > maxY)
{
maxY = geometry.y + geometry.height;
}
}
}
else
{
cellsToVisit = cellsToVisit.concat(child.children);
}
}
}
var width = maxX - minX;
var height = maxY - minY;
// at last look if the group has geometry already and use it as basic range
var groupGeometry = model.getGeometry(groupCell);
if (groupGeometry != null)
{
minX = Math.min(groupGeometry.x, minX);
minY = Math.min(groupGeometry.y, minY);
width = Math.max(groupGeometry.width, width);
height = Math.max(groupGeometry.height, height);
}
var bounds = model.getGeometry(groupCell).clone();
bounds.x = minX;
bounds.y = minY;
bounds.width = width;
bounds.height = height;
return bounds;
}
mxWebColaLayout.prototype.adjustChildOffsets = function(model, groupCell, isUndoable, isInitial)
/**
* Adjusts offset of child vertices to be relative to parent groups
* @param model graph model
* @param groupCell starting group cell
*/
{
if (groupCell.children == null || groupCell.children.length == 0)
return;
var groupBounds = model.getGeometry(groupCell);
var offsetX = groupBounds.x;
var offsetY = groupBounds.y;
var cellsToVisit = [];
cellsToVisit = cellsToVisit.concat(groupCell.children);
while (cellsToVisit.length > 0)
{
var child = cellsToVisit.shift();
if (child.isVertex())
{
if (this.layout.isLeafOrCollapsed(child))
{
var geometry = model.getGeometry(child);
if (geometry != null && typeof geometry != "undefined")
{
// geometry = geometry.clone();
geometry.x = geometry.x - offsetX;
geometry.y = geometry.y - offsetY;
// model.setGeometry(child, geometry);
}
}
else
{
cellsToVisit = cellsToVisit.concat(child.children);
}
}
}
}
mxWebColaLayout.prototype.updateGraph = function(isUndoable = false, initial = false)
/**
* Updates graph based on layout's vertex/group positions
*/
{
// find X, Y ranges first
var minX = 1000000;
var maxX = -1000000;
var minY = 1000000;
var maxY = -1000000;
// finding limits by scanning top-left corners of shapes
for (var i = 0; i < this.layout.adaptor._nodes.length; i++)
{
var node = this.layout.adaptor._nodes[i];
var x = node.bounds.x;
var y = node.bounds.y;
minX = Math.min(minX, x);
minY = Math.min(minY, y);
maxX = Math.max(maxX, x);
maxY = Math.max(maxY, y);
}
var spanX = maxX - minX;
var spanY = maxY - minY;
var model = this.graph.getModel();
if (isUndoable)
{
model.beginUpdate();
}
try
{
var cells = model.cells;
var view = this.graph.getView();
// scan leaves and edges
for (var id in cells)
{
var cell = cells[id];
var state = view.getState(cell);
var bounds = view.getBoundingBox(state, true);
if (cell.isVertex() && this.layout.isLeafOrCollapsed(cell))
{
var nodeId = this.layout.cellToNode[id];
if (typeof nodeId == "undefined")
continue;
var node = this.layout.adaptor._nodes[nodeId];
var geometry = model.getGeometry(cell);
if (geometry != null)
{
// First run creates a temporary geometry that can
// be changed in-place to update the view and keeps
// a copy of the original geometry to use in the
// final undoable edit to force a change event
if (initial)
{
this.originalGeometries.put(cell, geometry);
geometry = geometry.clone();
if (model.isVertex(cell))
{
if (this.layout.isInZeroConnectedGroup(cell))
{
geometry.offset = geometry.offset.clone();
}
else
{
geometry.offset = null;
}
}
}
// anchor top-left corners at (0, 0)
geometry.x = node.bounds.x - minX;
geometry.y = node.bounds.y - minY;
if (isUndoable)
{
// Restores original geometry for the change to be detected
cell.geometry = this.originalGeometries.get(cell);
model.setGeometry(cell, geometry);
}
else if (initial)
{
cell.geometry = geometry;
}
else
{
this.graph.view.invalidate(cell, true, true);
}
}
else
{
console.log("ERROR: vertex cell id:" + id + " has no geometry!");
}
}
else if (cell.isEdge())
{
this.graph.resetEdge(cell);
}
}
// scan groups
for (var id in cells)
{
var cell = cells[id];
var state = view.getState(cell);
var bounds = view.getBoundingBox(state, true);
if (cell.isVertex() && !this.layout.isLeafOrCollapsed(cell))
{
var bounds = this.getGroupBounds(model, cell);
var geometry = model.getGeometry(cell);
if (bounds != null && typeof bounds != "undefined")
{
if (initial)
{
this.originalGeometries.put(cell, geometry);
geometry = geometry.clone();
if (model.isVertex(cell))
{
if (this.layout.isInZeroConnectedGroup(cell))
{
geometry.offset = geometry.offset.clone();
}
else
{
geometry.offset = null;
}
}
}
if (isUndoable)
{
cell.geometry = this.originalGeometries.get(cell);
model.setGeometry(cell, bounds);
}
else if (initial)
{
cell.geometry = bounds;
}
else
{
this.graph.view.invalidate(cell, true, true);
}
this.adjustChildOffsets(model, cell, isUndoable, initial);
}
}
}
}
finally
{
if (isUndoable)
{
model.endUpdate();
}
else
{
this.graph.view.validate();
}
}
}