-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreplay.js
281 lines (238 loc) · 6.44 KB
/
replay.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
/**
* Replay plugin. To record steps in the Editor, click on Extras, Record.
* To stop recording click Extras, Record again. Enter the delay between
* the steps and use the URL that opens in the new window.
*/
Draw.loadPlugin(function(ui) {
var graph = ui.editor.graph;
var model = graph.model;
function decodeChanges(delta, direct)
{
var codec2 = new mxCodec(delta.ownerDocument);
codec2.lookup = function(id)
{
return model.getCell(id);
};
var changeNode = (direct) ? delta.firstChild : delta.firstChild.firstChild;
var changes = [];
while (changeNode != null)
{
var change = codec2.decode(changeNode);
change.model = model;
change.execute();
changes.push(change);
changeNode = changeNode.nextSibling;
}
return changes;
};
function createUndoableEdit(changes)
{
var edit = new mxUndoableEdit(model);
edit.changes = changes;
edit.notify = function()
{
// LATER: Remove changes property (deprecated)
edit.source.fireEvent(new mxEventObject(mxEvent.CHANGE,
'edit', edit, 'changes', edit.changes));
edit.source.fireEvent(new mxEventObject(mxEvent.NOTIFY,
'edit', edit, 'changes', edit.changes));
};
return edit;
};
function processDelta(delta, direct)
{
var changes = decodeChanges(delta, direct);
if (changes.length > 0)
{
var edit = createUndoableEdit(changes);
if (ui.chromelessResize)
{
// No notify event here to avoid the edit from being encoded and transmitted
// LATER: Remove changes property (deprecated)
model.fireEvent(new mxEventObject(mxEvent.CHANGE,
'edit', edit, 'changes', changes));
model.fireEvent(new mxEventObject(mxEvent.UNDO, 'edit', edit));
ui.chromelessResize();
}
else
{
edit.notify();
}
}
return edit;
};
if (ui.editor.isChromelessView())
{
var replayData = urlParams['replay-data'];
var delay = parseInt(urlParams['delay-delay'] || 1000);
if (replayData != null)
{
var xmlDoc = mxUtils.parseXml(Graph.decompress(replayData));
// LATER: Avoid duplicate parsing
ui.fileLoaded(new LocalFile(ui, mxUtils.getXml(xmlDoc.documentElement.firstChild.firstChild)));
// Process deltas
var delta = xmlDoc.documentElement.firstChild.nextSibling;
function nextStep()
{
if (delta != null)
{
window.setTimeout(function()
{
processDelta(delta);
delta = delta.nextSibling;
nextStep();
}, delay);
}
};
nextStep();
}
}
else
{
var tape = null;
var codec = new mxCodec();
codec.lookup = function(id)
{
return model.getCell(id);
};
model.addListener(mxEvent.CHANGE, function(sender, evt)
{
if (tape != null)
{
var changes = evt.getProperty('changes');
var node = codec.encode(changes);
var delta = codec.document.createElement('delta');
delta.appendChild(node);
tape.push(mxUtils.getXml(delta));
}
});
mxResources.parse('record=Record');
mxResources.parse('replay=Replay');
// Adds actions
var action = ui.actions.addAction('record...', function()
{
if (tape == null)
{
var node = codec.encode(model);
var state = codec.document.createElement('state');
state.appendChild(node);
tape =[mxUtils.getXml(state)];
ui.editor.setStatus('Recording started');
}
else if (tape != null)
{
ui.editor.setStatus('Recording stopped');
var tmp = tape;
tape = null;
var dlg = new FilenameDialog(ui, 1000, mxResources.get('apply'), function(newValue)
{
if (newValue != null)
{
var dlg = new EmbedDialog(ui, 'https://www.draw.io/?p=replay&lightbox=1&replay-delay=' +
parseFloat(newValue) + '&replay-data=' + Graph.compress('<recording>' +
tmp.join('') + '</recording>'));
ui.showDialog(dlg.container, 450, 240, true, true);
dlg.init();
}
}, 'Delay');
ui.showDialog(dlg.container, 300, 80, true, true);
dlg.init();
}
action.label = (tape != null) ? 'Stop recording' : mxResources.get('record') + '...';
});
ui.actions.addAction('replay...', function()
{
var dlg = new TextareaDialog(ui, 'Changes [JSON export, compressed edits or <edit>..</edit>]:', '',
function(newValue)
{
if (newValue.length > 0)
{
try
{
var current = null;
if (newValue.charAt(0) == '{')
{
var temp = JSON.parse(newValue);
current = temp.current;
newValue = temp.edits;
}
if (newValue.charAt(0) != '<')
{
newValue = Graph.decompress(newValue);
}
if (newValue.charAt(0) == '[')
{
newValue = JSON.parse(newValue);
console.log(JSON.stringify(newValue, null, 2));
var pageId = null;
var temp = [];
for (var i = 0; i < newValue.length; i++)
{
if (pageId == null)
{
pageId = newValue[i].pageid;
}
if (pageId == newValue[i].pageid)
{
temp.push(newValue[i].data);
}
else
{
mxLog.debug('edit ignored for page ' + newValue[i].pageid);
mxLog.show();
}
}
newValue = temp.join('');
}
var edits = mxUtils.parseXml('<edits>' + newValue + '</edits>');
var edit = edits.documentElement.firstChild;
function step()
{
console.log(processDelta(edit, true));
edit = edit.nextSibling;
return edit != null;
}
if (ui.buttonContainer != null)
{
console.log(mxUtils.getPrettyXml(edit));
var button = mxUtils.button('Step', function()
{
if (!step())
{
button.parentNode.removeChild(button);
}
else
{
console.log(mxUtils.getPrettyXml(edit));
}
});
button.className = 'geBtn gePrimaryBtn';
ui.buttonContainer.appendChild(button);
}
else
{
while (step())
{
// repeat
}
}
}
catch (e)
{
ui.handleError(e);
console.error(e);
}
}
});
ui.showDialog(dlg.container, 620, 460, true, true);
dlg.init();
});
var menu = ui.menus.get('extras');
var oldFunct = menu.funct;
menu.funct = function(menu, parent)
{
oldFunct.apply(this, arguments);
ui.menus.addMenuItems(menu, ['-', 'record', 'replay'], parent);
};
}
});