mind-elixir 5.10.0 → 5.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/MindElixir.iife.js +4 -4
- package/dist/MindElixir.js +748 -741
- package/dist/MindElixirLite.iife.js +4 -4
- package/dist/MindElixirLite.js +679 -664
- package/dist/types/plugin/keypress.d.ts +13 -2
- package/dist/types/types/index.d.ts +5 -5
- package/dist/types/utils/{LinkDragMoveHelper.d.ts → LinkPanHelper.d.ts} +3 -3
- package/dist/types/utils/{dragMoveHelper.d.ts → panHelper.d.ts} +1 -1
- package/dist/types/viselect/src/index.d.ts +1 -4
- package/dist/types/viselect/src/types.d.ts +0 -5
- package/package.json +2 -2
package/dist/MindElixirLite.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const
|
|
1
|
+
const Wn = 0, Rn = 1, Xn = 2, rt = {
|
|
2
2
|
name: "Latte",
|
|
3
3
|
type: "light",
|
|
4
4
|
palette: ["#dd7878", "#ea76cb", "#8839ef", "#e64553", "#fe640b", "#df8e1d", "#40a02b", "#209fb5", "#1e66f5", "#7287fd"],
|
|
@@ -53,15 +53,15 @@ const Hn = 0, In = 1, On = 2, rt = {
|
|
|
53
53
|
"--map-padding": "50px 80px"
|
|
54
54
|
}
|
|
55
55
|
};
|
|
56
|
-
function
|
|
56
|
+
function $t(t) {
|
|
57
57
|
return t.replace(/&/g, "&").replace(/</g, "<").replace(/"/g, """);
|
|
58
58
|
}
|
|
59
|
-
const
|
|
59
|
+
const J = function(t, e) {
|
|
60
60
|
if (e.id === t)
|
|
61
61
|
return e;
|
|
62
62
|
if (e.children && e.children.length) {
|
|
63
63
|
for (let n = 0; n < e.children.length; n++) {
|
|
64
|
-
const o =
|
|
64
|
+
const o = J(t, e.children[n]);
|
|
65
65
|
if (o) return o;
|
|
66
66
|
}
|
|
67
67
|
return null;
|
|
@@ -71,25 +71,25 @@ const K = function(t, e) {
|
|
|
71
71
|
if (t.parent = e, t.children)
|
|
72
72
|
for (let n = 0; n < t.children.length; n++)
|
|
73
73
|
lt(t.children[n], t);
|
|
74
|
-
},
|
|
74
|
+
}, bt = (t, e, n) => {
|
|
75
75
|
t.expanded = e, t.children && t.children.forEach((o) => {
|
|
76
|
-
|
|
76
|
+
bt(o, e);
|
|
77
77
|
});
|
|
78
78
|
};
|
|
79
|
-
function
|
|
80
|
-
const s = n - t, i = o - e, c = Math.atan2(i, s) * 180 / Math.PI,
|
|
79
|
+
function Z(t, e, n, o) {
|
|
80
|
+
const s = n - t, i = o - e, c = Math.atan2(i, s) * 180 / Math.PI, d = 12, a = 30, h = (c + 180 - a) * Math.PI / 180, f = (c + 180 + a) * Math.PI / 180;
|
|
81
81
|
return {
|
|
82
|
-
x1: n + Math.cos(h) *
|
|
83
|
-
y1: o + Math.sin(h) *
|
|
84
|
-
x2: n + Math.cos(f) *
|
|
85
|
-
y2: o + Math.sin(f) *
|
|
82
|
+
x1: n + Math.cos(h) * d,
|
|
83
|
+
y1: o + Math.sin(h) * d,
|
|
84
|
+
x2: n + Math.cos(f) * d,
|
|
85
|
+
y2: o + Math.sin(f) * d
|
|
86
86
|
};
|
|
87
87
|
}
|
|
88
|
-
function
|
|
88
|
+
function _() {
|
|
89
89
|
return ((/* @__PURE__ */ new Date()).getTime().toString(16) + Math.random().toString(16).substring(2)).substring(2, 18);
|
|
90
90
|
}
|
|
91
|
-
const
|
|
92
|
-
const t =
|
|
91
|
+
const Ht = function() {
|
|
92
|
+
const t = _();
|
|
93
93
|
return {
|
|
94
94
|
topic: this.newTopicName,
|
|
95
95
|
id: t
|
|
@@ -99,13 +99,13 @@ const It = function() {
|
|
|
99
99
|
for (; e && e !== t; )
|
|
100
100
|
n += e.offsetLeft, o += e.offsetTop, e = e.offsetParent;
|
|
101
101
|
return { offsetLeft: n, offsetTop: o };
|
|
102
|
-
},
|
|
102
|
+
}, M = (t, e) => {
|
|
103
103
|
for (const n in e)
|
|
104
104
|
t.setAttribute(n, e[n]);
|
|
105
|
-
},
|
|
105
|
+
}, q = (t) => t ? t.tagName === "ME-TPC" : !1, at = (t) => {
|
|
106
106
|
const e = /translate3d\(([^,]+),\s*([^,]+)/, n = t.match(e);
|
|
107
107
|
return n ? { x: parseFloat(n[1]), y: parseFloat(n[2]) } : { x: 0, y: 0 };
|
|
108
|
-
},
|
|
108
|
+
}, xt = function(t) {
|
|
109
109
|
for (let e = 0; e < t.length; e++) {
|
|
110
110
|
const { dom: n, evt: o, func: s } = t[e];
|
|
111
111
|
n.addEventListener(o, s);
|
|
@@ -119,13 +119,122 @@ const It = function() {
|
|
|
119
119
|
}, ut = (t, e) => {
|
|
120
120
|
const n = t.x - e.x, o = t.y - e.y;
|
|
121
121
|
return Math.sqrt(n * n + o * o);
|
|
122
|
-
},
|
|
122
|
+
}, It = function(t, e) {
|
|
123
|
+
if (!e)
|
|
124
|
+
return tt(t), t;
|
|
125
|
+
let n = t.querySelector(".insert-preview");
|
|
126
|
+
const o = `insert-preview ${e} show`;
|
|
127
|
+
return n || (n = document.createElement("div"), t.appendChild(n)), n.className = o, t;
|
|
128
|
+
}, tt = function(t) {
|
|
129
|
+
if (!t) return;
|
|
130
|
+
const e = t.querySelectorAll(".insert-preview");
|
|
131
|
+
for (const n of e || [])
|
|
132
|
+
n.remove();
|
|
133
|
+
}, pt = function(t, e) {
|
|
134
|
+
for (const n of e) {
|
|
135
|
+
const o = n.parentElement.parentElement.contains(t);
|
|
136
|
+
if (!(t && t.tagName === "ME-TPC" && t !== n && !o && t.nodeObj.parent)) return !1;
|
|
137
|
+
}
|
|
138
|
+
return !0;
|
|
139
|
+
}, Ot = function(t) {
|
|
140
|
+
const e = document.createElement("div");
|
|
141
|
+
return e.className = "mind-elixir-ghost", t.container.appendChild(e), e;
|
|
142
|
+
};
|
|
143
|
+
class Yt {
|
|
144
|
+
mind;
|
|
145
|
+
isMoving = !1;
|
|
146
|
+
interval = null;
|
|
147
|
+
speed = 20;
|
|
148
|
+
constructor(e) {
|
|
149
|
+
this.mind = e;
|
|
150
|
+
}
|
|
151
|
+
move(e, n) {
|
|
152
|
+
this.isMoving || (this.isMoving = !0, this.interval = setInterval(() => {
|
|
153
|
+
this.mind.move(e * this.speed * this.mind.scaleVal, n * this.speed * this.mind.scaleVal);
|
|
154
|
+
}, 100));
|
|
155
|
+
}
|
|
156
|
+
stop() {
|
|
157
|
+
this.isMoving = !1, this.interval && (clearInterval(this.interval), this.interval = null);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
function Bt(t) {
|
|
161
|
+
return {
|
|
162
|
+
isDragging: !1,
|
|
163
|
+
insertType: null,
|
|
164
|
+
meet: null,
|
|
165
|
+
ghost: Ot(t),
|
|
166
|
+
edgeMoveController: new Yt(t),
|
|
167
|
+
startX: 0,
|
|
168
|
+
startY: 0,
|
|
169
|
+
pointerId: null
|
|
170
|
+
};
|
|
171
|
+
}
|
|
172
|
+
const Wt = 5;
|
|
173
|
+
function gt(t, e, n, o = !1) {
|
|
174
|
+
if (t.spacePressed) return !1;
|
|
175
|
+
const s = n.target;
|
|
176
|
+
return s?.tagName !== "ME-TPC" || !s.nodeObj.parent ? !1 : (e.startX = n.clientX, e.startY = n.clientY, e.pointerId = n.pointerId, t.dragged = t.currentNodes, o && Et(t, e), !0);
|
|
177
|
+
}
|
|
178
|
+
function Ct(t, e, n) {
|
|
179
|
+
t.style.transform = `translate(${e - 10}px, ${n - 10}px)`, t.style.display = "block";
|
|
180
|
+
}
|
|
181
|
+
function Et(t, e) {
|
|
182
|
+
const { dragged: n } = t;
|
|
183
|
+
if (!n) return;
|
|
184
|
+
const o = document.activeElement;
|
|
185
|
+
o && o.isContentEditable && o.blur(), e.isDragging = !0, n.length > 1 ? e.ghost.innerHTML = n.length + "" : e.ghost.innerHTML = n[0].innerHTML;
|
|
186
|
+
for (const s of n)
|
|
187
|
+
s.parentElement.parentElement.style.opacity = "0.5";
|
|
188
|
+
t.panHelper.clear();
|
|
189
|
+
}
|
|
190
|
+
function Rt(t, e, n) {
|
|
191
|
+
const { dragged: o } = t;
|
|
192
|
+
if (!o || e.pointerId !== n.pointerId) return;
|
|
193
|
+
const s = n.clientX - e.startX, i = n.clientY - e.startY, r = Math.sqrt(s * s + i * i);
|
|
194
|
+
if (!e.isDragging && r > Wt && Et(t, e), !e.isDragging) return;
|
|
195
|
+
const c = t.container.getBoundingClientRect();
|
|
196
|
+
Ct(e.ghost, n.clientX - c.x, n.clientY - c.y), n.clientX < c.x + 50 ? e.edgeMoveController.move(1, 0) : n.clientX > c.x + c.width - 50 ? e.edgeMoveController.move(-1, 0) : n.clientY < c.y + 50 ? e.edgeMoveController.move(0, 1) : n.clientY > c.y + c.height - 50 ? e.edgeMoveController.move(0, -1) : e.edgeMoveController.stop(), tt(e.meet);
|
|
197
|
+
const d = 12 * t.scaleVal, a = document.elementFromPoint(n.clientX, n.clientY - d);
|
|
198
|
+
if (pt(a, o)) {
|
|
199
|
+
e.meet = a;
|
|
200
|
+
const h = a.getBoundingClientRect(), f = h.y;
|
|
201
|
+
n.clientY > f + h.height ? e.insertType = "after" : e.insertType = "in";
|
|
202
|
+
} else {
|
|
203
|
+
const h = document.elementFromPoint(n.clientX, n.clientY + d);
|
|
204
|
+
if (pt(h, o)) {
|
|
205
|
+
e.meet = h;
|
|
206
|
+
const p = h.getBoundingClientRect().y;
|
|
207
|
+
n.clientY < p ? e.insertType = "before" : e.insertType = "in";
|
|
208
|
+
} else
|
|
209
|
+
e.insertType = null, e.meet = null;
|
|
210
|
+
}
|
|
211
|
+
e.meet && It(e.meet, e.insertType);
|
|
212
|
+
}
|
|
213
|
+
function Xt(t, e, n) {
|
|
214
|
+
const { dragged: o } = t;
|
|
215
|
+
if (!(!o || e.pointerId !== n.pointerId)) {
|
|
216
|
+
e.edgeMoveController.stop();
|
|
217
|
+
for (const s of o)
|
|
218
|
+
s.parentElement.parentElement.style.opacity = "1";
|
|
219
|
+
e.ghost.style.display = "none", e.ghost.innerHTML = "", e.isDragging && e.meet && (tt(e.meet), e.insertType === "before" ? t.moveNodeBefore(o, e.meet) : e.insertType === "after" ? t.moveNodeAfter(o, e.meet) : e.insertType === "in" && t.moveNodeIn(o, e.meet)), t.dragged = null, e.isDragging = !1, e.insertType = null, e.meet = null, e.pointerId = null;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
function ot(t, e) {
|
|
223
|
+
const { dragged: n } = t;
|
|
224
|
+
if (n) {
|
|
225
|
+
e.edgeMoveController.stop();
|
|
226
|
+
for (const o of n)
|
|
227
|
+
o.parentElement.parentElement.style.opacity = "1";
|
|
228
|
+
e.meet && tt(e.meet), e.ghost.style.display = "none", e.ghost.innerHTML = "", t.dragged = null, e.isDragging = !1, e.insertType = null, e.meet = null, e.pointerId = null;
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
const G = {
|
|
123
232
|
LHS: "lhs",
|
|
124
233
|
RHS: "rhs"
|
|
125
|
-
},
|
|
234
|
+
}, Gt = function() {
|
|
126
235
|
this.nodes.innerHTML = "";
|
|
127
236
|
const t = this.createTopic(this.nodeData);
|
|
128
|
-
|
|
237
|
+
Tt.call(this, t, this.nodeData), t.draggable = !1;
|
|
129
238
|
const e = document.createElement("me-root");
|
|
130
239
|
e.appendChild(t);
|
|
131
240
|
const n = this.nodeData.children || [];
|
|
@@ -135,29 +244,29 @@ const It = function() {
|
|
|
135
244
|
i.direction === 0 ? o += 1 : i.direction === 1 ? s += 1 : o <= s ? (i.direction = 0, o += 1) : (i.direction = 1, s += 1);
|
|
136
245
|
});
|
|
137
246
|
}
|
|
138
|
-
|
|
139
|
-
},
|
|
247
|
+
Vt(this, n, e);
|
|
248
|
+
}, Vt = function(t, e, n) {
|
|
140
249
|
const o = document.createElement("me-main");
|
|
141
|
-
o.className =
|
|
250
|
+
o.className = G.LHS;
|
|
142
251
|
const s = document.createElement("me-main");
|
|
143
|
-
s.className =
|
|
252
|
+
s.className = G.RHS;
|
|
144
253
|
for (let i = 0; i < e.length; i++) {
|
|
145
254
|
const r = e[i], { grp: c } = t.createWrapper(r);
|
|
146
255
|
t.direction === 2 ? r.direction === 0 ? o.appendChild(c) : s.appendChild(c) : t.direction === 0 ? o.appendChild(c) : s.appendChild(c);
|
|
147
256
|
}
|
|
148
257
|
t.nodes.appendChild(o), t.nodes.appendChild(n), t.nodes.appendChild(s), t.nodes.appendChild(t.lines), t.nodes.appendChild(t.labelContainer);
|
|
149
|
-
},
|
|
258
|
+
}, zt = function(t, e) {
|
|
150
259
|
const n = document.createElement("me-children");
|
|
151
260
|
for (let o = 0; o < e.length; o++) {
|
|
152
261
|
const s = e[o], { grp: i } = t.createWrapper(s);
|
|
153
262
|
n.appendChild(i);
|
|
154
263
|
}
|
|
155
264
|
return n;
|
|
156
|
-
},
|
|
265
|
+
}, St = function(t, e) {
|
|
157
266
|
const o = (this?.el ? this.el : e || document).querySelector(`[data-nodeid="me${t}"]`);
|
|
158
267
|
if (!o) throw new Error(`FindEle: Node ${t} not found, maybe it's collapsed.`);
|
|
159
268
|
return o;
|
|
160
|
-
},
|
|
269
|
+
}, Tt = function(t, e) {
|
|
161
270
|
if (t.innerHTML = "", e.style) {
|
|
162
271
|
const n = e.style;
|
|
163
272
|
for (const o in n)
|
|
@@ -184,7 +293,7 @@ const It = function() {
|
|
|
184
293
|
} else t.link && (t.link = void 0);
|
|
185
294
|
if (e.icons && e.icons.length) {
|
|
186
295
|
const n = document.createElement("span");
|
|
187
|
-
n.className = "icons", n.innerHTML = e.icons.map((o) => `<span>${
|
|
296
|
+
n.className = "icons", n.innerHTML = e.icons.map((o) => `<span>${$t(o)}</span>`).join(""), t.appendChild(n), t.icons = n;
|
|
188
297
|
} else t.icons && (t.icons = void 0);
|
|
189
298
|
if (e.tags && e.tags.length) {
|
|
190
299
|
const n = document.createElement("div");
|
|
@@ -193,33 +302,33 @@ const It = function() {
|
|
|
193
302
|
typeof o == "string" ? s.textContent = o : (s.textContent = o.text, o.className && (s.className = o.className), o.style && Object.assign(s.style, o.style)), n.appendChild(s);
|
|
194
303
|
}), t.appendChild(n), t.tags = n;
|
|
195
304
|
} else t.tags && (t.tags = void 0);
|
|
196
|
-
},
|
|
305
|
+
}, Ft = function(t, e) {
|
|
197
306
|
const n = document.createElement("me-wrapper"), { p: o, tpc: s } = this.createParent(t);
|
|
198
307
|
if (n.appendChild(o), !e && t.children && t.children.length > 0) {
|
|
199
|
-
const i =
|
|
308
|
+
const i = Kt(t.expanded);
|
|
200
309
|
if (o.appendChild(i), t.expanded !== !1) {
|
|
201
|
-
const r =
|
|
310
|
+
const r = zt(this, t.children);
|
|
202
311
|
n.appendChild(r);
|
|
203
312
|
}
|
|
204
313
|
}
|
|
205
314
|
return { grp: n, top: o, tpc: s };
|
|
206
|
-
},
|
|
315
|
+
}, _t = function(t) {
|
|
207
316
|
const e = document.createElement("me-parent"), n = this.createTopic(t);
|
|
208
|
-
return
|
|
209
|
-
},
|
|
317
|
+
return Tt.call(this, n, t), e.appendChild(n), { p: e, tpc: n };
|
|
318
|
+
}, qt = function(t) {
|
|
210
319
|
const e = document.createElement("me-children");
|
|
211
320
|
return e.append(...t), e;
|
|
212
|
-
},
|
|
321
|
+
}, jt = function(t) {
|
|
213
322
|
const e = document.createElement("me-tpc");
|
|
214
323
|
return e.nodeObj = t, e.dataset.nodeid = "me" + t.id, e;
|
|
215
324
|
};
|
|
216
|
-
function
|
|
325
|
+
function Lt(t) {
|
|
217
326
|
const e = document.createRange();
|
|
218
327
|
e.selectNodeContents(t);
|
|
219
328
|
const n = window.getSelection();
|
|
220
329
|
n && (n.removeAllRanges(), n.addRange(e));
|
|
221
330
|
}
|
|
222
|
-
const
|
|
331
|
+
const Ut = function(t) {
|
|
223
332
|
if (!t) return;
|
|
224
333
|
const e = document.createElement("div"), n = t.nodeObj, o = n.topic, { offsetLeft: s, offsetTop: i } = H(this.nodes, t);
|
|
225
334
|
this.nodes.appendChild(e), e.id = "input-box", e.textContent = o, e.contentEditable = "plaintext-only", e.spellcheck = !1;
|
|
@@ -234,16 +343,16 @@ const Gt = function(t) {
|
|
|
234
343
|
margin:${r.margin};
|
|
235
344
|
background-color:${r.backgroundColor !== "rgba(0, 0, 0, 0)" && r.backgroundColor};
|
|
236
345
|
border: ${r.border};
|
|
237
|
-
border-radius:${r.borderRadius}; `, this.direction === 0 && (e.style.right = "0"),
|
|
346
|
+
border-radius:${r.borderRadius}; `, this.direction === 0 && (e.style.right = "0"), Lt(e), this.bus.fire("operation", {
|
|
238
347
|
name: "beginEdit",
|
|
239
348
|
obj: t.nodeObj
|
|
240
349
|
}), e.addEventListener("keydown", (c) => {
|
|
241
350
|
c.stopPropagation();
|
|
242
|
-
const
|
|
243
|
-
if (
|
|
351
|
+
const d = c.key;
|
|
352
|
+
if (d === "Enter" || d === "Tab") {
|
|
244
353
|
if (c.shiftKey) return;
|
|
245
354
|
c.preventDefault(), e.blur(), this.container.focus();
|
|
246
|
-
} else
|
|
355
|
+
} else d === "Escape" && (c.preventDefault(), e.textContent = o, e.blur(), this.container.focus());
|
|
247
356
|
}), e.addEventListener("blur", () => {
|
|
248
357
|
if (!e) return;
|
|
249
358
|
e.remove();
|
|
@@ -254,14 +363,14 @@ const Gt = function(t) {
|
|
|
254
363
|
origin: o
|
|
255
364
|
}));
|
|
256
365
|
});
|
|
257
|
-
},
|
|
366
|
+
}, Kt = function(t) {
|
|
258
367
|
const e = document.createElement("me-epd");
|
|
259
368
|
return e.expanded = t !== !1, e.className = t !== !1 ? "minus" : "", e;
|
|
260
|
-
},
|
|
369
|
+
}, Jt = function(t) {
|
|
261
370
|
const n = t.parentElement.parentElement.lastElementChild;
|
|
262
371
|
n?.tagName === "svg" && n?.remove();
|
|
263
372
|
};
|
|
264
|
-
function
|
|
373
|
+
function Zt(t) {
|
|
265
374
|
return {
|
|
266
375
|
nodeData: t.isFocusMode ? t.nodeDataBackup : t.nodeData,
|
|
267
376
|
arrows: t.arrows,
|
|
@@ -270,301 +379,194 @@ function qt(t) {
|
|
|
270
379
|
theme: t.theme
|
|
271
380
|
};
|
|
272
381
|
}
|
|
273
|
-
const
|
|
382
|
+
const Qt = function(t) {
|
|
274
383
|
const e = this.container, n = t.getBoundingClientRect(), o = e.getBoundingClientRect();
|
|
275
384
|
if (n.top > o.bottom - 50 || n.bottom < o.top + 50 || n.left > o.right - 50 || n.right < o.left + 50) {
|
|
276
|
-
const i = n.left + n.width / 2, r = n.top + n.height / 2, c = o.left + o.width / 2,
|
|
277
|
-
this.move(-
|
|
385
|
+
const i = n.left + n.width / 2, r = n.top + n.height / 2, c = o.left + o.width / 2, d = o.top + o.height / 2, a = i - c, h = r - d;
|
|
386
|
+
this.move(-a, -h, !0);
|
|
278
387
|
}
|
|
279
|
-
},
|
|
388
|
+
}, te = function(t, e, n) {
|
|
280
389
|
this.clearSelection(), this.scrollIntoView(t), this.selection?.select(t), e && this.bus.fire("selectNewNode", t.nodeObj);
|
|
281
|
-
},
|
|
390
|
+
}, ee = function(t) {
|
|
282
391
|
this.selection?.select(t);
|
|
283
|
-
},
|
|
392
|
+
}, ne = function(t) {
|
|
284
393
|
this.selection?.deselect(t);
|
|
285
|
-
},
|
|
394
|
+
}, oe = function() {
|
|
286
395
|
this.unselectNodes(this.currentNodes), this.unselectSummary(), this.unselectArrow();
|
|
287
|
-
},
|
|
396
|
+
}, Dt = function(t) {
|
|
288
397
|
return JSON.stringify(t, (e, n) => {
|
|
289
398
|
if (!(e === "parent" && typeof n != "string"))
|
|
290
399
|
return n;
|
|
291
400
|
});
|
|
292
|
-
},
|
|
293
|
-
const t =
|
|
294
|
-
return
|
|
295
|
-
},
|
|
401
|
+
}, se = function() {
|
|
402
|
+
const t = Zt(this);
|
|
403
|
+
return Dt(t);
|
|
404
|
+
}, ie = function() {
|
|
296
405
|
return JSON.parse(this.getDataString());
|
|
297
|
-
},
|
|
406
|
+
}, re = function() {
|
|
298
407
|
this.editable = !0;
|
|
299
|
-
},
|
|
408
|
+
}, ce = function() {
|
|
300
409
|
this.editable = !1;
|
|
301
|
-
},
|
|
410
|
+
}, le = function(t, e = { x: 0, y: 0 }) {
|
|
302
411
|
if (t < this.scaleMin && t < this.scaleVal || t > this.scaleMax && t > this.scaleVal) return;
|
|
303
|
-
const n = this.container.getBoundingClientRect(), o = e.x ? e.x - n.left - n.width / 2 : 0, s = e.y ? e.y - n.top - n.height / 2 : 0, { dx: i, dy: r } = dt(this), c = this.map.style.transform, { x:
|
|
304
|
-
this.map.style.transform = `translate3d(${
|
|
305
|
-
},
|
|
412
|
+
const n = this.container.getBoundingClientRect(), o = e.x ? e.x - n.left - n.width / 2 : 0, s = e.y ? e.y - n.top - n.height / 2 : 0, { dx: i, dy: r } = dt(this), c = this.map.style.transform, { x: d, y: a } = at(c), h = d - i, f = a - r, p = this.scaleVal, m = (-o + h) * (1 - t / p), y = (-s + f) * (1 - t / p);
|
|
413
|
+
this.map.style.transform = `translate3d(${d - m}px, ${a - y}px, 0) scale(${t})`, this.scaleVal = t, this.bus.fire("scale", t);
|
|
414
|
+
}, ae = function() {
|
|
306
415
|
const t = this.nodes.offsetHeight / this.container.offsetHeight, e = this.nodes.offsetWidth / this.container.offsetWidth, n = 1 / Math.max(1, Math.max(t, e));
|
|
307
416
|
this.scaleVal = n;
|
|
308
417
|
const { dx: o, dy: s } = dt(this, !0);
|
|
309
418
|
this.map.style.transform = `translate3d(${o}px, ${s}px, 0) scale(${n})`, this.bus.fire("scale", n);
|
|
310
|
-
},
|
|
419
|
+
}, de = function(t, e, n = !1) {
|
|
311
420
|
const { map: o, scaleVal: s, bus: i, container: r, nodes: c } = this;
|
|
312
421
|
if (n && o.style.transition === "transform 0.3s")
|
|
313
422
|
return;
|
|
314
|
-
const
|
|
315
|
-
let { x:
|
|
316
|
-
const f = r.getBoundingClientRect(),
|
|
317
|
-
if (y) {
|
|
318
|
-
const p = u.left + t, g = u.right + t;
|
|
319
|
-
(p >= f.right || g <= f.left) && (t = 0);
|
|
320
|
-
}
|
|
423
|
+
const d = o.style.transform;
|
|
424
|
+
let { x: a, y: h } = at(d);
|
|
425
|
+
const f = r.getBoundingClientRect(), p = c.getBoundingClientRect(), m = p.left < f.right && p.right > f.left, y = p.top < f.bottom && p.bottom > f.top;
|
|
321
426
|
if (m) {
|
|
322
|
-
const
|
|
323
|
-
(
|
|
427
|
+
const u = p.left + t, g = p.right + t;
|
|
428
|
+
(u >= f.right || g <= f.left) && (t = 0);
|
|
429
|
+
}
|
|
430
|
+
if (y) {
|
|
431
|
+
const u = p.top + e, g = p.bottom + e;
|
|
432
|
+
(u >= f.bottom || g <= f.top) && (e = 0);
|
|
324
433
|
}
|
|
325
|
-
|
|
434
|
+
a += t, h += e, n && (o.style.transition = "transform 0.3s", setTimeout(() => {
|
|
326
435
|
o.style.transition = "none";
|
|
327
|
-
}, 300)), o.style.transform = `translate3d(${
|
|
436
|
+
}, 300)), o.style.transform = `translate3d(${a}px, ${h}px, 0) scale(${s})`, i.fire("move", { dx: t, dy: e });
|
|
328
437
|
}, dt = (t, e = !1) => {
|
|
329
438
|
const { container: n, map: o, nodes: s } = t;
|
|
330
439
|
let i, r;
|
|
331
440
|
if (t.alignment === "nodes" || e)
|
|
332
441
|
i = (n.offsetWidth - s.offsetWidth) / 2, r = (n.offsetHeight - s.offsetHeight) / 2, o.style.transformOrigin = "50% 50%";
|
|
333
442
|
else {
|
|
334
|
-
const c = o.querySelector("me-root"),
|
|
335
|
-
i = n.offsetWidth / 2 -
|
|
443
|
+
const c = o.querySelector("me-root"), d = c.offsetTop, a = c.offsetLeft, h = c.offsetWidth, f = c.offsetHeight;
|
|
444
|
+
i = n.offsetWidth / 2 - a - h / 2, r = n.offsetHeight / 2 - d - f / 2, o.style.transformOrigin = `${a + h / 2}px 50%`;
|
|
336
445
|
}
|
|
337
446
|
return { dx: i, dy: r };
|
|
338
|
-
},
|
|
447
|
+
}, he = function() {
|
|
339
448
|
const { map: t, container: e } = this, { dx: n, dy: o } = dt(this);
|
|
340
449
|
e.scrollTop = 0, e.scrollLeft = 0, t.style.transform = `translate3d(${n}px, ${o}px, 0) scale(${this.scaleVal})`;
|
|
341
|
-
},
|
|
450
|
+
}, fe = function(t) {
|
|
342
451
|
t(this);
|
|
343
|
-
},
|
|
452
|
+
}, ue = function(t) {
|
|
344
453
|
t.nodeObj.parent && (this.clearSelection(), this.tempDirection === null && (this.tempDirection = this.direction), this.isFocusMode || (this.nodeDataBackup = this.nodeData, this.isFocusMode = !0), this.nodeData = t.nodeObj, this.initRight(), this.toCenter());
|
|
345
|
-
},
|
|
454
|
+
}, pe = function() {
|
|
346
455
|
this.isFocusMode = !1, this.tempDirection !== null && (this.nodeData = this.nodeDataBackup, this.direction = this.tempDirection, this.tempDirection = null, this.refresh(), this.toCenter());
|
|
347
|
-
},
|
|
456
|
+
}, ge = function() {
|
|
348
457
|
this.direction = 0, this.refresh(), this.toCenter(), this.bus.fire("changeDirection", this.direction);
|
|
349
|
-
},
|
|
458
|
+
}, me = function() {
|
|
350
459
|
this.direction = 1, this.refresh(), this.toCenter(), this.bus.fire("changeDirection", this.direction);
|
|
351
|
-
},
|
|
460
|
+
}, ye = function() {
|
|
352
461
|
this.direction = 2, this.refresh(), this.toCenter(), this.bus.fire("changeDirection", this.direction);
|
|
353
|
-
},
|
|
462
|
+
}, we = function(t, e) {
|
|
354
463
|
const n = t.nodeObj;
|
|
355
464
|
typeof e == "boolean" ? n.expanded = e : n.expanded !== !1 ? n.expanded = !1 : n.expanded = !0;
|
|
356
465
|
const o = t.getBoundingClientRect(), s = {
|
|
357
466
|
x: o.left,
|
|
358
467
|
y: o.top
|
|
359
468
|
}, i = t.parentNode, r = i.children[1];
|
|
360
|
-
if (r.expanded = n.expanded, r.className = n.expanded ? "minus" : "",
|
|
469
|
+
if (r.expanded = n.expanded, r.className = n.expanded ? "minus" : "", Jt(t), n.expanded) {
|
|
361
470
|
const f = this.createChildren(
|
|
362
|
-
n.children.map((
|
|
471
|
+
n.children.map((p) => this.createWrapper(p).grp)
|
|
363
472
|
);
|
|
364
473
|
i.parentNode.appendChild(f);
|
|
365
474
|
} else
|
|
366
475
|
i.parentNode.children[1].remove();
|
|
367
476
|
this.linkDiv(t.closest("me-main > me-wrapper"));
|
|
368
|
-
const c = t.getBoundingClientRect(),
|
|
477
|
+
const c = t.getBoundingClientRect(), d = {
|
|
369
478
|
x: c.left,
|
|
370
479
|
y: c.top
|
|
371
|
-
},
|
|
372
|
-
this.move(
|
|
373
|
-
},
|
|
480
|
+
}, a = s.x - d.x, h = s.y - d.y;
|
|
481
|
+
this.move(a, h), this.bus.fire("expandNode", n);
|
|
482
|
+
}, ve = function(t, e) {
|
|
374
483
|
const n = t.nodeObj, o = t.getBoundingClientRect(), s = {
|
|
375
484
|
x: o.left,
|
|
376
485
|
y: o.top
|
|
377
486
|
};
|
|
378
|
-
|
|
487
|
+
bt(n, e ?? !n.expanded), this.refresh();
|
|
379
488
|
const i = this.findEle(n.id).getBoundingClientRect(), r = {
|
|
380
489
|
x: i.left,
|
|
381
490
|
y: i.top
|
|
382
|
-
}, c = s.x - r.x,
|
|
383
|
-
this.move(c,
|
|
384
|
-
},
|
|
491
|
+
}, c = s.x - r.x, d = s.y - r.y;
|
|
492
|
+
this.move(c, d);
|
|
493
|
+
}, be = function(t) {
|
|
385
494
|
this.clearSelection(), t && (t = JSON.parse(JSON.stringify(t)), this.nodeData = t.nodeData, this.arrows = t.arrows || [], this.summaries = t.summaries || [], t.theme && this.changeTheme(t.theme)), lt(this.nodeData), this.layout(), this.linkDiv();
|
|
386
|
-
},
|
|
495
|
+
}, xe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
387
496
|
__proto__: null,
|
|
388
|
-
cancelFocus:
|
|
389
|
-
clearSelection:
|
|
390
|
-
disableEdit:
|
|
391
|
-
enableEdit:
|
|
392
|
-
expandNode:
|
|
393
|
-
expandNodeAll:
|
|
394
|
-
focusNode:
|
|
395
|
-
getData:
|
|
396
|
-
getDataString:
|
|
397
|
-
initLeft:
|
|
398
|
-
initRight:
|
|
399
|
-
initSide:
|
|
400
|
-
install:
|
|
401
|
-
move:
|
|
402
|
-
refresh:
|
|
403
|
-
scale:
|
|
404
|
-
scaleFit:
|
|
405
|
-
scrollIntoView:
|
|
406
|
-
selectNode:
|
|
407
|
-
selectNodes:
|
|
408
|
-
stringifyData:
|
|
409
|
-
toCenter:
|
|
410
|
-
unselectNodes:
|
|
411
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
412
|
-
const {
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
const o = `insert-preview ${e} show`;
|
|
425
|
-
return n || (n = document.createElement("div"), t.appendChild(n)), n.className = o, t;
|
|
426
|
-
}, Z = function(t) {
|
|
427
|
-
if (!t) return;
|
|
428
|
-
const e = t.querySelectorAll(".insert-preview");
|
|
429
|
-
for (const n of e || [])
|
|
430
|
-
n.remove();
|
|
431
|
-
}, gt = function(t, e) {
|
|
432
|
-
for (const n of e) {
|
|
433
|
-
const o = n.parentElement.parentElement.contains(t);
|
|
434
|
-
if (!(t && t.tagName === "ME-TPC" && t !== n && !o && t.nodeObj.parent)) return !1;
|
|
435
|
-
}
|
|
436
|
-
return !0;
|
|
437
|
-
}, ye = function(t) {
|
|
438
|
-
const e = document.createElement("div");
|
|
439
|
-
return e.className = "mind-elixir-ghost", t.container.appendChild(e), e;
|
|
497
|
+
cancelFocus: pe,
|
|
498
|
+
clearSelection: oe,
|
|
499
|
+
disableEdit: ce,
|
|
500
|
+
enableEdit: re,
|
|
501
|
+
expandNode: we,
|
|
502
|
+
expandNodeAll: ve,
|
|
503
|
+
focusNode: ue,
|
|
504
|
+
getData: ie,
|
|
505
|
+
getDataString: se,
|
|
506
|
+
initLeft: ge,
|
|
507
|
+
initRight: me,
|
|
508
|
+
initSide: ye,
|
|
509
|
+
install: fe,
|
|
510
|
+
move: de,
|
|
511
|
+
refresh: be,
|
|
512
|
+
scale: le,
|
|
513
|
+
scaleFit: ae,
|
|
514
|
+
scrollIntoView: Qt,
|
|
515
|
+
selectNode: te,
|
|
516
|
+
selectNodes: ee,
|
|
517
|
+
stringifyData: Dt,
|
|
518
|
+
toCenter: he,
|
|
519
|
+
unselectNodes: ne
|
|
520
|
+
}, Symbol.toStringTag, { value: "Module" })), Ce = 40, Ee = 10, Se = ({ deltaMode: t, deltaY: e, viewportHeight: n }) => t === WheelEvent.DOM_DELTA_LINE ? e * Ce : t === WheelEvent.DOM_DELTA_PAGE ? e * n : e, Te = ({ deltaMode: t, deltaY: e, scaleSensitivity: n, viewportHeight: o }) => {
|
|
521
|
+
const i = -Se({ deltaMode: t, deltaY: e, viewportHeight: o }) / Ee * n;
|
|
522
|
+
return Math.max(-n, Math.min(n, i));
|
|
523
|
+
}, Le = (t, e, n) => {
|
|
524
|
+
e !== 0 && t.scale(t.scaleVal + e, n);
|
|
525
|
+
}, De = (t, e) => {
|
|
526
|
+
const n = Te({
|
|
527
|
+
deltaMode: e.deltaMode,
|
|
528
|
+
deltaY: e.deltaY,
|
|
529
|
+
scaleSensitivity: t.scaleSensitivity,
|
|
530
|
+
viewportHeight: t.container.clientHeight || window.innerHeight
|
|
531
|
+
});
|
|
532
|
+
Le(t, n, { x: e.clientX, y: e.clientY });
|
|
440
533
|
};
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
interval = null;
|
|
445
|
-
speed = 20;
|
|
446
|
-
constructor(e) {
|
|
447
|
-
this.mind = e;
|
|
448
|
-
}
|
|
449
|
-
move(e, n) {
|
|
450
|
-
this.isMoving || (this.isMoving = !0, this.interval = setInterval(() => {
|
|
451
|
-
this.mind.move(e * this.speed * this.mind.scaleVal, n * this.speed * this.mind.scaleVal);
|
|
452
|
-
}, 100));
|
|
453
|
-
}
|
|
454
|
-
stop() {
|
|
455
|
-
this.isMoving = !1, this.interval && (clearInterval(this.interval), this.interval = null);
|
|
456
|
-
}
|
|
457
|
-
}
|
|
458
|
-
function we(t) {
|
|
459
|
-
return {
|
|
460
|
-
isDragging: !1,
|
|
461
|
-
insertType: null,
|
|
462
|
-
meet: null,
|
|
463
|
-
ghost: ye(t),
|
|
464
|
-
edgeMoveController: new ve(t),
|
|
465
|
-
startX: 0,
|
|
466
|
-
startY: 0,
|
|
467
|
-
pointerId: null
|
|
468
|
-
};
|
|
469
|
-
}
|
|
470
|
-
const be = 5;
|
|
471
|
-
function mt(t, e, n, o = !1) {
|
|
472
|
-
if (t.spacePressed) return !1;
|
|
473
|
-
const s = n.target;
|
|
474
|
-
if (s?.tagName !== "ME-TPC" || !s.nodeObj.parent) return !1;
|
|
475
|
-
e.startX = n.clientX, e.startY = n.clientY, e.pointerId = n.pointerId, t.selection?.cancel();
|
|
476
|
-
let i = t.currentNodes;
|
|
477
|
-
return i?.includes(s) || (t.selectNode(s), i = t.currentNodes), t.dragged = i, o && Mt(t, e), !0;
|
|
478
|
-
}
|
|
479
|
-
function Dt(t, e, n) {
|
|
480
|
-
t.style.transform = `translate(${e - 10}px, ${n - 10}px)`, t.style.display = "block";
|
|
481
|
-
}
|
|
482
|
-
function Mt(t, e) {
|
|
483
|
-
const { dragged: n } = t;
|
|
484
|
-
if (!n) return;
|
|
485
|
-
const o = document.activeElement;
|
|
486
|
-
o && o.isContentEditable && o.blur(), e.isDragging = !0, n.length > 1 ? e.ghost.innerHTML = n.length + "" : e.ghost.innerHTML = n[0].innerHTML;
|
|
487
|
-
for (const s of n)
|
|
488
|
-
s.parentElement.parentElement.style.opacity = "0.5";
|
|
489
|
-
t.dragMoveHelper.clear();
|
|
490
|
-
}
|
|
491
|
-
function xe(t, e, n) {
|
|
492
|
-
const { dragged: o } = t;
|
|
493
|
-
if (!o || e.pointerId !== n.pointerId) return;
|
|
494
|
-
const s = n.clientX - e.startX, i = n.clientY - e.startY, r = Math.sqrt(s * s + i * i);
|
|
495
|
-
if (!e.isDragging && r > be && Mt(t, e), !e.isDragging) return;
|
|
496
|
-
const c = t.container.getBoundingClientRect();
|
|
497
|
-
Dt(e.ghost, n.clientX - c.x, n.clientY - c.y), n.clientX < c.x + 50 ? e.edgeMoveController.move(1, 0) : n.clientX > c.x + c.width - 50 ? e.edgeMoveController.move(-1, 0) : n.clientY < c.y + 50 ? e.edgeMoveController.move(0, 1) : n.clientY > c.y + c.height - 50 ? e.edgeMoveController.move(0, -1) : e.edgeMoveController.stop(), Z(e.meet);
|
|
498
|
-
const a = 12 * t.scaleVal, l = document.elementFromPoint(n.clientX, n.clientY - a);
|
|
499
|
-
if (gt(l, o)) {
|
|
500
|
-
e.meet = l;
|
|
501
|
-
const h = l.getBoundingClientRect(), f = h.y;
|
|
502
|
-
n.clientY > f + h.height ? e.insertType = "after" : e.insertType = "in";
|
|
503
|
-
} else {
|
|
504
|
-
const h = document.elementFromPoint(n.clientX, n.clientY + a);
|
|
505
|
-
if (gt(h, o)) {
|
|
506
|
-
e.meet = h;
|
|
507
|
-
const u = h.getBoundingClientRect().y;
|
|
508
|
-
n.clientY < u ? e.insertType = "before" : e.insertType = "in";
|
|
509
|
-
} else
|
|
510
|
-
e.insertType = null, e.meet = null;
|
|
511
|
-
}
|
|
512
|
-
e.meet && me(e.meet, e.insertType);
|
|
513
|
-
}
|
|
514
|
-
function Ce(t, e, n) {
|
|
515
|
-
const { dragged: o } = t;
|
|
516
|
-
if (!(!o || e.pointerId !== n.pointerId)) {
|
|
517
|
-
e.edgeMoveController.stop();
|
|
518
|
-
for (const s of o)
|
|
519
|
-
s.parentElement.parentElement.style.opacity = "1";
|
|
520
|
-
e.ghost.style.display = "none", e.ghost.innerHTML = "", e.isDragging && e.meet && (Z(e.meet), e.insertType === "before" ? t.moveNodeBefore(o, e.meet) : e.insertType === "after" ? t.moveNodeAfter(o, e.meet) : e.insertType === "in" && t.moveNodeIn(o, e.meet)), t.dragged = null, e.isDragging = !1, e.insertType = null, e.meet = null, e.pointerId = null;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
function ot(t, e) {
|
|
524
|
-
const { dragged: n } = t;
|
|
525
|
-
if (n) {
|
|
526
|
-
e.edgeMoveController.stop();
|
|
527
|
-
for (const o of n)
|
|
528
|
-
o.parentElement.parentElement.style.opacity = "1";
|
|
529
|
-
e.meet && Z(e.meet), e.ghost.style.display = "none", e.ghost.innerHTML = "", t.dragged = null, e.isDragging = !1, e.insertType = null, e.meet = null, e.pointerId = null;
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
function Ee(t) {
|
|
533
|
-
const { dragMoveHelper: e } = t;
|
|
534
|
-
let n = 0;
|
|
534
|
+
function Me(t) {
|
|
535
|
+
const { panHelper: e } = t;
|
|
536
|
+
let n = 0, o = null;
|
|
535
537
|
t.spacePressed = !1;
|
|
536
|
-
let
|
|
537
|
-
const
|
|
538
|
-
let
|
|
539
|
-
const
|
|
540
|
-
|
|
541
|
-
}, y = (
|
|
542
|
-
|
|
543
|
-
},
|
|
544
|
-
if (
|
|
545
|
-
const E =
|
|
538
|
+
let s = null;
|
|
539
|
+
const i = /* @__PURE__ */ new Map(), r = Bt(t);
|
|
540
|
+
let c = null, d = null, a = null, h = null;
|
|
541
|
+
const f = 500, p = 10, m = () => {
|
|
542
|
+
c !== null && (clearTimeout(c), c = null, d = null, a = null, h = null);
|
|
543
|
+
}, y = (l, w) => {
|
|
544
|
+
l.hasPointerCapture && l.hasPointerCapture(w) && l.releasePointerCapture(w);
|
|
545
|
+
}, u = (l, w) => {
|
|
546
|
+
if (l.id === "input-box" || l.closest("#input-box")) return !1;
|
|
547
|
+
const E = l.closest(".svg-label");
|
|
546
548
|
if (E) {
|
|
547
|
-
const
|
|
548
|
-
if (
|
|
549
|
-
if (
|
|
550
|
-
return
|
|
551
|
-
if (
|
|
552
|
-
return
|
|
549
|
+
const D = E.dataset.svgId, V = E.dataset.type, z = document.getElementById(D);
|
|
550
|
+
if (z) {
|
|
551
|
+
if (V === "arrow")
|
|
552
|
+
return w ? t.editArrowLabel(z) : t.selectArrow(z), !0;
|
|
553
|
+
if (V === "summary")
|
|
554
|
+
return w ? t.editSummary(z) : t.selectSummary(z), !0;
|
|
553
555
|
}
|
|
554
556
|
}
|
|
555
|
-
if (
|
|
556
|
-
const
|
|
557
|
-
if (
|
|
558
|
-
return
|
|
557
|
+
if (l.closest(".topiclinks")) {
|
|
558
|
+
const D = l.closest("g");
|
|
559
|
+
if (D)
|
|
560
|
+
return w ? t.editArrowLabel(D) : t.selectArrow(D), !0;
|
|
559
561
|
}
|
|
560
|
-
if (
|
|
561
|
-
const
|
|
562
|
-
if (
|
|
563
|
-
return
|
|
562
|
+
if (l.closest(".summary")) {
|
|
563
|
+
const D = l.closest("g");
|
|
564
|
+
if (D)
|
|
565
|
+
return w ? t.editSummary(D) : t.selectSummary(D), !0;
|
|
564
566
|
}
|
|
565
567
|
return !1;
|
|
566
|
-
},
|
|
567
|
-
if (
|
|
568
|
+
}, g = (l) => {
|
|
569
|
+
if (l.pointerType === "mouse" && l.button !== 0) return;
|
|
568
570
|
if (t.helper1?.moved) {
|
|
569
571
|
t.helper1.clear();
|
|
570
572
|
return;
|
|
@@ -577,115 +579,125 @@ function Ee(t) {
|
|
|
577
579
|
e.clear();
|
|
578
580
|
return;
|
|
579
581
|
}
|
|
580
|
-
if (
|
|
582
|
+
if (r?.isDragging)
|
|
581
583
|
return;
|
|
582
|
-
const
|
|
583
|
-
if (
|
|
584
|
-
|
|
585
|
-
else if (v.tagName === "ME-TPC" && t.currentNodes.length > 1)
|
|
586
|
-
t.selectNode(v);
|
|
584
|
+
const w = l.target;
|
|
585
|
+
if (w.tagName === "ME-EPD")
|
|
586
|
+
l.ctrlKey || l.metaKey ? t.expandNodeAll(w.previousSibling) : t.expandNode(w.previousSibling);
|
|
587
587
|
else if (!t.editable)
|
|
588
588
|
return;
|
|
589
|
-
|
|
590
|
-
},
|
|
589
|
+
u(w, !1);
|
|
590
|
+
}, b = (l) => {
|
|
591
591
|
if (!t.editable) return;
|
|
592
|
-
const
|
|
593
|
-
|
|
594
|
-
},
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
},
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
}, S = (d) => {
|
|
603
|
-
if (d.pointerType === "touch" && (s.set(d.pointerId, { x: d.clientX, y: d.clientY }), s.size === 2)) {
|
|
604
|
-
const [$, q] = Array.from(s.values());
|
|
605
|
-
o = ut($, q), u();
|
|
592
|
+
const w = l.target;
|
|
593
|
+
q(w) && t.beginEdit(w), u(w, !0);
|
|
594
|
+
}, v = (l) => {
|
|
595
|
+
l.code === "Space" && (t.spacePressed = !0, t.container.classList.add("space-pressed"));
|
|
596
|
+
}, x = (l) => {
|
|
597
|
+
l.code === "Space" && (t.spacePressed = !1, t.container.classList.remove("space-pressed"));
|
|
598
|
+
}, S = (l) => {
|
|
599
|
+
if (l.pointerType === "touch" && (i.set(l.pointerId, { x: l.clientX, y: l.clientY }), i.size === 2)) {
|
|
600
|
+
const [D, V] = Array.from(i.values());
|
|
601
|
+
s = ut(D, V), m();
|
|
606
602
|
}
|
|
607
603
|
e.moved = !1;
|
|
608
|
-
const
|
|
609
|
-
if (t.editable &&
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
(
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
604
|
+
const w = l.target, E = t.mouseSelectionButton === 0 ? 2 : 0;
|
|
605
|
+
if (t.editable && (l.button === 0 || l.pointerType === "touch") && q(w)) {
|
|
606
|
+
t.selection?.cancel();
|
|
607
|
+
const D = t.currentNodes || [];
|
|
608
|
+
if (l.ctrlKey || l.metaKey)
|
|
609
|
+
if (D.includes(w)) {
|
|
610
|
+
t.selection?.deselect(w);
|
|
611
|
+
return;
|
|
612
|
+
} else
|
|
613
|
+
t.selection?.select(w);
|
|
614
|
+
else D.includes(w) || t.selectNode(w);
|
|
615
|
+
}
|
|
616
|
+
if (t.editable && (l.button === 0 || l.pointerType === "touch")) {
|
|
617
|
+
if (l.pointerType === "touch" && i.size > 1)
|
|
618
|
+
(r.isDragging || r.pointerId !== null) && ot(t, r);
|
|
619
|
+
else if (l.pointerType === "touch" && i.size === 1)
|
|
620
|
+
(q(w) || w.closest("me-tpc")) && (d = { x: l.clientX, y: l.clientY }, a = w, h = l.pointerId, c = window.setTimeout(() => {
|
|
621
|
+
gt(t, r, l, !0) && (a && a.setPointerCapture(l.pointerId), Ct(r.ghost, l.clientX, l.clientY)), c = null, d = null, a = null, h = null;
|
|
622
|
+
}, f));
|
|
623
|
+
else if (l.pointerType === "mouse" && gt(t, r, l, !1)) {
|
|
624
|
+
w.setPointerCapture(l.pointerId);
|
|
618
625
|
return;
|
|
619
626
|
}
|
|
620
627
|
}
|
|
621
|
-
const
|
|
622
|
-
!
|
|
623
|
-
}, T = (
|
|
624
|
-
if (
|
|
625
|
-
if (
|
|
626
|
-
const
|
|
627
|
-
Math.sqrt(
|
|
628
|
+
const N = t.spacePressed && l.button === 0 && l.pointerType === "mouse", B = !t.editable || l.button === E && l.pointerType === "mouse" || l.pointerType === "touch";
|
|
629
|
+
!N && !B || (e.x = l.clientX, e.y = l.clientY, w.className !== "circle" && w.contentEditable !== "plaintext-only" && (e.mousedown = !0, w.setPointerCapture(l.pointerId)));
|
|
630
|
+
}, T = (l) => {
|
|
631
|
+
if (l.pointerType === "touch" && i.has(l.pointerId)) {
|
|
632
|
+
if (i.set(l.pointerId, { x: l.clientX, y: l.clientY }), c !== null && d !== null && l.pointerId === h) {
|
|
633
|
+
const w = l.clientX - d.x, E = l.clientY - d.y;
|
|
634
|
+
Math.sqrt(w * w + E * E) > p && m();
|
|
628
635
|
}
|
|
629
|
-
if (
|
|
630
|
-
const [
|
|
631
|
-
if (
|
|
632
|
-
|
|
636
|
+
if (i.size >= 2) {
|
|
637
|
+
const [w, E] = Array.from(i.values()), N = ut(w, E);
|
|
638
|
+
if (s == null)
|
|
639
|
+
s = N;
|
|
633
640
|
else {
|
|
634
|
-
if (
|
|
635
|
-
const B =
|
|
641
|
+
if (s > 0) {
|
|
642
|
+
const B = N / s;
|
|
636
643
|
t.scale(t.scaleVal * B, {
|
|
637
|
-
x: (
|
|
638
|
-
y: (
|
|
644
|
+
x: (w.x + E.x) / 2,
|
|
645
|
+
y: (w.y + E.y) / 2
|
|
639
646
|
});
|
|
640
647
|
}
|
|
641
|
-
|
|
648
|
+
s = N;
|
|
642
649
|
}
|
|
643
650
|
return;
|
|
644
651
|
}
|
|
645
652
|
}
|
|
646
|
-
if (!(
|
|
647
|
-
if (
|
|
648
|
-
const
|
|
649
|
-
e.onMove(
|
|
653
|
+
if (!(r && r.pointerId !== null && (Rt(t, r, l), r.isDragging))) {
|
|
654
|
+
if (l.target.contentEditable !== "plaintext-only" || t.spacePressed && e.mousedown) {
|
|
655
|
+
const w = l.clientX - e.x, E = l.clientY - e.y;
|
|
656
|
+
e.onMove(w, E);
|
|
650
657
|
}
|
|
651
|
-
e.x =
|
|
658
|
+
e.x = l.clientX, e.y = l.clientY;
|
|
652
659
|
}
|
|
653
|
-
}, L = (
|
|
654
|
-
if (
|
|
655
|
-
const
|
|
656
|
-
if (
|
|
660
|
+
}, L = (l) => {
|
|
661
|
+
if (l.pointerType === "touch" && (i.delete(l.pointerId), i.size < 2 && (s = null), m()), r && r.pointerId !== null) {
|
|
662
|
+
const E = r.isDragging;
|
|
663
|
+
if (Xt(t, r, l), y(l.target, l.pointerId), E)
|
|
657
664
|
return;
|
|
658
665
|
}
|
|
659
|
-
|
|
666
|
+
if (l.pointerType === "touch" && i.size === 0 && !e.moved) {
|
|
667
|
+
const E = (/* @__PURE__ */ new Date()).getTime(), N = E - n;
|
|
668
|
+
N < 300 && N > 0 && o === l.target && b(l), n = E, o = l.target;
|
|
669
|
+
}
|
|
670
|
+
e.mousedown && (y(l.target, l.pointerId), e.clear());
|
|
660
671
|
}, C = () => {
|
|
661
|
-
|
|
662
|
-
},
|
|
663
|
-
|
|
664
|
-
},
|
|
665
|
-
if (
|
|
666
|
-
const
|
|
667
|
-
|
|
668
|
-
t.
|
|
672
|
+
m(), e.mousedown && e.clear(), r && (r.isDragging || r.pointerId !== null) && ot(t, r);
|
|
673
|
+
}, P = (l) => {
|
|
674
|
+
l.pointerType === "touch" && (i.delete(l.pointerId), i.size < 2 && (s = null), m()), r && r.pointerId === l.pointerId && ot(t, r), L(l);
|
|
675
|
+
}, k = (l) => {
|
|
676
|
+
if (l.preventDefault(), l.button !== 2 || !t.editable) return;
|
|
677
|
+
const w = l.target;
|
|
678
|
+
q(w) && !w.classList.contains("selected") && t.selectNode(w), setTimeout(() => {
|
|
679
|
+
t.panHelper.moved || t.bus.fire("showContextMenu", l);
|
|
669
680
|
}, 200);
|
|
670
|
-
}, Y = (
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
{ dom:
|
|
677
|
-
{ dom:
|
|
678
|
-
{ dom:
|
|
679
|
-
{ dom:
|
|
680
|
-
{ dom:
|
|
681
|
-
{ dom:
|
|
682
|
-
{ dom:
|
|
683
|
-
{ dom:
|
|
684
|
-
{ dom:
|
|
685
|
-
{ dom:
|
|
681
|
+
}, Y = (l) => {
|
|
682
|
+
if (l.stopPropagation(), l.preventDefault(), l.ctrlKey || l.metaKey) return De(t, l);
|
|
683
|
+
if (l.shiftKey) return t.move(-l.deltaY, 0);
|
|
684
|
+
t.move(-l.deltaX, -l.deltaY);
|
|
685
|
+
}, { container: A } = t;
|
|
686
|
+
return xt([
|
|
687
|
+
{ dom: A, evt: "pointerdown", func: S },
|
|
688
|
+
{ dom: A, evt: "pointermove", func: T },
|
|
689
|
+
{ dom: A, evt: "pointerup", func: L },
|
|
690
|
+
{ dom: A, evt: "pointercancel", func: P },
|
|
691
|
+
{ dom: A, evt: "click", func: g },
|
|
692
|
+
{ dom: A, evt: "dblclick", func: b },
|
|
693
|
+
{ dom: A, evt: "contextmenu", func: k },
|
|
694
|
+
{ dom: A, evt: "wheel", func: typeof t.handleWheel == "function" ? t.handleWheel : Y },
|
|
695
|
+
{ dom: A, evt: "blur", func: C },
|
|
696
|
+
{ dom: A, evt: "keydown", func: v },
|
|
697
|
+
{ dom: A, evt: "keyup", func: x }
|
|
686
698
|
]);
|
|
687
699
|
}
|
|
688
|
-
function
|
|
700
|
+
function ke() {
|
|
689
701
|
return {
|
|
690
702
|
handlers: {},
|
|
691
703
|
addListener: function(t, e) {
|
|
@@ -709,30 +721,30 @@ function Se() {
|
|
|
709
721
|
}
|
|
710
722
|
};
|
|
711
723
|
}
|
|
712
|
-
const I = "http://www.w3.org/2000/svg",
|
|
724
|
+
const I = "http://www.w3.org/2000/svg", et = function(t) {
|
|
713
725
|
const e = t.clientWidth, n = t.clientHeight, o = t.dataset, s = Number(o.x), i = Number(o.y), r = o.anchor;
|
|
714
726
|
let c = s;
|
|
715
727
|
r === "middle" ? c = s - e / 2 : r === "end" && (c = s - e), t.style.left = `${c}px`, t.style.top = `${i - n / 2}px`, t.style.visibility = "visible";
|
|
716
728
|
}, it = function(t, e, n, o) {
|
|
717
|
-
const { anchor: s = "middle", color: i, dataType: r, svgId: c } = o,
|
|
718
|
-
|
|
719
|
-
const
|
|
720
|
-
return
|
|
721
|
-
},
|
|
729
|
+
const { anchor: s = "middle", color: i, dataType: r, svgId: c } = o, d = document.createElement("div");
|
|
730
|
+
d.className = "svg-label", d.style.color = i || "#666";
|
|
731
|
+
const a = "label-" + c;
|
|
732
|
+
return d.id = a, d.innerHTML = t, d.dataset.type = r, d.dataset.svgId = c, d.dataset.x = e.toString(), d.dataset.y = n.toString(), d.dataset.anchor = s, d;
|
|
733
|
+
}, Mt = function(t, e, n) {
|
|
722
734
|
const o = document.createElementNS(I, "path");
|
|
723
|
-
return
|
|
735
|
+
return M(o, {
|
|
724
736
|
d: t,
|
|
725
737
|
stroke: e || "#666",
|
|
726
738
|
fill: "none",
|
|
727
739
|
"stroke-width": n
|
|
728
740
|
}), o;
|
|
729
|
-
},
|
|
741
|
+
}, F = function(t) {
|
|
730
742
|
const e = document.createElementNS(I, "svg");
|
|
731
743
|
return e.setAttribute("class", t), e.setAttribute("overflow", "visible"), e;
|
|
732
|
-
},
|
|
744
|
+
}, mt = function() {
|
|
733
745
|
const t = document.createElementNS(I, "line");
|
|
734
746
|
return t.setAttribute("stroke", "#4dc4ff"), t.setAttribute("fill", "none"), t.setAttribute("stroke-width", "2"), t.setAttribute("opacity", "0.45"), t;
|
|
735
|
-
},
|
|
747
|
+
}, Ne = function(t, e, n, o) {
|
|
736
748
|
const s = document.createElementNS(I, "g");
|
|
737
749
|
return [
|
|
738
750
|
{
|
|
@@ -748,30 +760,30 @@ const I = "http://www.w3.org/2000/svg", tt = function(t) {
|
|
|
748
760
|
d: n
|
|
749
761
|
}
|
|
750
762
|
].forEach((r, c) => {
|
|
751
|
-
const
|
|
752
|
-
d
|
|
763
|
+
const d = r.d, a = document.createElementNS(I, "path"), h = {
|
|
764
|
+
d,
|
|
753
765
|
stroke: o?.stroke || "rgb(227, 125, 116)",
|
|
754
766
|
fill: "none",
|
|
755
767
|
"stroke-linecap": o?.strokeLinecap || "cap",
|
|
756
768
|
"stroke-width": String(o?.strokeWidth || "2")
|
|
757
769
|
};
|
|
758
|
-
o?.opacity !== void 0 && (h.opacity = String(o.opacity)),
|
|
770
|
+
o?.opacity !== void 0 && (h.opacity = String(o.opacity)), M(a, h), c === 0 && a.setAttribute("stroke-dasharray", o?.strokeDasharray || "8,2");
|
|
759
771
|
const f = document.createElementNS(I, "path");
|
|
760
|
-
|
|
761
|
-
d
|
|
772
|
+
M(f, {
|
|
773
|
+
d,
|
|
762
774
|
stroke: "transparent",
|
|
763
775
|
fill: "none",
|
|
764
776
|
"stroke-width": "15"
|
|
765
|
-
}), s.appendChild(f), s.appendChild(
|
|
777
|
+
}), s.appendChild(f), s.appendChild(a), s[r.name] = a;
|
|
766
778
|
}), s;
|
|
767
|
-
},
|
|
779
|
+
}, kt = function(t, e, n) {
|
|
768
780
|
if (!e) return;
|
|
769
781
|
const o = n.label, s = e.cloneNode(!0);
|
|
770
782
|
t.nodes.appendChild(s), s.id = "input-box", s.textContent = o, s.contentEditable = "plaintext-only", s.spellcheck = !1, s.style.cssText = `
|
|
771
783
|
left:${e.style.left};
|
|
772
784
|
top:${e.style.top};
|
|
773
785
|
max-width: 200px;
|
|
774
|
-
`,
|
|
786
|
+
`, Lt(s), t.scrollIntoView(s), s.addEventListener("keydown", (i) => {
|
|
775
787
|
i.stopPropagation();
|
|
776
788
|
const r = i.key;
|
|
777
789
|
if (r === "Enter" || r === "Tab") {
|
|
@@ -781,7 +793,7 @@ const I = "http://www.w3.org/2000/svg", tt = function(t) {
|
|
|
781
793
|
}), s.addEventListener("blur", () => {
|
|
782
794
|
if (!s) return;
|
|
783
795
|
const i = s.innerText?.trim() || "";
|
|
784
|
-
i === "" ? n.label = o : n.label = i, s.remove(), i !== o && (t.markdown ? e.innerHTML = t.markdown(n.label, n) : e.textContent = n.label,
|
|
796
|
+
i === "" ? n.label = o : n.label = i, s.remove(), i !== o && (t.markdown ? e.innerHTML = t.markdown(n.label, n) : e.textContent = n.label, et(e), "parent" in n ? t.bus.fire("operation", {
|
|
785
797
|
name: "finishEditSummary",
|
|
786
798
|
obj: n
|
|
787
799
|
}) : t.bus.fire("operation", {
|
|
@@ -789,62 +801,62 @@ const I = "http://www.w3.org/2000/svg", tt = function(t) {
|
|
|
789
801
|
obj: n
|
|
790
802
|
}));
|
|
791
803
|
});
|
|
792
|
-
},
|
|
804
|
+
}, Pe = function(t) {
|
|
793
805
|
const e = this.map.querySelector("me-root"), n = e.offsetTop, o = e.offsetLeft, s = e.offsetWidth, i = e.offsetHeight, r = this.map.querySelectorAll("me-main > me-wrapper");
|
|
794
806
|
this.lines.innerHTML = "";
|
|
795
807
|
for (let c = 0; c < r.length; c++) {
|
|
796
|
-
const
|
|
797
|
-
if (
|
|
808
|
+
const d = r[c], a = d.querySelector("me-tpc"), { offsetLeft: h, offsetTop: f } = H(this.nodes, a), p = a.offsetWidth, m = a.offsetHeight, y = d.parentNode.className, u = this.generateMainBranch({ pT: n, pL: o, pW: s, pH: i, cT: f, cL: h, cW: p, cH: m, direction: y, containerHeight: this.nodes.offsetHeight }), g = this.theme.palette, b = a.nodeObj.branchColor || g[c % g.length];
|
|
809
|
+
if (a.style.borderColor = b, this.lines.appendChild(Mt(u, b, "3")), t && t !== d)
|
|
798
810
|
continue;
|
|
799
|
-
const
|
|
800
|
-
x.tagName === "svg" && x.remove(),
|
|
811
|
+
const v = F("subLines"), x = d.lastChild;
|
|
812
|
+
x.tagName === "svg" && x.remove(), d.appendChild(v), Nt(this, v, b, d, y, !0);
|
|
801
813
|
}
|
|
802
814
|
this.labelContainer.innerHTML = "", this.renderArrow(), this.renderSummary(), this.bus.fire("linkDiv");
|
|
803
|
-
},
|
|
815
|
+
}, Nt = function(t, e, n, o, s, i) {
|
|
804
816
|
const r = o.firstChild, c = o.children[1].children;
|
|
805
817
|
if (c.length === 0) return;
|
|
806
|
-
const
|
|
807
|
-
for (let
|
|
808
|
-
const
|
|
809
|
-
e.appendChild(
|
|
810
|
-
const T =
|
|
818
|
+
const d = r.offsetTop, a = r.offsetLeft, h = r.offsetWidth, f = r.offsetHeight;
|
|
819
|
+
for (let p = 0; p < c.length; p++) {
|
|
820
|
+
const m = c[p], y = m.firstChild, u = y.offsetTop, g = y.offsetLeft, b = y.offsetWidth, v = y.offsetHeight, x = y.firstChild.nodeObj.branchColor || n, S = t.generateSubBranch({ pT: d, pL: a, pW: h, pH: f, cT: u, cL: g, cW: b, cH: v, direction: s, isFirst: i });
|
|
821
|
+
e.appendChild(Mt(S, x, "2"));
|
|
822
|
+
const T = y.children[1];
|
|
811
823
|
if (T) {
|
|
812
824
|
if (!T.expanded) continue;
|
|
813
825
|
} else
|
|
814
826
|
continue;
|
|
815
|
-
|
|
827
|
+
Nt(t, e, x, m, s);
|
|
816
828
|
}
|
|
817
|
-
},
|
|
818
|
-
side:
|
|
819
|
-
left:
|
|
820
|
-
right:
|
|
821
|
-
full:
|
|
822
|
-
living:
|
|
823
|
-
zoomin:
|
|
824
|
-
zoomout:
|
|
825
|
-
},
|
|
829
|
+
}, Ae = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169394918" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2021" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M851.91168 328.45312c-59.97056 0-108.6208 48.47104-108.91264 108.36992l-137.92768 38.4a109.14304 109.14304 0 0 0-63.46752-46.58688l1.39264-137.11872c47.29344-11.86816 82.31936-54.66624 82.31936-105.64096 0-60.15488-48.76288-108.91776-108.91776-108.91776s-108.91776 48.76288-108.91776 108.91776c0 49.18784 32.60928 90.75712 77.38368 104.27392l-1.41312 138.87488a109.19936 109.19936 0 0 0-63.50336 48.55808l-138.93632-39.48544 0.01024-0.72704c0-60.15488-48.76288-108.91776-108.91776-108.91776s-108.91776 48.75776-108.91776 108.91776c0 60.15488 48.76288 108.91264 108.91776 108.91264 39.3984 0 73.91232-20.92032 93.03552-52.2496l139.19232 39.552-0.00512 0.2304c0 25.8304 9.00096 49.5616 24.02816 68.23424l-90.14272 132.63872a108.7488 108.7488 0 0 0-34.2528-5.504c-60.15488 0-108.91776 48.768-108.91776 108.91776 0 60.16 48.76288 108.91776 108.91776 108.91776 60.16 0 108.92288-48.75776 108.92288-108.91776 0-27.14624-9.9328-51.968-26.36288-71.04l89.04704-131.03104a108.544 108.544 0 0 0 37.6832 6.70208 108.672 108.672 0 0 0 36.48512-6.272l93.13792 132.57216a108.48256 108.48256 0 0 0-24.69888 69.0688c0 60.16 48.768 108.92288 108.91776 108.92288 60.16 0 108.91776-48.76288 108.91776-108.92288 0-60.14976-48.75776-108.91776-108.91776-108.91776a108.80512 108.80512 0 0 0-36.69504 6.3488l-93.07136-132.48a108.48768 108.48768 0 0 0 24.79616-72.22784l136.09984-37.888c18.99008 31.93856 53.84192 53.3504 93.69088 53.3504 60.16 0 108.92288-48.75776 108.92288-108.91264-0.00512-60.15488-48.77312-108.92288-108.92288-108.92288z" p-id="2022"></path></svg>', $e = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169375313" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="1775" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M639 463.30000001L639 285.1c0-36.90000001-26.4-68.5-61.3-68.5l-150.2 0c-1.5 0-3 0.1-4.5 0.3-10.2-38.7-45.5-67.3-87.5-67.3-50 0-90.5 40.5-90.5 90.5s40.5 90.5 90.5 90.5c42 0 77.3-28.6 87.5-67.39999999 1.4 0.3 2.9 0.4 4.5 0.39999999L577.7 263.6c6.8 0 14.3 8.9 14.3 21.49999999l0 427.00000001c0 12.7-7.40000001 21.5-14.30000001 21.5l-150.19999999 0c-1.5 0-3 0.2-4.5 0.4-10.2-38.8-45.5-67.3-87.5-67.3-50 0-90.5 40.5-90.5 90.4 0 49.9 40.5 90.6 90.5 90.59999999 42 0 77.3-28.6 87.5-67.39999999 1.4 0.2 2.9 0.4 4.49999999 0.4L577.7 780.7c34.80000001 0 61.3-31.6 61.3-68.50000001L639 510.3l79.1 0c10.4 38.5 45.49999999 67 87.4 67 50 0 90.5-40.5 90.5-90.5s-40.5-90.5-90.5-90.5c-41.79999999 0-77.00000001 28.4-87.4 67L639 463.30000001z" fill="currentColor" p-id="1776"></path></svg>', He = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169667709" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3037" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M385 560.69999999L385 738.9c0 36.90000001 26.4 68.5 61.3 68.5l150.2 0c1.5 0 3-0.1 4.5-0.3 10.2 38.7 45.5 67.3 87.5 67.3 50 0 90.5-40.5 90.5-90.5s-40.5-90.5-90.5-90.5c-42 0-77.3 28.6-87.5 67.39999999-1.4-0.3-2.9-0.4-4.5-0.39999999L446.3 760.4c-6.8 0-14.3-8.9-14.3-21.49999999l0-427.00000001c0-12.7 7.40000001-21.5 14.30000001-21.5l150.19999999 0c1.5 0 3-0.2 4.5-0.4 10.2 38.8 45.5 67.3 87.5 67.3 50 0 90.5-40.5 90.5-90.4 0-49.9-40.5-90.6-90.5-90.59999999-42 0-77.3 28.6-87.5 67.39999999-1.4-0.2-2.9-0.4-4.49999999-0.4L446.3 243.3c-34.80000001 0-61.3 31.6-61.3 68.50000001L385 513.7l-79.1 0c-10.4-38.5-45.49999999-67-87.4-67-50 0-90.5 40.5-90.5 90.5s40.5 90.5 90.5 90.5c41.79999999 0 77.00000001-28.4 87.4-67L385 560.69999999z" fill="currentColor" p-id="3038"></path></svg>', Ie = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169402629" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2170" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M639.328 416c8.032 0 16.096-3.008 22.304-9.056l202.624-197.184-0.8 143.808c-0.096 17.696 14.144 32.096 31.808 32.192 0.064 0 0.128 0 0.192 0 17.6 0 31.904-14.208 32-31.808l1.248-222.208c0-0.672-0.352-1.248-0.384-1.92 0.032-0.512 0.288-0.896 0.288-1.408 0.032-17.664-14.272-32-31.968-32.032L671.552 96l-0.032 0c-17.664 0-31.968 14.304-32 31.968C639.488 145.632 653.824 160 671.488 160l151.872 0.224-206.368 200.8c-12.672 12.32-12.928 32.608-0.64 45.248C622.656 412.736 630.976 416 639.328 416z" p-id="2171"></path><path d="M896.032 639.552 896.032 639.552c-17.696 0-32 14.304-32.032 31.968l-0.224 151.872-200.832-206.4c-12.32-12.64-32.576-12.96-45.248-0.64-12.672 12.352-12.928 32.608-0.64 45.248l197.184 202.624-143.808-0.8c-0.064 0-0.128 0-0.192 0-17.6 0-31.904 14.208-32 31.808-0.096 17.696 14.144 32.096 31.808 32.192l222.24 1.248c0.064 0 0.128 0 0.192 0 0.64 0 1.12-0.32 1.76-0.352 0.512 0.032 0.896 0.288 1.408 0.288l0.032 0c17.664 0 31.968-14.304 32-31.968L928 671.584C928.032 653.952 913.728 639.584 896.032 639.552z" p-id="2172"></path><path d="M209.76 159.744l143.808 0.8c0.064 0 0.128 0 0.192 0 17.6 0 31.904-14.208 32-31.808 0.096-17.696-14.144-32.096-31.808-32.192L131.68 95.328c-0.064 0-0.128 0-0.192 0-0.672 0-1.248 0.352-1.888 0.384-0.448 0-0.8-0.256-1.248-0.256 0 0-0.032 0-0.032 0-17.664 0-31.968 14.304-32 31.968L96 352.448c-0.032 17.664 14.272 32 31.968 32.032 0 0 0.032 0 0.032 0 17.664 0 31.968-14.304 32-31.968l0.224-151.936 200.832 206.4c6.272 6.464 14.624 9.696 22.944 9.696 8.032 0 16.096-3.008 22.304-9.056 12.672-12.32 12.96-32.608 0.64-45.248L209.76 159.744z" p-id="2173"></path><path d="M362.368 617.056l-202.624 197.184 0.8-143.808c0.096-17.696-14.144-32.096-31.808-32.192-0.064 0-0.128 0-0.192 0-17.6 0-31.904 14.208-32 31.808l-1.248 222.24c0 0.704 0.352 1.312 0.384 2.016 0 0.448-0.256 0.832-0.256 1.312-0.032 17.664 14.272 32 31.968 32.032L352.448 928c0 0 0.032 0 0.032 0 17.664 0 31.968-14.304 32-31.968s-14.272-32-31.968-32.032l-151.936-0.224 206.4-200.832c12.672-12.352 12.96-32.608 0.64-45.248S375.008 604.704 362.368 617.056z" p-id="2174"></path></svg>', Oe = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169573443" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2883" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M514.133333 488.533333m-106.666666 0a106.666667 106.666667 0 1 0 213.333333 0 106.666667 106.666667 0 1 0-213.333333 0Z" fill="currentColor" p-id="2884"></path><path d="M512 64C264.533333 64 64 264.533333 64 512c0 236.8 183.466667 428.8 416 445.866667v-134.4c-53.333333-59.733333-200.533333-230.4-200.533333-334.933334 0-130.133333 104.533333-234.666667 234.666666-234.666666s234.666667 104.533333 234.666667 234.666666c0 61.866667-49.066667 153.6-145.066667 270.933334l-59.733333 68.266666V960C776.533333 942.933333 960 748.8 960 512c0-247.466667-200.533333-448-448-448z" fill="currentColor" p-id="2885"></path></svg>', Ye = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169419447" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2480" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M863.328 482.56l-317.344-1.12L545.984 162.816c0-17.664-14.336-32-32-32s-32 14.336-32 32l0 318.4L159.616 480.064c-0.032 0-0.064 0-0.096 0-17.632 0-31.936 14.24-32 31.904C127.424 529.632 141.728 544 159.392 544.064l322.592 1.152 0 319.168c0 17.696 14.336 32 32 32s32-14.304 32-32l0-318.944 317.088 1.12c0.064 0 0.096 0 0.128 0 17.632 0 31.936-14.24 32-31.904C895.264 496.992 880.96 482.624 863.328 482.56z" p-id="2481"></path></svg>', Be = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1750169426515" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2730" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M863.744 544 163.424 544c-17.664 0-32-14.336-32-32s14.336-32 32-32l700.32 0c17.696 0 32 14.336 32 32S881.44 544 863.744 544z" p-id="2731"></path></svg>', We = {
|
|
830
|
+
side: Ae,
|
|
831
|
+
left: $e,
|
|
832
|
+
right: He,
|
|
833
|
+
full: Ie,
|
|
834
|
+
living: Oe,
|
|
835
|
+
zoomin: Ye,
|
|
836
|
+
zoomout: Be
|
|
837
|
+
}, W = (t, e) => {
|
|
826
838
|
const n = document.createElement("span");
|
|
827
|
-
return n.id = t, n.innerHTML =
|
|
839
|
+
return n.id = t, n.innerHTML = We[e], n;
|
|
828
840
|
};
|
|
829
|
-
function
|
|
830
|
-
const e = document.createElement("div"), n =
|
|
841
|
+
function Re(t) {
|
|
842
|
+
const e = document.createElement("div"), n = W("fullscreen", "full"), o = W("toCenter", "living"), s = W("zoomout", "zoomout"), i = W("zoomin", "zoomin");
|
|
831
843
|
e.appendChild(n), e.appendChild(o), e.appendChild(s), e.appendChild(i), e.className = "mind-elixir-toolbar rb";
|
|
832
844
|
let r = null;
|
|
833
845
|
const c = () => {
|
|
834
|
-
const
|
|
846
|
+
const a = t.container.getBoundingClientRect(), h = at(t.map.style.transform), f = a.width / 2, p = a.height / 2, m = (f - h.x) / t.scaleVal, y = (p - h.y) / t.scaleVal;
|
|
835
847
|
r = {
|
|
836
|
-
containerRect:
|
|
848
|
+
containerRect: a,
|
|
837
849
|
currentTransform: h,
|
|
838
|
-
mapCenterX:
|
|
839
|
-
mapCenterY:
|
|
850
|
+
mapCenterX: m,
|
|
851
|
+
mapCenterY: y
|
|
840
852
|
};
|
|
841
|
-
},
|
|
853
|
+
}, d = () => {
|
|
842
854
|
if (r) {
|
|
843
|
-
const
|
|
844
|
-
t.move(
|
|
855
|
+
const a = t.container.getBoundingClientRect(), h = a.width / 2, f = a.height / 2, p = h - r.mapCenterX * t.scaleVal, m = f - r.mapCenterY * t.scaleVal, y = p - r.currentTransform.x, u = m - r.currentTransform.y;
|
|
856
|
+
t.move(y, u);
|
|
845
857
|
}
|
|
846
858
|
};
|
|
847
|
-
return t.el.addEventListener("fullscreenchange",
|
|
859
|
+
return t.el.addEventListener("fullscreenchange", d), n.onclick = () => {
|
|
848
860
|
c(), document.fullscreenElement !== t.el ? t.el.requestFullscreen() : document.exitFullscreen();
|
|
849
861
|
}, o.onclick = () => {
|
|
850
862
|
t.toCenter();
|
|
@@ -854,8 +866,8 @@ function Ie(t) {
|
|
|
854
866
|
t.scale(t.scaleVal + t.scaleSensitivity);
|
|
855
867
|
}, e;
|
|
856
868
|
}
|
|
857
|
-
function
|
|
858
|
-
const e = document.createElement("div"), n =
|
|
869
|
+
function Xe(t) {
|
|
870
|
+
const e = document.createElement("div"), n = W("tbltl", "left"), o = W("tbltr", "right"), s = W("tblts", "side");
|
|
859
871
|
return e.appendChild(n), e.appendChild(o), e.appendChild(s), e.className = "mind-elixir-toolbar lt", n.onclick = () => {
|
|
860
872
|
t.initLeft();
|
|
861
873
|
}, o.onclick = () => {
|
|
@@ -864,10 +876,10 @@ function Oe(t) {
|
|
|
864
876
|
t.initSide();
|
|
865
877
|
}, e;
|
|
866
878
|
}
|
|
867
|
-
function
|
|
868
|
-
t.container.append(
|
|
879
|
+
function Ge(t) {
|
|
880
|
+
t.container.append(Re(t)), t.container.append(Xe(t));
|
|
869
881
|
}
|
|
870
|
-
const
|
|
882
|
+
const Ve = function(t, e = !0) {
|
|
871
883
|
this.theme = t;
|
|
872
884
|
const o = {
|
|
873
885
|
...(t.type === "dark" ? ct : rt).cssVar,
|
|
@@ -878,7 +890,7 @@ const Be = function(t, e = !0) {
|
|
|
878
890
|
this.container.style.setProperty(r, o[r]);
|
|
879
891
|
}
|
|
880
892
|
e && this.refresh();
|
|
881
|
-
},
|
|
893
|
+
}, ze = function(t) {
|
|
882
894
|
return {
|
|
883
895
|
dom: t,
|
|
884
896
|
moved: !1,
|
|
@@ -901,7 +913,7 @@ const Be = function(t, e = !0) {
|
|
|
901
913
|
},
|
|
902
914
|
cb: null,
|
|
903
915
|
init(e, n) {
|
|
904
|
-
this.cb = n, this.handleClear = this.handleClear.bind(this), this.handlePointerMove = this.handlePointerMove.bind(this), this.handlePointerDown = this.handlePointerDown.bind(this), this.destroy =
|
|
916
|
+
this.cb = n, this.handleClear = this.handleClear.bind(this), this.handlePointerMove = this.handlePointerMove.bind(this), this.handlePointerDown = this.handlePointerDown.bind(this), this.destroy = xt([
|
|
905
917
|
{ dom: e, evt: "pointermove", func: this.handlePointerMove },
|
|
906
918
|
{ dom: e, evt: "pointerleave", func: this.handleClear },
|
|
907
919
|
{ dom: e, evt: "pointerup", func: this.handleClear },
|
|
@@ -913,67 +925,67 @@ const Be = function(t, e = !0) {
|
|
|
913
925
|
this.moved = !1, this.pointerdown = !1;
|
|
914
926
|
}
|
|
915
927
|
};
|
|
916
|
-
},
|
|
917
|
-
create:
|
|
918
|
-
},
|
|
919
|
-
function
|
|
928
|
+
}, yt = {
|
|
929
|
+
create: ze
|
|
930
|
+
}, Fe = "#4dc4ff";
|
|
931
|
+
function Pt(t, e, n, o, s, i, r, c) {
|
|
920
932
|
return {
|
|
921
933
|
x: t / 8 + n * 3 / 8 + s * 3 / 8 + r / 8,
|
|
922
934
|
y: e / 8 + o * 3 / 8 + i * 3 / 8 + c / 8
|
|
923
935
|
};
|
|
924
936
|
}
|
|
925
|
-
function
|
|
926
|
-
t && (t.dataset.x = e.toString(), t.dataset.y = n.toString(),
|
|
937
|
+
function _e(t, e, n) {
|
|
938
|
+
t && (t.dataset.x = e.toString(), t.dataset.y = n.toString(), et(t));
|
|
927
939
|
}
|
|
928
940
|
function j(t, e, n, o, s) {
|
|
929
|
-
|
|
941
|
+
M(t, {
|
|
930
942
|
x1: e + "",
|
|
931
943
|
y1: n + "",
|
|
932
944
|
x2: o + "",
|
|
933
945
|
y2: s + ""
|
|
934
946
|
});
|
|
935
947
|
}
|
|
936
|
-
function wt(t, e, n, o, s, i, r, c,
|
|
937
|
-
const h = `M ${e} ${n} C ${o} ${s} ${i} ${r} ${c} ${
|
|
938
|
-
if (t.line.setAttribute("d", h),
|
|
939
|
-
const
|
|
940
|
-
|
|
948
|
+
function wt(t, e, n, o, s, i, r, c, d, a) {
|
|
949
|
+
const h = `M ${e} ${n} C ${o} ${s} ${i} ${r} ${c} ${d}`;
|
|
950
|
+
if (t.line.setAttribute("d", h), a.style) {
|
|
951
|
+
const u = a.style;
|
|
952
|
+
u.stroke && t.line.setAttribute("stroke", u.stroke), u.strokeWidth && t.line.setAttribute("stroke-width", String(u.strokeWidth)), u.strokeDasharray && t.line.setAttribute("stroke-dasharray", u.strokeDasharray), u.strokeLinecap && t.line.setAttribute("stroke-linecap", u.strokeLinecap), u.opacity !== void 0 && t.line.setAttribute("opacity", String(u.opacity));
|
|
941
953
|
}
|
|
942
954
|
const f = t.querySelectorAll('path[stroke="transparent"]');
|
|
943
955
|
f.length > 0 && f[0].setAttribute("d", h);
|
|
944
|
-
const
|
|
945
|
-
if (
|
|
946
|
-
const
|
|
947
|
-
if (t.arrow1.setAttribute("d",
|
|
948
|
-
const g =
|
|
956
|
+
const p = Z(i, r, c, d);
|
|
957
|
+
if (p) {
|
|
958
|
+
const u = `M ${p.x1} ${p.y1} L ${c} ${d} L ${p.x2} ${p.y2}`;
|
|
959
|
+
if (t.arrow1.setAttribute("d", u), f.length > 1 && f[1].setAttribute("d", u), a.style) {
|
|
960
|
+
const g = a.style;
|
|
949
961
|
g.stroke && t.arrow1.setAttribute("stroke", g.stroke), g.strokeWidth && t.arrow1.setAttribute("stroke-width", String(g.strokeWidth)), g.strokeLinecap && t.arrow1.setAttribute("stroke-linecap", g.strokeLinecap), g.opacity !== void 0 && t.arrow1.setAttribute("opacity", String(g.opacity));
|
|
950
962
|
}
|
|
951
963
|
}
|
|
952
|
-
if (
|
|
953
|
-
const
|
|
954
|
-
if (
|
|
955
|
-
const g = `M ${
|
|
956
|
-
if (t.arrow2.setAttribute("d", g), f.length > 2 && f[2].setAttribute("d", g),
|
|
957
|
-
const b =
|
|
964
|
+
if (a.bidirectional) {
|
|
965
|
+
const u = Z(o, s, e, n);
|
|
966
|
+
if (u) {
|
|
967
|
+
const g = `M ${u.x1} ${u.y1} L ${e} ${n} L ${u.x2} ${u.y2}`;
|
|
968
|
+
if (t.arrow2.setAttribute("d", g), f.length > 2 && f[2].setAttribute("d", g), a.style) {
|
|
969
|
+
const b = a.style;
|
|
958
970
|
b.stroke && t.arrow2.setAttribute("stroke", b.stroke), b.strokeWidth && t.arrow2.setAttribute("stroke-width", String(b.strokeWidth)), b.strokeLinecap && t.arrow2.setAttribute("stroke-linecap", b.strokeLinecap), b.opacity !== void 0 && t.arrow2.setAttribute("opacity", String(b.opacity));
|
|
959
971
|
}
|
|
960
972
|
}
|
|
961
973
|
}
|
|
962
|
-
const { x:
|
|
963
|
-
if (t.labelEl &&
|
|
964
|
-
const
|
|
965
|
-
|
|
974
|
+
const { x: m, y } = Pt(e, n, o, s, i, r, c, d);
|
|
975
|
+
if (t.labelEl && _e(t.labelEl, m, y), a.style?.labelColor) {
|
|
976
|
+
const u = t.labelEl;
|
|
977
|
+
u && (u.style.color = a.style.labelColor);
|
|
966
978
|
}
|
|
967
|
-
|
|
979
|
+
en(t);
|
|
968
980
|
}
|
|
969
981
|
function Q(t, e, n) {
|
|
970
|
-
const { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = e.offsetWidth, r = e.offsetHeight, c = o + i / 2,
|
|
982
|
+
const { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = e.offsetWidth, r = e.offsetHeight, c = o + i / 2, d = s + r / 2, a = c + n.x, h = d + n.y;
|
|
971
983
|
return {
|
|
972
984
|
w: i,
|
|
973
985
|
h: r,
|
|
974
986
|
cx: c,
|
|
975
|
-
cy:
|
|
976
|
-
ctrlX:
|
|
987
|
+
cy: d,
|
|
988
|
+
ctrlX: a,
|
|
977
989
|
ctrlY: h
|
|
978
990
|
};
|
|
979
991
|
}
|
|
@@ -985,51 +997,54 @@ function X(t) {
|
|
|
985
997
|
y: n
|
|
986
998
|
};
|
|
987
999
|
}
|
|
988
|
-
const
|
|
989
|
-
const o = H(t.nodes, e), s = H(t.nodes, n), i = o.offsetLeft + e.offsetWidth / 2, r = o.offsetTop + e.offsetHeight / 2, c = s.offsetLeft + n.offsetWidth / 2,
|
|
990
|
-
let
|
|
1000
|
+
const qe = function(t, e, n) {
|
|
1001
|
+
const o = H(t.nodes, e), s = H(t.nodes, n), i = o.offsetLeft + e.offsetWidth / 2, r = o.offsetTop + e.offsetHeight / 2, c = s.offsetLeft + n.offsetWidth / 2, d = s.offsetTop + n.offsetHeight / 2, a = c - i, h = d - r, f = Math.sqrt(a * a + h * h), p = Math.max(50, Math.min(200, f * 0.3)), m = Math.abs(a), y = Math.abs(h);
|
|
1002
|
+
let u, g;
|
|
991
1003
|
if (f < 150) {
|
|
992
|
-
const
|
|
993
|
-
|
|
994
|
-
} else if (y > m * 1.5) {
|
|
995
|
-
const w = l > 0 ? e.offsetWidth / 2 : -e.offsetWidth / 2, x = l > 0 ? -n.offsetWidth / 2 : n.offsetWidth / 2;
|
|
996
|
-
p = { x: w + (l > 0 ? u : -u), y: 0 }, g = { x: x + (l > 0 ? -u : u), y: 0 };
|
|
1004
|
+
const v = e.closest("me-main").className === "lhs" ? -1 : 1;
|
|
1005
|
+
u = { x: 200 * v, y: 0 }, g = { x: 200 * v, y: 0 };
|
|
997
1006
|
} else if (m > y * 1.5) {
|
|
998
|
-
const
|
|
999
|
-
|
|
1007
|
+
const v = a > 0 ? e.offsetWidth / 2 : -e.offsetWidth / 2, x = a > 0 ? -n.offsetWidth / 2 : n.offsetWidth / 2;
|
|
1008
|
+
u = { x: v + (a > 0 ? p : -p), y: 0 }, g = { x: x + (a > 0 ? -p : p), y: 0 };
|
|
1009
|
+
} else if (y > m * 1.5) {
|
|
1010
|
+
const v = h > 0 ? e.offsetHeight / 2 : -e.offsetHeight / 2, x = h > 0 ? -n.offsetHeight / 2 : n.offsetHeight / 2;
|
|
1011
|
+
u = { x: 0, y: v + (h > 0 ? p : -p) }, g = { x: 0, y: x + (h > 0 ? -p : p) };
|
|
1000
1012
|
} else {
|
|
1001
|
-
const
|
|
1002
|
-
|
|
1013
|
+
const v = Math.atan2(h, a), x = e.offsetWidth / 2 * Math.cos(v), S = e.offsetHeight / 2 * Math.sin(v), T = -(n.offsetWidth / 2) * Math.cos(v), L = -(n.offsetHeight / 2) * Math.sin(v), C = p * 0.7 * (a > 0 ? 1 : -1), P = p * 0.7 * (h > 0 ? 1 : -1);
|
|
1014
|
+
u = { x: x + C, y: S + P }, g = { x: T - C, y: L - P };
|
|
1003
1015
|
}
|
|
1004
|
-
return {
|
|
1016
|
+
return {
|
|
1017
|
+
delta1: { x: Math.round(u.x), y: Math.round(u.y) },
|
|
1018
|
+
delta2: { x: Math.round(g.x), y: Math.round(g.y) }
|
|
1019
|
+
};
|
|
1005
1020
|
}, ht = function(t, e, n, o, s) {
|
|
1006
1021
|
if (!e || !n)
|
|
1007
1022
|
return;
|
|
1008
1023
|
if (!o.delta1 || !o.delta2) {
|
|
1009
|
-
const
|
|
1010
|
-
o.delta1 =
|
|
1024
|
+
const k = qe(t, e, n);
|
|
1025
|
+
o.delta1 = k.delta1, o.delta2 = k.delta2;
|
|
1011
1026
|
}
|
|
1012
|
-
const i = Q(t, e, o.delta1), r = Q(t, n, o.delta2), { x: c, y:
|
|
1013
|
-
if (!
|
|
1014
|
-
const g = `M ${
|
|
1027
|
+
const i = Q(t, e, o.delta1), r = Q(t, n, o.delta2), { x: c, y: d } = X(i), { ctrlX: a, ctrlY: h } = i, { ctrlX: f, ctrlY: p } = r, { x: m, y } = X(r), u = Z(f, p, m, y);
|
|
1028
|
+
if (!u) return;
|
|
1029
|
+
const g = `M ${u.x1} ${u.y1} L ${m} ${y} L ${u.x2} ${u.y2}`;
|
|
1015
1030
|
let b = "";
|
|
1016
1031
|
if (o.bidirectional) {
|
|
1017
|
-
const
|
|
1018
|
-
if (!
|
|
1019
|
-
b = `M ${
|
|
1032
|
+
const k = Z(a, h, c, d);
|
|
1033
|
+
if (!k) return;
|
|
1034
|
+
b = `M ${k.x1} ${k.y1} L ${c} ${d} L ${k.x2} ${k.y2}`;
|
|
1020
1035
|
}
|
|
1021
|
-
const
|
|
1022
|
-
|
|
1023
|
-
const C = t.markdown ? t.markdown(o.label, o) : o.label,
|
|
1036
|
+
const v = Ne(`M ${c} ${d} C ${a} ${h} ${f} ${p} ${m} ${y}`, g, b, o.style), { x, y: S } = Pt(c, d, a, h, f, p, m, y), T = o.style?.labelColor || "rgb(235, 95, 82)", L = "arrow-" + o.id;
|
|
1037
|
+
v.id = L;
|
|
1038
|
+
const C = t.markdown ? t.markdown(o.label, o) : o.label, P = it(C, x, S, {
|
|
1024
1039
|
anchor: "middle",
|
|
1025
1040
|
color: T,
|
|
1026
1041
|
dataType: "arrow",
|
|
1027
1042
|
svgId: L
|
|
1028
1043
|
});
|
|
1029
|
-
|
|
1030
|
-
},
|
|
1044
|
+
v.labelEl = P, v.arrowObj = o, v.dataset.linkid = o.id, t.labelContainer.appendChild(P), t.linkSvgGroup.appendChild(v), et(P), s || (t.arrows.push(o), t.currentArrow = v, At(t, o, i, r));
|
|
1045
|
+
}, je = function(t, e, n = {}) {
|
|
1031
1046
|
const o = {
|
|
1032
|
-
id:
|
|
1047
|
+
id: _(),
|
|
1033
1048
|
label: "Custom Link",
|
|
1034
1049
|
from: t.nodeObj.id,
|
|
1035
1050
|
to: e.nodeObj.id,
|
|
@@ -1039,17 +1054,17 @@ const Ve = function(t, e, n) {
|
|
|
1039
1054
|
name: "createArrow",
|
|
1040
1055
|
obj: o
|
|
1041
1056
|
});
|
|
1042
|
-
},
|
|
1043
|
-
|
|
1044
|
-
const e = { ...t, id:
|
|
1057
|
+
}, Ue = function(t) {
|
|
1058
|
+
nt(this);
|
|
1059
|
+
const e = { ...t, id: _() };
|
|
1045
1060
|
ht(this, this.findEle(e.from), this.findEle(e.to), e), this.bus.fire("operation", {
|
|
1046
1061
|
name: "createArrow",
|
|
1047
1062
|
obj: e
|
|
1048
1063
|
});
|
|
1049
|
-
},
|
|
1064
|
+
}, Ke = function(t) {
|
|
1050
1065
|
let e;
|
|
1051
1066
|
if (t ? e = t : e = this.currentArrow, !e) return;
|
|
1052
|
-
|
|
1067
|
+
nt(this);
|
|
1053
1068
|
const n = e.arrowObj.id;
|
|
1054
1069
|
this.arrows = this.arrows.filter((o) => o.id !== n), e.labelEl?.remove(), e.remove(), this.bus.fire("operation", {
|
|
1055
1070
|
name: "removeArrow",
|
|
@@ -1057,15 +1072,15 @@ const Ve = function(t, e, n) {
|
|
|
1057
1072
|
id: n
|
|
1058
1073
|
}
|
|
1059
1074
|
});
|
|
1060
|
-
},
|
|
1075
|
+
}, Je = function(t) {
|
|
1061
1076
|
this.currentArrow = t;
|
|
1062
1077
|
const e = t.arrowObj, n = this.findEle(e.from), o = this.findEle(e.to), s = Q(this, n, e.delta1), i = Q(this, o, e.delta2);
|
|
1063
|
-
|
|
1064
|
-
},
|
|
1065
|
-
|
|
1078
|
+
At(this, e, s, i);
|
|
1079
|
+
}, Ze = function() {
|
|
1080
|
+
nt(this), this.currentArrow = null;
|
|
1066
1081
|
}, st = function(t, e) {
|
|
1067
1082
|
const n = document.createElementNS(I, "path");
|
|
1068
|
-
return
|
|
1083
|
+
return M(n, {
|
|
1069
1084
|
d: t,
|
|
1070
1085
|
stroke: e,
|
|
1071
1086
|
fill: "none",
|
|
@@ -1073,7 +1088,7 @@ const Ve = function(t, e, n) {
|
|
|
1073
1088
|
"stroke-linecap": "round",
|
|
1074
1089
|
"stroke-linejoin": "round"
|
|
1075
1090
|
}), n;
|
|
1076
|
-
},
|
|
1091
|
+
}, Qe = function(t, e) {
|
|
1077
1092
|
const n = document.createElementNS(I, "g");
|
|
1078
1093
|
n.setAttribute("class", "arrow-highlight"), n.setAttribute("opacity", "0.45");
|
|
1079
1094
|
const o = st(t.line.getAttribute("d"), e);
|
|
@@ -1084,32 +1099,32 @@ const Ve = function(t, e, n) {
|
|
|
1084
1099
|
n.appendChild(i);
|
|
1085
1100
|
}
|
|
1086
1101
|
t.insertBefore(n, t.firstChild);
|
|
1087
|
-
},
|
|
1102
|
+
}, tn = function(t) {
|
|
1088
1103
|
const e = t.querySelector(".arrow-highlight");
|
|
1089
1104
|
e && e.remove();
|
|
1090
|
-
},
|
|
1105
|
+
}, en = function(t) {
|
|
1091
1106
|
const e = t.querySelector(".arrow-highlight");
|
|
1092
1107
|
if (!e) return;
|
|
1093
1108
|
const n = e.querySelectorAll("path");
|
|
1094
1109
|
n.length >= 1 && n[0].setAttribute("d", t.line.getAttribute("d")), n.length >= 2 && n[1].setAttribute("d", t.arrow1.getAttribute("d")), n.length >= 3 && t.arrow2.getAttribute("d") && n[2].setAttribute("d", t.arrow2.getAttribute("d"));
|
|
1095
|
-
},
|
|
1096
|
-
t.helper1?.destroy(), t.helper2?.destroy(), t.linkController.style.display = "none", t.P2.style.display = "none", t.P3.style.display = "none", t.currentArrow &&
|
|
1097
|
-
},
|
|
1098
|
-
const { linkController: s, P2: i, P3: r, line1: c, line2:
|
|
1110
|
+
}, nt = function(t) {
|
|
1111
|
+
t.helper1?.destroy(), t.helper2?.destroy(), t.linkController.style.display = "none", t.P2.style.display = "none", t.P3.style.display = "none", t.currentArrow && tn(t.currentArrow);
|
|
1112
|
+
}, At = function(t, e, n, o) {
|
|
1113
|
+
const { linkController: s, P2: i, P3: r, line1: c, line2: d, nodes: a, map: h, currentArrow: f, bus: p } = t;
|
|
1099
1114
|
if (!f) return;
|
|
1100
|
-
s.style.display = "initial", i.style.display = "initial", r.style.display = "initial",
|
|
1101
|
-
let { x:
|
|
1102
|
-
i.style.cssText = `top:${g}px;left:${
|
|
1103
|
-
|
|
1104
|
-
const C = X({ ...n, ctrlX:
|
|
1105
|
-
|
|
1115
|
+
s.style.display = "initial", i.style.display = "initial", r.style.display = "initial", a.appendChild(s), a.appendChild(i), a.appendChild(r), Qe(f, Fe);
|
|
1116
|
+
let { x: m, y } = X(n), { ctrlX: u, ctrlY: g } = n, { ctrlX: b, ctrlY: v } = o, { x, y: S } = X(o);
|
|
1117
|
+
i.style.cssText = `top:${g}px;left:${u}px;`, r.style.cssText = `top:${v}px;left:${b}px;`, j(c, m, y, u, g), j(d, b, v, x, S), t.helper1 = yt.create(i), t.helper2 = yt.create(r), t.helper1.init(h, (T, L) => {
|
|
1118
|
+
u = u + T / t.scaleVal, g = g + L / t.scaleVal;
|
|
1119
|
+
const C = X({ ...n, ctrlX: u, ctrlY: g });
|
|
1120
|
+
m = C.x, y = C.y, i.style.top = g + "px", i.style.left = u + "px", wt(f, m, y, u, g, b, v, x, S, e), j(c, m, y, u, g), e.delta1.x = Math.round(u - n.cx), e.delta1.y = Math.round(g - n.cy), p.fire("updateArrowDelta", e);
|
|
1106
1121
|
}), t.helper2.init(h, (T, L) => {
|
|
1107
|
-
b = b + T / t.scaleVal,
|
|
1108
|
-
const C = X({ ...o, ctrlX: b, ctrlY:
|
|
1109
|
-
x = C.x, S = C.y, r.style.top =
|
|
1122
|
+
b = b + T / t.scaleVal, v = v + L / t.scaleVal;
|
|
1123
|
+
const C = X({ ...o, ctrlX: b, ctrlY: v });
|
|
1124
|
+
x = C.x, S = C.y, r.style.top = v + "px", r.style.left = b + "px", wt(f, m, y, u, g, b, v, x, S, e), j(d, b, v, x, S), e.delta2.x = Math.round(b - o.cx), e.delta2.y = Math.round(v - o.cy), p.fire("updateArrowDelta", e);
|
|
1110
1125
|
});
|
|
1111
1126
|
};
|
|
1112
|
-
function
|
|
1127
|
+
function nn() {
|
|
1113
1128
|
this.linkSvgGroup.innerHTML = "", this.labelContainer.querySelectorAll('.svg-label[data-type="arrow"]').forEach((e) => e.remove());
|
|
1114
1129
|
for (let e = 0; e < this.arrows.length; e++) {
|
|
1115
1130
|
const n = this.arrows[e];
|
|
@@ -1120,181 +1135,181 @@ function Je() {
|
|
|
1120
1135
|
}
|
|
1121
1136
|
this.nodes.appendChild(this.linkSvgGroup);
|
|
1122
1137
|
}
|
|
1123
|
-
function
|
|
1124
|
-
|
|
1138
|
+
function on(t) {
|
|
1139
|
+
nt(this), t && t.labelEl && kt(this, t.labelEl, t.arrowObj);
|
|
1125
1140
|
}
|
|
1126
|
-
function
|
|
1127
|
-
this.arrows = this.arrows.filter((t) =>
|
|
1141
|
+
function sn() {
|
|
1142
|
+
this.arrows = this.arrows.filter((t) => J(t.from, this.nodeData) && J(t.to, this.nodeData));
|
|
1128
1143
|
}
|
|
1129
|
-
const
|
|
1144
|
+
const rn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1130
1145
|
__proto__: null,
|
|
1131
|
-
createArrow:
|
|
1132
|
-
createArrowFrom:
|
|
1133
|
-
editArrowLabel:
|
|
1134
|
-
removeArrow:
|
|
1135
|
-
renderArrow:
|
|
1136
|
-
selectArrow:
|
|
1137
|
-
tidyArrow:
|
|
1138
|
-
unselectArrow:
|
|
1139
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1146
|
+
createArrow: je,
|
|
1147
|
+
createArrowFrom: Ue,
|
|
1148
|
+
editArrowLabel: on,
|
|
1149
|
+
removeArrow: Ke,
|
|
1150
|
+
renderArrow: nn,
|
|
1151
|
+
selectArrow: Je,
|
|
1152
|
+
tidyArrow: sn,
|
|
1153
|
+
unselectArrow: Ze
|
|
1154
|
+
}, Symbol.toStringTag, { value: "Module" })), cn = function(t) {
|
|
1140
1155
|
if (t.length === 0) throw new Error("No selected node.");
|
|
1141
1156
|
if (t.length === 1) {
|
|
1142
|
-
const
|
|
1143
|
-
if (!
|
|
1144
|
-
const h =
|
|
1157
|
+
const d = t[0].nodeObj, a = t[0].nodeObj.parent;
|
|
1158
|
+
if (!a) throw new Error("Can not select root node.");
|
|
1159
|
+
const h = a.children.findIndex((f) => d === f);
|
|
1145
1160
|
return {
|
|
1146
|
-
parent:
|
|
1161
|
+
parent: a.id,
|
|
1147
1162
|
start: h,
|
|
1148
1163
|
end: h
|
|
1149
1164
|
};
|
|
1150
1165
|
}
|
|
1151
1166
|
let e = 0;
|
|
1152
|
-
const n = t.map((
|
|
1153
|
-
let
|
|
1167
|
+
const n = t.map((d) => {
|
|
1168
|
+
let a = d.nodeObj;
|
|
1154
1169
|
const h = [];
|
|
1155
|
-
for (;
|
|
1156
|
-
const f =
|
|
1157
|
-
|
|
1170
|
+
for (; a.parent; ) {
|
|
1171
|
+
const f = a.parent, m = f.children?.indexOf(a);
|
|
1172
|
+
a = f, h.unshift({ node: a, index: m });
|
|
1158
1173
|
}
|
|
1159
1174
|
return h.length > e && (e = h.length), h;
|
|
1160
1175
|
});
|
|
1161
1176
|
let o = 0;
|
|
1162
1177
|
t: for (; o < e; o++) {
|
|
1163
|
-
const
|
|
1164
|
-
for (let
|
|
1165
|
-
if (n[
|
|
1178
|
+
const d = n[0][o]?.node;
|
|
1179
|
+
for (let a = 1; a < n.length; a++)
|
|
1180
|
+
if (n[a][o]?.node !== d)
|
|
1166
1181
|
break t;
|
|
1167
1182
|
}
|
|
1168
1183
|
if (!o) throw new Error("Can not select root node.");
|
|
1169
|
-
const s = n.map((
|
|
1184
|
+
const s = n.map((d) => d[o - 1].index).sort(), i = s[0] || 0, r = s[s.length - 1] || 0, c = n[0][o - 1].node;
|
|
1170
1185
|
if (!c.parent) throw new Error("Please select nodes in the same main topic.");
|
|
1171
1186
|
return {
|
|
1172
1187
|
parent: c.id,
|
|
1173
1188
|
start: i,
|
|
1174
1189
|
end: r
|
|
1175
1190
|
};
|
|
1176
|
-
},
|
|
1191
|
+
}, ln = function(t) {
|
|
1177
1192
|
const e = document.createElementNS(I, "g");
|
|
1178
1193
|
return e.setAttribute("id", t), e;
|
|
1179
|
-
},
|
|
1194
|
+
}, vt = function(t, e) {
|
|
1180
1195
|
const n = document.createElementNS(I, "path");
|
|
1181
|
-
return
|
|
1196
|
+
return M(n, {
|
|
1182
1197
|
d: t,
|
|
1183
1198
|
stroke: e || "#666",
|
|
1184
1199
|
fill: "none",
|
|
1185
1200
|
"stroke-linecap": "round",
|
|
1186
1201
|
"stroke-width": "2"
|
|
1187
1202
|
}), n;
|
|
1188
|
-
},
|
|
1203
|
+
}, an = (t) => t.parentElement.parentElement, dn = function(t, { parent: e, start: n }) {
|
|
1189
1204
|
const o = t.findEle(e), s = o.nodeObj;
|
|
1190
1205
|
let i;
|
|
1191
1206
|
return s.parent ? i = o.closest("me-main").className : i = t.findEle(s.children[n].id).closest("me-main").className, i;
|
|
1192
1207
|
}, ft = function(t, e) {
|
|
1193
|
-
const { id: n, label: o, parent: s, start: i, end: r, style: c } = e, { nodes:
|
|
1194
|
-
let
|
|
1195
|
-
for (let
|
|
1196
|
-
const
|
|
1197
|
-
if (!
|
|
1208
|
+
const { id: n, label: o, parent: s, start: i, end: r, style: c } = e, { nodes: d, theme: a, summarySvg: h } = t, p = t.findEle(s).nodeObj, m = dn(t, e);
|
|
1209
|
+
let y = 1 / 0, u = 0, g = 0, b = 0;
|
|
1210
|
+
for (let l = i; l <= r; l++) {
|
|
1211
|
+
const w = p.children?.[l];
|
|
1212
|
+
if (!w)
|
|
1198
1213
|
return t.removeSummary(n), null;
|
|
1199
|
-
const E =
|
|
1200
|
-
|
|
1214
|
+
const E = an(t.findEle(w.id)), { offsetLeft: N, offsetTop: B } = H(d, E), D = i === r ? 10 : 20;
|
|
1215
|
+
l === i && (g = B + D), l === r && (b = B + E.offsetHeight - D), N < y && (y = N), E.offsetWidth + N > u && (u = E.offsetWidth + N);
|
|
1201
1216
|
}
|
|
1202
|
-
let
|
|
1203
|
-
const S =
|
|
1204
|
-
|
|
1205
|
-
const
|
|
1206
|
-
return
|
|
1207
|
-
},
|
|
1217
|
+
let v, x;
|
|
1218
|
+
const S = p.parent ? 10 : 0, T = g + S, L = b + S, C = (T + L) / 2, P = c?.stroke || a.cssVar["--color"], k = c?.labelColor || a.cssVar["--color"], Y = "s-" + n, A = t.markdown ? t.markdown(o, e) : o;
|
|
1219
|
+
m === G.LHS ? (v = vt(`M ${y + 10} ${T} c -5 0 -10 5 -10 10 L ${y} ${L - 10} c 0 5 5 10 10 10 M ${y} ${C} h -10`, P), x = it(A, y - 20, C, { anchor: "end", color: k, dataType: "summary", svgId: Y })) : (v = vt(`M ${u - 10} ${T} c 5 0 10 5 10 10 L ${u} ${L - 10} c 0 5 -5 10 -10 10 M ${u} ${C} h 10`, P), x = it(A, u + 20, C, { anchor: "start", color: k, dataType: "summary", svgId: Y }));
|
|
1220
|
+
const R = ln(Y);
|
|
1221
|
+
return R.appendChild(v), t.labelContainer.appendChild(x), et(x), R.summaryObj = e, R.labelEl = x, h.appendChild(R), R;
|
|
1222
|
+
}, hn = function(t = {}) {
|
|
1208
1223
|
if (!this.currentNodes) return;
|
|
1209
|
-
const { currentNodes: e, summaries: n, bus: o } = this, { parent: s, start: i, end: r } =
|
|
1210
|
-
n.push(c), this.editSummary(
|
|
1224
|
+
const { currentNodes: e, summaries: n, bus: o } = this, { parent: s, start: i, end: r } = cn(e), c = { id: _(), parent: s, start: i, end: r, label: "summary", style: t.style }, d = ft(this, c);
|
|
1225
|
+
n.push(c), this.editSummary(d), o.fire("operation", {
|
|
1211
1226
|
name: "createSummary",
|
|
1212
1227
|
obj: c
|
|
1213
1228
|
});
|
|
1214
|
-
},
|
|
1215
|
-
const e =
|
|
1229
|
+
}, fn = function(t) {
|
|
1230
|
+
const e = _(), n = { ...t, id: e };
|
|
1216
1231
|
ft(this, n), this.summaries.push(n), this.bus.fire("operation", {
|
|
1217
1232
|
name: "createSummary",
|
|
1218
1233
|
obj: n
|
|
1219
1234
|
});
|
|
1220
|
-
},
|
|
1235
|
+
}, un = function(t) {
|
|
1221
1236
|
const e = this.summaries.findIndex((n) => n.id === t);
|
|
1222
1237
|
e > -1 && (this.summaries.splice(e, 1), this.nodes.querySelector("#s-" + t)?.remove(), this.nodes.querySelector("#label-s-" + t)?.remove()), this.bus.fire("operation", {
|
|
1223
1238
|
name: "removeSummary",
|
|
1224
1239
|
obj: { id: t }
|
|
1225
1240
|
});
|
|
1226
|
-
},
|
|
1241
|
+
}, pn = function(t) {
|
|
1227
1242
|
const e = t.labelEl;
|
|
1228
1243
|
e && e.classList.add("selected"), this.currentSummary = t;
|
|
1229
|
-
},
|
|
1244
|
+
}, gn = function() {
|
|
1230
1245
|
this.currentSummary?.labelEl?.classList.remove("selected"), this.currentSummary = null;
|
|
1231
|
-
},
|
|
1246
|
+
}, mn = function() {
|
|
1232
1247
|
this.summarySvg.innerHTML = "", this.summaries.forEach((t) => {
|
|
1233
1248
|
try {
|
|
1234
1249
|
ft(this, t);
|
|
1235
1250
|
} catch {
|
|
1236
1251
|
}
|
|
1237
1252
|
}), this.nodes.insertAdjacentElement("beforeend", this.summarySvg);
|
|
1238
|
-
},
|
|
1239
|
-
t && t.labelEl &&
|
|
1240
|
-
},
|
|
1253
|
+
}, yn = function(t) {
|
|
1254
|
+
t && t.labelEl && kt(this, t.labelEl, t.summaryObj);
|
|
1255
|
+
}, wn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1241
1256
|
__proto__: null,
|
|
1242
|
-
createSummary:
|
|
1243
|
-
createSummaryFrom:
|
|
1244
|
-
editSummary:
|
|
1245
|
-
removeSummary:
|
|
1246
|
-
renderSummary:
|
|
1247
|
-
selectSummary:
|
|
1248
|
-
unselectSummary:
|
|
1249
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1250
|
-
function
|
|
1251
|
-
const n = document.createElementNS(
|
|
1252
|
-
return
|
|
1257
|
+
createSummary: hn,
|
|
1258
|
+
createSummaryFrom: fn,
|
|
1259
|
+
editSummary: yn,
|
|
1260
|
+
removeSummary: un,
|
|
1261
|
+
renderSummary: mn,
|
|
1262
|
+
selectSummary: pn,
|
|
1263
|
+
unselectSummary: gn
|
|
1264
|
+
}, Symbol.toStringTag, { value: "Module" })), $ = "http://www.w3.org/2000/svg";
|
|
1265
|
+
function vn(t, e) {
|
|
1266
|
+
const n = document.createElementNS($, "svg");
|
|
1267
|
+
return M(n, {
|
|
1253
1268
|
version: "1.1",
|
|
1254
|
-
xmlns:
|
|
1269
|
+
xmlns: $,
|
|
1255
1270
|
height: t,
|
|
1256
1271
|
width: e
|
|
1257
1272
|
}), n;
|
|
1258
1273
|
}
|
|
1259
|
-
function
|
|
1274
|
+
function bn(t, e) {
|
|
1260
1275
|
return (parseInt(t) - parseInt(e)) / 2;
|
|
1261
1276
|
}
|
|
1262
|
-
function
|
|
1263
|
-
const s = document.createElementNS(
|
|
1277
|
+
function xn(t, e, n, o) {
|
|
1278
|
+
const s = document.createElementNS($, "g");
|
|
1264
1279
|
let i = "";
|
|
1265
1280
|
return t.text ? i = t.text.textContent : i = t.childNodes[0].textContent, i.split(`
|
|
1266
|
-
`).forEach((c,
|
|
1267
|
-
const
|
|
1268
|
-
|
|
1281
|
+
`).forEach((c, d) => {
|
|
1282
|
+
const a = document.createElementNS($, "text");
|
|
1283
|
+
M(a, {
|
|
1269
1284
|
x: n + parseInt(e.paddingLeft) + "",
|
|
1270
|
-
y: o + parseInt(e.paddingTop) +
|
|
1285
|
+
y: o + parseInt(e.paddingTop) + bn(e.lineHeight, e.fontSize) * (d + 1) + parseFloat(e.fontSize) * (d + 1) + "",
|
|
1271
1286
|
"text-anchor": "start",
|
|
1272
1287
|
"font-family": e.fontFamily,
|
|
1273
1288
|
"font-size": `${e.fontSize}`,
|
|
1274
1289
|
"font-weight": `${e.fontWeight}`,
|
|
1275
1290
|
fill: `${e.color}`
|
|
1276
|
-
}),
|
|
1291
|
+
}), a.innerHTML = c, s.appendChild(a);
|
|
1277
1292
|
}), s;
|
|
1278
1293
|
}
|
|
1279
|
-
function
|
|
1294
|
+
function Cn(t, e, n, o) {
|
|
1280
1295
|
let s = "";
|
|
1281
1296
|
t.nodeObj?.dangerouslySetInnerHTML ? s = t.nodeObj.dangerouslySetInnerHTML : t.text ? s = t.text.textContent : s = t.childNodes[0].textContent;
|
|
1282
|
-
const i = document.createElementNS(
|
|
1283
|
-
|
|
1297
|
+
const i = document.createElementNS($, "foreignObject");
|
|
1298
|
+
M(i, {
|
|
1284
1299
|
x: n + parseInt(e.paddingLeft) + "",
|
|
1285
1300
|
y: o + parseInt(e.paddingTop) + "",
|
|
1286
1301
|
width: e.width,
|
|
1287
1302
|
height: e.height
|
|
1288
1303
|
});
|
|
1289
1304
|
const r = document.createElement("div");
|
|
1290
|
-
return
|
|
1305
|
+
return M(r, {
|
|
1291
1306
|
xmlns: "http://www.w3.org/1999/xhtml",
|
|
1292
1307
|
style: `font-family: ${e.fontFamily}; font-size: ${e.fontSize}; font-weight: ${e.fontWeight}; color: ${e.color}; white-space: pre-wrap;`
|
|
1293
1308
|
}), r.innerHTML = s, i.appendChild(r), i;
|
|
1294
1309
|
}
|
|
1295
|
-
function
|
|
1296
|
-
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS(
|
|
1297
|
-
return
|
|
1310
|
+
function En(t, e) {
|
|
1311
|
+
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS($, "rect");
|
|
1312
|
+
return M(i, {
|
|
1298
1313
|
x: o + "",
|
|
1299
1314
|
y: s + "",
|
|
1300
1315
|
rx: n.borderRadius,
|
|
@@ -1306,9 +1321,9 @@ function vn(t, e) {
|
|
|
1306
1321
|
"stroke-width": n.borderWidth
|
|
1307
1322
|
}), i;
|
|
1308
1323
|
}
|
|
1309
|
-
function
|
|
1310
|
-
const o = getComputedStyle(e), { offsetLeft: s, offsetTop: i } = H(t.nodes, e), r = document.createElementNS(
|
|
1311
|
-
|
|
1324
|
+
function U(t, e, n = !1) {
|
|
1325
|
+
const o = getComputedStyle(e), { offsetLeft: s, offsetTop: i } = H(t.nodes, e), r = document.createElementNS($, "rect");
|
|
1326
|
+
M(r, {
|
|
1312
1327
|
x: s + "",
|
|
1313
1328
|
y: i + "",
|
|
1314
1329
|
rx: o.borderRadius,
|
|
@@ -1319,14 +1334,14 @@ function _(t, e, n = !1) {
|
|
|
1319
1334
|
stroke: o.borderColor,
|
|
1320
1335
|
"stroke-width": o.borderWidth
|
|
1321
1336
|
});
|
|
1322
|
-
const c = document.createElementNS(
|
|
1337
|
+
const c = document.createElementNS($, "g");
|
|
1323
1338
|
c.appendChild(r);
|
|
1324
|
-
let
|
|
1325
|
-
return n ?
|
|
1339
|
+
let d;
|
|
1340
|
+
return n ? d = Cn(e, o, s, i) : d = xn(e, o, s, i), c.appendChild(d), c;
|
|
1326
1341
|
}
|
|
1327
|
-
function
|
|
1328
|
-
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS(
|
|
1329
|
-
return
|
|
1342
|
+
function Sn(t, e) {
|
|
1343
|
+
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS($, "a"), r = document.createElementNS($, "text");
|
|
1344
|
+
return M(r, {
|
|
1330
1345
|
x: o + "",
|
|
1331
1346
|
y: s + parseInt(n.fontSize) + "",
|
|
1332
1347
|
"text-anchor": "start",
|
|
@@ -1336,9 +1351,9 @@ function wn(t, e) {
|
|
|
1336
1351
|
fill: `${n.color}`
|
|
1337
1352
|
}), r.innerHTML = e.textContent, i.appendChild(r), i.setAttribute("href", e.href), i;
|
|
1338
1353
|
}
|
|
1339
|
-
function
|
|
1340
|
-
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS(
|
|
1341
|
-
return
|
|
1354
|
+
function Tn(t, e) {
|
|
1355
|
+
const n = getComputedStyle(e), { offsetLeft: o, offsetTop: s } = H(t.nodes, e), i = document.createElementNS($, "image");
|
|
1356
|
+
return M(i, {
|
|
1342
1357
|
x: o + "",
|
|
1343
1358
|
y: s + "",
|
|
1344
1359
|
width: n.width + "",
|
|
@@ -1346,40 +1361,40 @@ function bn(t, e) {
|
|
|
1346
1361
|
href: e.src
|
|
1347
1362
|
}), i;
|
|
1348
1363
|
}
|
|
1349
|
-
const
|
|
1350
|
-
const n = t.nodes, o = n.offsetHeight +
|
|
1351
|
-
|
|
1364
|
+
const K = 100, Ln = '<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">', Dn = (t, e = !1) => {
|
|
1365
|
+
const n = t.nodes, o = n.offsetHeight + K * 2, s = n.offsetWidth + K * 2, i = vn(o + "px", s + "px"), r = document.createElementNS($, "svg"), c = document.createElementNS($, "rect");
|
|
1366
|
+
M(c, {
|
|
1352
1367
|
x: "0",
|
|
1353
1368
|
y: "0",
|
|
1354
1369
|
width: `${s}`,
|
|
1355
1370
|
height: `${o}`,
|
|
1356
1371
|
fill: t.theme.cssVar["--bgcolor"]
|
|
1357
1372
|
}), i.appendChild(c), n.querySelectorAll(".subLines").forEach((f) => {
|
|
1358
|
-
const
|
|
1359
|
-
|
|
1373
|
+
const p = f.cloneNode(!0), { offsetLeft: m, offsetTop: y } = H(n, f.parentElement);
|
|
1374
|
+
p.setAttribute("x", `${m}`), p.setAttribute("y", `${y}`), r.appendChild(p);
|
|
1360
1375
|
});
|
|
1361
|
-
const
|
|
1376
|
+
const d = n.querySelector(".lines")?.cloneNode(!0);
|
|
1377
|
+
d && r.appendChild(d);
|
|
1378
|
+
const a = n.querySelector(".topiclinks")?.cloneNode(!0);
|
|
1362
1379
|
a && r.appendChild(a);
|
|
1363
|
-
const l = n.querySelector(".topiclinks")?.cloneNode(!0);
|
|
1364
|
-
l && r.appendChild(l);
|
|
1365
1380
|
const h = n.querySelector(".summary")?.cloneNode(!0);
|
|
1366
1381
|
return h && r.appendChild(h), n.querySelectorAll("me-tpc").forEach((f) => {
|
|
1367
|
-
f.nodeObj.dangerouslySetInnerHTML ? r.appendChild(
|
|
1382
|
+
f.nodeObj.dangerouslySetInnerHTML ? r.appendChild(U(t, f, !e)) : (r.appendChild(En(t, f)), r.appendChild(U(t, f.text, !e)));
|
|
1368
1383
|
}), n.querySelectorAll(".tags > span").forEach((f) => {
|
|
1369
|
-
r.appendChild(
|
|
1384
|
+
r.appendChild(U(t, f));
|
|
1370
1385
|
}), n.querySelectorAll(".icons > span").forEach((f) => {
|
|
1371
|
-
r.appendChild(
|
|
1386
|
+
r.appendChild(U(t, f));
|
|
1372
1387
|
}), n.querySelectorAll(".hyper-link").forEach((f) => {
|
|
1373
|
-
r.appendChild(
|
|
1388
|
+
r.appendChild(Sn(t, f));
|
|
1374
1389
|
}), n.querySelectorAll("img").forEach((f) => {
|
|
1375
|
-
r.appendChild(
|
|
1376
|
-
}),
|
|
1377
|
-
x:
|
|
1378
|
-
y:
|
|
1390
|
+
r.appendChild(Tn(t, f));
|
|
1391
|
+
}), M(r, {
|
|
1392
|
+
x: K + "",
|
|
1393
|
+
y: K + "",
|
|
1379
1394
|
overflow: "visible"
|
|
1380
1395
|
}), i.appendChild(r), i;
|
|
1381
|
-
},
|
|
1382
|
-
function
|
|
1396
|
+
}, Mn = (t, e) => (e && t.insertAdjacentHTML("afterbegin", "<style>" + e + "</style>"), Ln + t.outerHTML);
|
|
1397
|
+
function kn(t) {
|
|
1383
1398
|
return new Promise((e, n) => {
|
|
1384
1399
|
const o = new FileReader();
|
|
1385
1400
|
o.onload = (s) => {
|
|
@@ -1389,11 +1404,11 @@ function Sn(t) {
|
|
|
1389
1404
|
}, o.readAsDataURL(t);
|
|
1390
1405
|
});
|
|
1391
1406
|
}
|
|
1392
|
-
const
|
|
1393
|
-
const n =
|
|
1407
|
+
const Nn = function(t = !1, e) {
|
|
1408
|
+
const n = Dn(this, t), o = Mn(n, e);
|
|
1394
1409
|
return new Blob([o], { type: "image/svg+xml" });
|
|
1395
|
-
},
|
|
1396
|
-
const n = this.exportSvg(t, e), o = await
|
|
1410
|
+
}, Pn = async function(t = !1, e) {
|
|
1411
|
+
const n = this.exportSvg(t, e), o = await kn(n);
|
|
1397
1412
|
return new Promise((s, i) => {
|
|
1398
1413
|
const r = new Image();
|
|
1399
1414
|
r.setAttribute("crossOrigin", "anonymous"), r.onload = () => {
|
|
@@ -1401,54 +1416,54 @@ const Tn = function(t = !1, e) {
|
|
|
1401
1416
|
c.width = r.width, c.height = r.height, c.getContext("2d").drawImage(r, 0, 0), c.toBlob(s, "image/png", 1);
|
|
1402
1417
|
}, r.src = o, r.onerror = i;
|
|
1403
1418
|
});
|
|
1404
|
-
},
|
|
1419
|
+
}, An = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
1405
1420
|
__proto__: null,
|
|
1406
|
-
exportPng:
|
|
1407
|
-
exportSvg:
|
|
1408
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
1409
|
-
getObjById:
|
|
1410
|
-
generateNewObj:
|
|
1411
|
-
layout:
|
|
1412
|
-
linkDiv:
|
|
1413
|
-
editTopic:
|
|
1414
|
-
createWrapper:
|
|
1415
|
-
createParent:
|
|
1416
|
-
createChildren:
|
|
1417
|
-
createTopic:
|
|
1418
|
-
findEle:
|
|
1419
|
-
changeTheme:
|
|
1420
|
-
...
|
|
1421
|
-
|
|
1422
|
-
...
|
|
1423
|
-
...
|
|
1424
|
-
...
|
|
1421
|
+
exportPng: Pn,
|
|
1422
|
+
exportSvg: Nn
|
|
1423
|
+
}, Symbol.toStringTag, { value: "Module" })), $n = {}, Hn = {
|
|
1424
|
+
getObjById: J,
|
|
1425
|
+
generateNewObj: Ht,
|
|
1426
|
+
layout: Gt,
|
|
1427
|
+
linkDiv: Pe,
|
|
1428
|
+
editTopic: Ut,
|
|
1429
|
+
createWrapper: Ft,
|
|
1430
|
+
createParent: _t,
|
|
1431
|
+
createChildren: qt,
|
|
1432
|
+
createTopic: jt,
|
|
1433
|
+
findEle: St,
|
|
1434
|
+
changeTheme: Ve,
|
|
1435
|
+
...xe,
|
|
1436
|
+
...$n,
|
|
1437
|
+
...rn,
|
|
1438
|
+
...wn,
|
|
1439
|
+
...An,
|
|
1425
1440
|
init(t) {
|
|
1426
1441
|
if (t = JSON.parse(JSON.stringify(t)), !t || !t.nodeData) return new Error("MindElixir: `data` is required");
|
|
1427
|
-
t.direction !== void 0 && (this.direction = t.direction), this.changeTheme(t.theme || this.theme, !1), this.nodeData = t.nodeData, lt(this.nodeData), this.arrows = t.arrows || [], this.summaries = t.summaries || [], this.tidyArrow(), this.toolBar &&
|
|
1442
|
+
t.direction !== void 0 && (this.direction = t.direction), this.changeTheme(t.theme || this.theme, !1), this.nodeData = t.nodeData, lt(this.nodeData), this.arrows = t.arrows || [], this.summaries = t.summaries || [], this.tidyArrow(), this.toolBar && Ge(this), this.layout(), this.linkDiv(), this.toCenter();
|
|
1428
1443
|
},
|
|
1429
1444
|
destroy() {
|
|
1430
1445
|
this.disposable.forEach((t) => t()), this.el && (this.el.innerHTML = ""), this.el = void 0, this.nodeData = void 0, this.arrows = void 0, this.summaries = void 0, this.currentArrow = void 0, this.currentNodes = void 0, this.currentSummary = void 0, this.theme = void 0, this.direction = void 0, this.bus = void 0, this.container = void 0, this.map = void 0, this.lines = void 0, this.linkController = void 0, this.linkSvgGroup = void 0, this.P2 = void 0, this.P3 = void 0, this.line1 = void 0, this.line2 = void 0, this.nodes = void 0, this.selection?.destroy(), this.selection = void 0;
|
|
1431
1446
|
}
|
|
1432
1447
|
};
|
|
1433
|
-
function
|
|
1448
|
+
function In({ pT: t, pL: e, pW: n, pH: o, cT: s, cL: i, cW: r, cH: c, direction: d, containerHeight: a }) {
|
|
1434
1449
|
let h = e + n / 2;
|
|
1435
1450
|
const f = t + o / 2;
|
|
1436
|
-
let
|
|
1437
|
-
|
|
1438
|
-
const
|
|
1439
|
-
return
|
|
1451
|
+
let p;
|
|
1452
|
+
d === G.LHS ? p = i + r : p = i;
|
|
1453
|
+
const m = s + c / 2, u = (1 - Math.abs(m - f) / a) * 0.25 * (n / 2);
|
|
1454
|
+
return d === G.LHS ? h = h - n / 10 - u : h = h + n / 10 + u, `M ${h} ${f} Q ${h} ${m} ${p} ${m}`;
|
|
1440
1455
|
}
|
|
1441
|
-
function
|
|
1456
|
+
function On({ pT: t, pL: e, pW: n, pH: o, cT: s, cL: i, cW: r, cH: c, direction: d, isFirst: a }) {
|
|
1442
1457
|
const h = parseInt(this.container.style.getPropertyValue("--node-gap-x"));
|
|
1443
|
-
let f = 0,
|
|
1444
|
-
|
|
1445
|
-
const
|
|
1446
|
-
let
|
|
1447
|
-
const b = Math.abs(f -
|
|
1448
|
-
return
|
|
1458
|
+
let f = 0, p = 0;
|
|
1459
|
+
a ? f = t + o / 2 : f = t + o;
|
|
1460
|
+
const m = s + c;
|
|
1461
|
+
let y = 0, u = 0, g = 0;
|
|
1462
|
+
const b = Math.abs(f - m) / 300 * h;
|
|
1463
|
+
return d === G.LHS ? (g = e, y = g + h, u = g - h, p = i + h, `M ${y} ${f} C ${g} ${f} ${g + b} ${m} ${u} ${m} H ${p}`) : (g = e + n, y = g - h, u = g + h, p = i + r - h, `M ${y} ${f} C ${g} ${f} ${g - b} ${m} ${u} ${m} H ${p}`);
|
|
1449
1464
|
}
|
|
1450
|
-
const
|
|
1451
|
-
function
|
|
1465
|
+
const Yn = "5.11.0";
|
|
1466
|
+
function Bn(t) {
|
|
1452
1467
|
return {
|
|
1453
1468
|
x: 0,
|
|
1454
1469
|
y: 0,
|
|
@@ -1472,32 +1487,32 @@ function O({
|
|
|
1472
1487
|
keypress: i,
|
|
1473
1488
|
mouseSelectionButton: r,
|
|
1474
1489
|
selectionContainer: c,
|
|
1475
|
-
before:
|
|
1476
|
-
newTopicName:
|
|
1490
|
+
before: d,
|
|
1491
|
+
newTopicName: a,
|
|
1477
1492
|
allowUndo: h,
|
|
1478
1493
|
generateMainBranch: f,
|
|
1479
|
-
generateSubBranch:
|
|
1480
|
-
overflowHidden:
|
|
1481
|
-
theme:
|
|
1482
|
-
alignment:
|
|
1494
|
+
generateSubBranch: p,
|
|
1495
|
+
overflowHidden: m,
|
|
1496
|
+
theme: y,
|
|
1497
|
+
alignment: u,
|
|
1483
1498
|
scaleSensitivity: g,
|
|
1484
1499
|
scaleMax: b,
|
|
1485
|
-
scaleMin:
|
|
1500
|
+
scaleMin: v,
|
|
1486
1501
|
handleWheel: x,
|
|
1487
1502
|
markdown: S,
|
|
1488
1503
|
imageProxy: T,
|
|
1489
1504
|
pasteHandler: L
|
|
1490
1505
|
}) {
|
|
1491
1506
|
let C = null;
|
|
1492
|
-
const
|
|
1493
|
-
if (
|
|
1494
|
-
C.style.position = "relative", C.innerHTML = "", this.el = C, this.disposable = [], this.before =
|
|
1495
|
-
const
|
|
1496
|
-
this.theme =
|
|
1507
|
+
const P = Object.prototype.toString.call(t);
|
|
1508
|
+
if (P === "[object HTMLDivElement]" ? C = t : P === "[object String]" && (C = document.querySelector(t)), !C) throw new Error("MindElixir: el is not a valid element");
|
|
1509
|
+
C.style.position = "relative", C.innerHTML = "", this.el = C, this.disposable = [], this.before = d || {}, this.newTopicName = a || "New Node", this.contextMenu = o ?? !0, this.toolBar = s ?? !0, this.keypress = i ?? !0, this.mouseSelectionButton = r ?? 0, this.direction = e ?? 1, this.editable = n ?? !0, this.allowUndo = h ?? !0, this.scaleSensitivity = g ?? 0.1, this.scaleMax = b ?? 1.4, this.scaleMin = v ?? 0.2, this.generateMainBranch = f || In, this.generateSubBranch = p || On, this.overflowHidden = m ?? !1, this.alignment = u ?? "root", this.handleWheel = x ?? !0, this.markdown = S || void 0, this.imageProxy = T || void 0, this.currentNodes = [], this.currentArrow = null, this.scaleVal = 1, this.tempDirection = null, this.panHelper = Bn(this), this.bus = ke(), this.container = document.createElement("div"), this.selectionContainer = c || this.container, this.container.className = "map-container";
|
|
1510
|
+
const k = window.matchMedia("(prefers-color-scheme: dark)");
|
|
1511
|
+
this.theme = y || (k.matches ? ct : rt);
|
|
1497
1512
|
const Y = document.createElement("div");
|
|
1498
|
-
Y.className = "map-canvas", this.map = Y, this.container.setAttribute("tabindex", "0"), this.container.appendChild(this.map), this.el.appendChild(this.container), this.nodes = document.createElement("me-nodes"), this.lines =
|
|
1513
|
+
Y.className = "map-canvas", this.map = Y, this.container.setAttribute("tabindex", "0"), this.container.appendChild(this.map), this.el.appendChild(this.container), this.nodes = document.createElement("me-nodes"), this.lines = F("lines"), this.summarySvg = F("summary"), this.linkController = F("linkcontroller"), this.P2 = document.createElement("div"), this.P3 = document.createElement("div"), this.P2.className = this.P3.className = "circle", this.P2.style.display = this.P3.style.display = "none", this.line1 = mt(), this.line2 = mt(), this.linkController.appendChild(this.line1), this.linkController.appendChild(this.line2), this.linkSvgGroup = F("topiclinks"), this.labelContainer = document.createElement("div"), this.labelContainer.className = "label-container", this.map.appendChild(this.nodes), this.overflowHidden ? this.container.style.overflow = "hidden" : this.disposable.push(Me(this)), L && (this.pasteHandler = L);
|
|
1499
1514
|
}
|
|
1500
|
-
O.prototype =
|
|
1515
|
+
O.prototype = Hn;
|
|
1501
1516
|
Object.defineProperty(O.prototype, "currentNode", {
|
|
1502
1517
|
get() {
|
|
1503
1518
|
return this.currentNodes[this.currentNodes.length - 1];
|
|
@@ -1509,13 +1524,13 @@ O.RIGHT = 1;
|
|
|
1509
1524
|
O.SIDE = 2;
|
|
1510
1525
|
O.THEME = rt;
|
|
1511
1526
|
O.DARK_THEME = ct;
|
|
1512
|
-
O.version =
|
|
1513
|
-
O.E =
|
|
1527
|
+
O.version = Yn;
|
|
1528
|
+
O.E = St;
|
|
1514
1529
|
export {
|
|
1515
1530
|
ct as DARK_THEME,
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1531
|
+
Wn as LEFT,
|
|
1532
|
+
Rn as RIGHT,
|
|
1533
|
+
Xn as SIDE,
|
|
1519
1534
|
rt as THEME,
|
|
1520
1535
|
O as default
|
|
1521
1536
|
};
|