-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemoLayoutSupport.js
205 lines (182 loc) · 6.93 KB
/
DemoLayoutSupport.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
"use strict";
define(function() {
var DemoLayoutSupport = {
};
DemoLayoutSupport.getMaxNodeBounds = function (layoutContext, excludeLabelBounds) {
var nodeCount = layoutContext.getNodeCount();
var maxW = 0;
var maxH = 0;
for (var ni = 0;ni < nodeCount;ni++) {
var node = layoutContext.getNodeByIndex(ni);
var bounds = node.getContentBounds();
maxW = Math.max(bounds.w, maxW);
maxH = Math.max(bounds.h, maxH);
if (!excludeLabelBounds) {
var labelBounds = node.getLabelBounds();
if (labelBounds) {
maxW = Math.max(labelBounds.w, maxW);
maxH = Math.max(bounds.h + labelBounds.h, maxH);
}
}
}
return {'x': 0, 'y': 0, 'w': maxW, 'h': maxH};
};
DemoLayoutSupport.centerNodeAndLabel = function (layoutContext, node, x, y) {
DemoLayoutSupport.centerNode(node, x, y);
DemoLayoutSupport.positionNodeLabel(layoutContext, node);
};
DemoLayoutSupport.centerNode = function (node, x, y) {
var bounds = node.getContentBounds();
node.setPosition({'x':x - bounds.x - bounds.w * .5, 'y':y - bounds.y - bounds.h * .5});
};
DemoLayoutSupport.positionNodeLabels = function (layoutContext) {
for (var ni = 0;ni < layoutContext.getNodeCount();ni++) {
var node = layoutContext.getNodeByIndex(ni);
DemoLayoutSupport.positionNodeLabel(layoutContext, node);
}
};
DemoLayoutSupport.positionNodeLabel = function (layoutContext, node) {
var nodeBounds = node.getContentBounds();
var nodePos = node.getPosition();
var nodeLabelBounds = node.getLabelBounds();
if (nodeLabelBounds) {
//center label below node
var labelX = nodeBounds.x + nodePos.x + .5 * nodeBounds.w;
var labelY = nodeBounds.y + nodePos.y + nodeBounds.h;
node.setLabelPosition({'x':labelX, 'y':labelY});
node.setLabelHalign("center");
}
};
DemoLayoutSupport.getNodeComparator = function (attribute) {
var comparator = function (a, b) {
var valA = 0;
var valB = 0;
if (a.getLayoutAttributes() && a.getLayoutAttributes()[attribute]) {
valA = a.getLayoutAttributes()[attribute];
}
if (b.getLayoutAttributes() && b.getLayoutAttributes()[attribute]) {
valB = b.getLayoutAttributes()[attribute];
}
return valA > valB ? 1 : (valA == valB ? (a.getId() > b.getId() ? 1 : - 1) : - 1);
};
return comparator;
};
DemoLayoutSupport.layoutLinks = function (layoutContext) {
for (var li = 0;li < layoutContext.getLinkCount();li++) {
var link = layoutContext.getLinkByIndex(li);
var endpoints = DemoLayoutSupport.getEndpoints(layoutContext, link);
var startX = endpoints[0].x;
var startY = endpoints[0].y;
var endX = endpoints[1].x;
var endY = endpoints[1].y;
link.setPoints([startX, startY, endX, endY]);
//center label on link
var labelBounds = link.getLabelBounds();
if (labelBounds) {
var labelX = startX + .5 * (endX - startX);
var labelY = startY + .5 * (endY - startY - labelBounds.h);
link.setLabelPosition({'x': labelX, 'y': labelY});
link.setLabelHalign("center");
}
}
}
DemoLayoutSupport.getEndpoints = function(layoutContext, link) {
var layoutAttrs = layoutContext.getLayoutAttributes();
//support for laying out links to connect at the edges of node
//bounding boxes instead of at the centers
var bLinkToBounds = true;
if (layoutAttrs) {
bLinkToBounds = (layoutAttrs["linkToBounds"] !== "false");
}
var n1 = layoutContext.getNodeById(link.getStartId());
var n2 = layoutContext.getNodeById(link.getEndId());
var n1Position = n1.getPosition();
var n2Position = n2.getPosition();
var b1 = n1.getContentBounds();
var b2 = n2.getContentBounds();
var startX = n1Position.x + b1.x + .5 * b1.w;
var startY = n1Position.y + b1.y + .5 * b1.h;
var endX = n2Position.x + b2.x + .5 * b2.w;
var endY = n2Position.y + b2.y + .5 * b2.h;
//support for laying out links to connect at the edges of node
//bounding boxes instead of at the centers
if (bLinkToBounds) {
b1 = {'x': n1Position.x + b1.x, 'y': n1Position.y + b1.y, 'w': b1.w, 'h': b1.h};
b2 = {'x': n2Position.x + b2.x, 'y': n2Position.y + b2.y, 'w': b2.w, 'h': b2.h};
var startP = DemoLayoutSupport._intersectRect(b1, startX, startY, endX, endY, link.getStartConnectorOffset());
var endP = DemoLayoutSupport._intersectRect(b2, endX, endY, startX, startY, link.getEndConnectorOffset());
startX = startP.x;
startY = startP.y;
endX = endP.x;
endY = endP.y;
}
var endpoints = [];
endpoints.push({'x': startX, 'y': startY});
endpoints.push({'x': endX, 'y': endY});
return endpoints;
}
DemoLayoutSupport._intersectRect = function (rect, startX, startY, endX, endY, connOffset) {
var SIDE_TOP = 0;
var SIDE_RIGHT = 1;
var SIDE_BOTTOM = 2;
var SIDE_LEFT = 3;
var halfRectW = .5 * rect.w;
var halfRectH = .5 * rect.h;
var cornerAngle = Math.atan2(halfRectH, halfRectW);
var topRightAngle = cornerAngle;
var topLeftAngle = Math.PI - cornerAngle;
var bottomRightAngle = - topRightAngle;
var bottomLeftAngle = - topLeftAngle;
var lineAngle = Math.atan2(endY - startY, endX - startX);
var side;
if (lineAngle <= topRightAngle && lineAngle >= bottomRightAngle) {
side = SIDE_RIGHT;
}
else if (lineAngle <= topLeftAngle && lineAngle >= topRightAngle) {
side = SIDE_TOP;
}
else if (lineAngle >= bottomLeftAngle && lineAngle <= bottomRightAngle) {
side = SIDE_BOTTOM;
}
else {
side = SIDE_LEFT;
}
var x;
var y;
var tanAngle = (endY - startY) / (endX - startX);
switch (side) {
case SIDE_RIGHT:
x = rect.x + rect.w;
y = tanAngle * halfRectW + halfRectH + rect.y;
break;
case SIDE_LEFT:
x = rect.x;
y = tanAngle * ( - halfRectW) + halfRectH + rect.y;
break;
case SIDE_TOP:
y = rect.y + rect.h;
if (endX === startX) {
x = startX;
}
else {
x = (halfRectH / tanAngle) + halfRectW + rect.x;
}
break;
case SIDE_BOTTOM:
y = rect.y;
if (endX === startX) {
x = startX;
}
else {
x = ( - halfRectH / tanAngle) + halfRectW + rect.x;
}
break;
}
if (connOffset) {
x += Math.cos(lineAngle) * connOffset;
y += Math.sin(lineAngle) * connOffset;
}
return {'x': x, 'y': y};
}
return DemoLayoutSupport;
});