-
Notifications
You must be signed in to change notification settings - Fork 88
/
diagram-editor.js
425 lines (375 loc) · 7.96 KB
/
diagram-editor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
/**
* Copyright (c) 2006-2020, JGraph Ltd
* Copyright (c) 2006-2020, Gaudenz Alder
*
* Usage: DiagramEditor.editElement(elt) where elt is an img or object with
* a data URI src or data attribute or an svg node with a content attribute.
*
* See https://jgraph.github.io/drawio-integration/javascript.html
*/
function DiagramEditor(config, ui, done, initialized, urlParams)
{
this.config = (config != null) ? config : this.config;
this.ui = (ui != null) ? ui : this.ui;
this.done = (done != null) ? done : this.done;
this.initialized = (initialized != null) ? initialized : this.initialized;
this.urlParams = urlParams;
var self = this;
this.handleMessageEvent = function(evt)
{
if (self.frame != null && evt.source == self.frame.contentWindow &&
evt.data.length > 0)
{
try
{
var msg = JSON.parse(evt.data);
if (msg != null)
{
self.handleMessage(msg);
}
}
catch (e)
{
console.error(e);
}
}
};
};
/**
* Static method to edit the diagram in the given img or object.
*/
DiagramEditor.editElement = function(elt, config, ui, done, urlParams)
{
if (!elt.diagramEditorStarting)
{
elt.diagramEditorStarting = true;
return new DiagramEditor(config, ui, done, function()
{
delete elt.diagramEditorStarting;
}, urlParams).editElement(elt);
}
};
/**
* Global configuration.
*/
DiagramEditor.prototype.config = null;
/**
* Protocol and domain to use.
*/
DiagramEditor.prototype.drawDomain = 'https://embed.diagrams.net/';
/**
* UI theme to be use.
*/
DiagramEditor.prototype.ui = 'min';
/**
* Contains XML for pending image export.
*/
DiagramEditor.prototype.xml = null;
/**
* Format to use.
*/
DiagramEditor.prototype.format = 'xml';
/**
* Specifies if libraries should be enabled.
*/
DiagramEditor.prototype.libraries = true;
/**
* CSS style for the iframe.
*/
DiagramEditor.prototype.frameStyle = 'position:absolute;border:0;width:100%;height:100%;';
/**
* Adds the iframe and starts editing.
*/
DiagramEditor.prototype.editElement = function(elem)
{
var src = this.getElementData(elem);
this.startElement = elem;
var fmt = this.format;
if (src.substring(0, 15) === 'data:image/png;')
{
fmt = 'xmlpng';
}
else if (src.substring(0, 19) === 'data:image/svg+xml;' ||
elem.nodeName.toLowerCase() == 'svg')
{
fmt = 'xmlsvg';
}
this.startEditing(src, fmt);
return this;
};
/**
* Adds the iframe and starts editing.
*/
DiagramEditor.prototype.getElementData = function(elem)
{
var name = elem.nodeName.toLowerCase();
return elem.getAttribute((name == 'svg') ? 'content' :
((name == 'img') ? 'src' : 'data'));
};
/**
* Adds the iframe and starts editing.
*/
DiagramEditor.prototype.setElementData = function(elem, data)
{
var name = elem.nodeName.toLowerCase();
if (name == 'svg')
{
elem.outerHTML = atob(data.substring(data.indexOf(',') + 1));
}
else
{
elem.setAttribute((name == 'img') ? 'src' : 'data', data);
}
return elem;
};
/**
* Starts the editor for the given data.
*/
DiagramEditor.prototype.startEditing = function(data, format, title)
{
if (this.frame == null)
{
window.addEventListener('message', this.handleMessageEvent);
this.format = (format != null) ? format : this.format;
this.title = (title != null) ? title : this.title;
this.data = data;
this.frame = this.createFrame(
this.getFrameUrl(),
this.getFrameStyle());
document.body.appendChild(this.frame);
this.setWaiting(true);
}
};
/**
* Updates the waiting cursor.
*/
DiagramEditor.prototype.setWaiting = function(waiting)
{
if (this.startElement != null)
{
// Redirect cursor to parent for SVG and object
var elt = this.startElement;
var name = elt.nodeName.toLowerCase();
if (name == 'svg' || name == 'object')
{
elt = elt.parentNode;
}
if (elt != null)
{
if (waiting)
{
this.frame.style.pointerEvents = 'none';
this.previousCursor = elt.style.cursor;
elt.style.cursor = 'wait';
}
else
{
elt.style.cursor = this.previousCursor;
this.frame.style.pointerEvents = '';
}
}
}
};
/**
* Updates the waiting cursor.
*/
DiagramEditor.prototype.setActive = function(active)
{
if (active)
{
this.previousOverflow = document.body.style.overflow;
document.body.style.overflow = 'hidden';
}
else
{
document.body.style.overflow = this.previousOverflow;
}
};
/**
* Removes the iframe.
*/
DiagramEditor.prototype.stopEditing = function()
{
if (this.frame != null)
{
window.removeEventListener('message', this.handleMessageEvent);
document.body.removeChild(this.frame);
this.setActive(false);
this.frame = null;
}
};
/**
* Send the given message to the iframe.
*/
DiagramEditor.prototype.postMessage = function(msg)
{
if (this.frame != null)
{
this.frame.contentWindow.postMessage(JSON.stringify(msg), '*');
}
};
/**
* Returns the diagram data.
*/
DiagramEditor.prototype.getData = function()
{
return this.data;
};
/**
* Returns the title for the editor.
*/
DiagramEditor.prototype.getTitle = function()
{
return this.title;
};
/**
* Returns the CSS style for the iframe.
*/
DiagramEditor.prototype.getFrameStyle = function()
{
return this.frameStyle + ';left:' +
document.body.scrollLeft + 'px;top:' +
document.body.scrollTop + 'px;';
};
/**
* Returns the URL for the iframe.
*/
DiagramEditor.prototype.getFrameUrl = function()
{
var url = this.drawDomain + '?proto=json&spin=1';
if (this.ui != null)
{
url += '&ui=' + this.ui;
}
if (this.libraries != null)
{
url += '&libraries=1';
}
if (this.config != null)
{
url += '&configure=1';
}
if (this.urlParams != null)
{
url += '&' + this.urlParams.join('&');
}
return url;
};
/**
* Creates the iframe.
*/
DiagramEditor.prototype.createFrame = function(url, style)
{
var frame = document.createElement('iframe');
frame.setAttribute('frameborder', '0');
frame.setAttribute('style', style);
frame.setAttribute('src', url);
return frame;
};
/**
* Sets the status of the editor.
*/
DiagramEditor.prototype.setStatus = function(messageKey, modified)
{
this.postMessage({action: 'status', messageKey: messageKey, modified: modified});
};
/**
* Handles the given message.
*/
DiagramEditor.prototype.handleMessage = function(msg)
{
if (msg.event == 'configure')
{
this.configureEditor();
}
else if (msg.event == 'init')
{
this.initializeEditor();
}
else if (msg.event == 'autosave')
{
this.save(msg.xml, true, this.startElement);
}
else if (msg.event == 'export')
{
this.setElementData(this.startElement, msg.data);
this.stopEditing();
this.xml = null;
}
else if (msg.event == 'save')
{
this.save(msg.xml, false, this.startElement);
this.xml = msg.xml;
if (msg.exit)
{
msg.event = 'exit';
}
else
{
this.setStatus('allChangesSaved', false);
}
}
if (msg.event == 'exit')
{
if (this.format != 'xml')
{
if (this.xml != null)
{
this.postMessage({action: 'export', format: this.format,
xml: this.xml, spinKey: 'export'});
}
else
{
this.stopEditing(msg);
}
}
else
{
if (msg.modified == null || msg.modified)
{
this.save(msg.xml, false, this.startElement);
}
this.stopEditing(msg);
}
}
};
/**
* Posts configure message to editor.
*/
DiagramEditor.prototype.configureEditor = function()
{
this.postMessage({action: 'configure', config: this.config});
};
/**
* Posts load message to editor.
*/
DiagramEditor.prototype.initializeEditor = function()
{
this.postMessage({action: 'load',autosave: 1, saveAndExit: '1',
modified: 'unsavedChanges', xml: this.getData(),
title: this.getTitle()});
this.setWaiting(false);
this.setActive(true);
this.initialized();
};
/**
* Saves the given data.
*/
DiagramEditor.prototype.save = function(data, draft, elt)
{
this.done(data, draft, elt);
};
/**
* Invoked after save.
*/
DiagramEditor.prototype.done = function()
{
// hook for subclassers
};
/**
* Invoked after the editor has sent the init message.
*/
DiagramEditor.prototype.initialized = function()
{
// hook for subclassers
};