-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathblock_editor.js
392 lines (362 loc) · 14.8 KB
/
block_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
/**
* Worth noting - Blockly uses a setTimeOut of 0 steps to make events
* wait. That has some confusing interaction with trying to make things percolate.
* @param blockMirror
* @constructor
*/
function BlockMirrorBlockEditor(blockMirror) {
this.blockMirror = blockMirror;
this.blockContainer = blockMirror.tags.blockContainer;
this.blockEditor = blockMirror.tags.blockEditor;
this.blockArea = blockMirror.tags.blockArea;
// Null, or the source of the last update
this.outOfDate_ = null;
// Have to call BEFORE we inject, or Blockly will delete the css string!
// this.loadBlocklyCSS();
// Inject Blockly
let blocklyOptions = {
media: blockMirror.configuration.blocklyMediaPath,
// We use special comment blocks
zoom: {controls: true},
comments: false,
disable: false,
oneBasedIndex: false,
readOnly: blockMirror.configuration.readOnly,
scrollbars: true,
toolbox: this.makeToolbox(),
renderer: blockMirror.configuration.renderer
};
this.workspace = Blockly.inject(blockMirror.tags.blockEditor,
blocklyOptions);
// Configure Blockly
this.workspace.addChangeListener(this.changed.bind(this));
// Configure Blockly DIV
//blockMirror.tags.blockEditor.style.resize = 'horizontal';
this.blockContainer.style.float = 'left';
this.blockEditor.style.position = 'absolute';
this.blockEditor.style.width = '100%';
this.blockArea.style.height = blockMirror.configuration.height + "px";
this.readOnlyDiv_ = null;
window.addEventListener('resize', this.resized.bind(this), false);
this.resized();
}
BlockMirrorBlockEditor.prototype.resizeReadOnlyDiv = function () {
if (this.readOnlyDiv_ !== null) {
if (!this.isVisible()) {
this.readOnlyDiv_.css("left", '0px');
this.readOnlyDiv_.css("top", '0px');
this.readOnlyDiv_.css("width", '0px');
this.readOnlyDiv_.css("height", '0px');
}
let blockArea = this.blockMirror.tags.blockArea;
let current = blockArea;
let x = 0;
let y = 0;
do {
x += current.offsetLeft;
y += current.offsetTop;
current = current.offsetParent;
} while (current);
// Position blocklyDiv over blockArea.
this.readOnlyDiv_.css("left", x+'px');
this.readOnlyDiv_.css("top", y+'px');
this.readOnlyDiv_.css("width", blockArea.offsetWidth + 'px');
this.readOnlyDiv_.css("height", blockArea.offsetHeight + 'px');
}
};
BlockMirrorBlockEditor.prototype.setReadOnly = function (isReadOnly) {
if (isReadOnly) {
if (this.readOnlyDiv_ === null) {
this.readOnlyDiv_ = $("<div class='blockly-readonly-layer'></div>");
$("body").append(this.readOnlyDiv_);
}
this.resizeReadOnlyDiv();
} else if (this.readOnlyDiv_ !== null) {
this.readOnlyDiv_.remove();
this.readOnlyDiv_ = null;
}
};
BlockMirrorBlockEditor.prototype.updateWidth = function () {
var newWidth = '0%';
this.resized();
};
BlockMirrorBlockEditor.prototype.resized = function (e) {
this.resizeResponsively();
// Compute the absolute coordinates and dimensions of blocklyArea.
let blockArea = this.blockMirror.tags.blockArea;
/*var current = blockArea;
var x = 0;
var y = 0;
do {
x += current.offsetLeft;
y += current.offsetTop;
current = current.offsetParent;
} while (current);*/
// Position blocklyDiv over blockArea.
let blockEditor = this.blockMirror.tags.blockEditor;
/*blockEditor.style.left = x + 'px';
blockEditor.style.top = y + 'px';*/
blockEditor.style.width = blockArea.offsetWidth + 'px';
blockEditor.style.height = blockArea.offsetHeight + 'px';
Blockly.svgResize(this.workspace);
this.resizeReadOnlyDiv();
};
BlockMirrorBlockEditor.prototype.toolboxPythonToBlocks = function (toolboxPython) {
Blockly.Variables._HIDE_GETTERS_SETTERS = false;
return toolboxPython.map((category) => {
if (typeof category === "string") {
return category;
}
let colour = BlockMirrorTextToBlocks.COLOR[category.colour];
let header = `<category name="${category.name}" colour="${colour}"`;
if (category.custom) {
header += ` custom="${category.custom}">`;
} else {
header += ">";
}
let body = (category.blocks || []).map((code) => {
let result = this.blockMirror.textToBlocks.convertSource('toolbox.py', code);
return result.rawXml.innerHTML.toString();
}).join("\n");
let footer = "</category>";
if (category['hideGettersSetters']) {
Blockly.Variables._HIDE_GETTERS_SETTERS = true;
}
return [header, body, footer].join("\n");
}).join("\n");
};
BlockMirrorBlockEditor.prototype.makeToolbox = function () {
let toolbox = this.blockMirror.configuration.toolbox;
// Use palette if it exists, otherwise assume its a custom one.
if (toolbox in this.TOOLBOXES) {
toolbox = this.TOOLBOXES[toolbox];
}
// Convert if necessary
if (typeof toolbox !== "string") {
toolbox = this.toolboxPythonToBlocks(toolbox);
}
// TODO: Fix Hack, this should be configurable by instance rather than by class
for (let name in BlockMirrorBlockEditor.EXTRA_TOOLS) {
toolbox += BlockMirrorBlockEditor.EXTRA_TOOLS[name];
}
return '<xml id="toolbox" style="display:none">'+toolbox+'</xml>';
};
BlockMirrorBlockEditor.prototype.remakeToolbox = function () {
this.workspace.updateToolbox(this.makeToolbox());
this.resized();
};
/**
* Retrieves the current width of the Blockly Toolbox, unless
* we're in read-only mode (when there is no toolbox).
* @returns {Number} The current width of the toolbox.
*/
BlockMirrorBlockEditor.prototype.getToolbarWidth = function () {
if (this.blockMirror.configuration.readOnly) {
return 0;
} else {
return this.workspace.toolbox.width_;
}
};
BlockMirrorBlockEditor.prototype.VIEW_CONFIGURATIONS = {
'split': {
'width': '60%',
'visible': true
},
'block': {
'width': '100%',
'visible': true
},
'text': {
'width': '0%',
'visible': false
}
};
BlockMirrorBlockEditor.prototype.resizeResponsively = function () {
let mode = this.blockMirror.mode_;
let configuration = this.VIEW_CONFIGURATIONS[mode];
if (mode === 'split') {
if (window.innerWidth >= this.blockMirror.BREAK_WIDTH) {
this.blockContainer.style.width = configuration.width;
this.blockContainer.style.height = this.blockMirror.configuration.height+"px";
this.blockArea.style.height = this.blockMirror.configuration.height + "px";
} else {
this.blockContainer.style.width = '100%';
this.blockContainer.style.height = (this.blockMirror.configuration.height/2)+"px";
this.blockArea.style.height = (this.blockMirror.configuration.height/2)+"px";
}
} else if (mode === 'block') {
this.blockContainer.style.width = configuration.width;
this.blockContainer.style.height = this.blockMirror.configuration.height+"px";
this.blockArea.style.height = this.blockMirror.configuration.height + "px";
}
};
BlockMirrorBlockEditor.prototype.setMode = function (mode) {
mode = mode.toLowerCase();
let configuration = this.VIEW_CONFIGURATIONS[mode];
// Show/hide editor
this.workspace.setVisible(configuration.visible);
if (configuration.visible) {
this.blockEditor.style.width = '100%';
this.resized();
} else {
this.blockContainer.style.height = '0%';
this.blockArea.style.height = '0%';
this.resizeReadOnlyDiv();
}
// If there is an update waiting and we're visible, then update
if (this.outOfDate_ !== null && this.isVisible()) {
this.setCode(this.outOfDate_, true);
}
};
/**
* Attempts to update the model for the current code file from the
* block workspace. Might be prevented if an update event was already
* percolating.
*/
BlockMirrorBlockEditor.prototype.getCode = function () {
return python.pythonGenerator.workspaceToCode(this.workspace);
};
/**
* Attempts to update the model for the current code file from the
* block workspace. Might be prevented if an update event was already
* percolating.
*/
BlockMirrorBlockEditor.prototype.setCode = function (code, quietly) {
if (this.isVisible()) {
let result = this.blockMirror.textToBlocks.convertSource('__main__.py', code);
if (quietly) {
Blockly.Events.disable();
}
try {
let xml_code = Blockly.utils.xml.textToDom(result.xml);
// Convert line numbers to y coordinates, to ensure proper ordering
for (let i = 0, xmlChild; (xmlChild = xml_code.childNodes[i]); i++) {
xmlChild.setAttribute('y', (xmlChild.getAttribute('line_number') ?? 1) * 100);
}
Blockly.Xml.clearWorkspaceAndLoadFromXml(xml_code, this.workspace);
this.workspace.cleanUp();
} catch (error) {
console.error(error);
}
if (quietly) {
Blockly.Events.enable();
} else {
this.blockMirror.setCode(code, true);
}
this.outOfDate_ = null;
} else {
this.outOfDate_ = code;
}
}
BlockMirrorBlockEditor.prototype.BLOCKLY_CHANGE_EVENTS = [
Blockly.Events.CREATE, Blockly.Events.DELETE, Blockly.Events.CHANGE,
Blockly.Events.MOVE, Blockly.Events.VAR_RENAME
];
BlockMirrorBlockEditor.prototype.changed = function (event) {
if ((event === undefined || this.BLOCKLY_CHANGE_EVENTS.indexOf(event.type) !== -1) &&
!this.workspace.isDragging()) {
let newCode = this.getCode();
this.blockMirror.textEditor.setCode(newCode, true);
this.blockMirror.setCode(newCode, true);
}
};
BlockMirrorBlockEditor.prototype.isVisible = function () {
return this.blockMirror.VISIBLE_MODES.block.indexOf(this.blockMirror.mode_) !== -1;
};
BlockMirrorBlockEditor.prototype.DOCTYPE = '<?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">';
BlockMirrorBlockEditor.prototype.BLOCKLY_LOADED_CSS = null;
BlockMirrorBlockEditor.prototype.loadBlocklyCSS = function() {
if (this.BLOCKLY_LOADED_CSS === null) {
let result = [".blocklyDraggable {}"];
const blocklyCommonStyle = document.getElementById('blockly-common-style').getHTML();
const thrasosStyle = document.getElementById('blockly-renderer-style-Thrasos-classic').getHTML();
result = result.concat(blocklyCommonStyle, thrasosStyle);
if (Blockly.FieldDate) {
result = result.concat(Blockly.FieldDate.CSS);
}
result = result.join("\n");
// Strip off any trailing slash (either Unix or Windows).
result = result.replace(/<<<PATH>>>/g, Blockly.Css.mediaPath_);
this.BLOCKLY_LOADED_CSS = result;
}
}
/**
* Generates a PNG version of the current workspace. This PNG is stored in a Base-64 encoded
* string as part of a data URL (e.g., "data:image/png;base64,...").
* TODO: There seems to be some problems capturing blocks that don't start with
* statement level blocks (e.g., expression blocks).
*
* @param {Function} callback - A function to be called with the results.
* This function should take two parameters, the URL (as a string) of the generated
* base64-encoded PNG and the IMG tag.
*/
BlockMirrorBlockEditor.prototype.getPngFromBlocks = function(callback) {
try {
this.loadBlocklyCSS();
// Retreive the entire canvas, strip some unnecessary tags
var blocks = this.workspace.svgBlockCanvas_.cloneNode(true);
blocks.removeAttribute("width");
blocks.removeAttribute("height");
// Ensure that we have some content
if (blocks.childNodes[0] !== undefined) {
// Remove tags that offset
blocks.removeAttribute("transform");
blocks.childNodes[0].removeAttribute("transform");
blocks.childNodes[0].childNodes[0].removeAttribute("transform");
// Add in styles
var linkElm = document.createElementNS("http://www.w3.org/1999/xhtml", "style");
linkElm.textContent = this.BLOCKLY_LOADED_CSS + "\n\n";
blocks.insertBefore(linkElm, blocks.firstChild);
// Get the bounding box
var bbox = document.getElementsByClassName("blocklyBlockCanvas")[0].getBBox();
// Create the XML representation of the SVG
var xml = new XMLSerializer().serializeToString(blocks);
const classes = 'class="Thrasos-renderer classic-theme" ';
xml = '<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" '+classes+' width="'+bbox.width+'" height="'+bbox.height+'" viewBox="0 0 '+bbox.width+" "+bbox.height+'"><rect width="100%" height="100%" fill="white"></rect>'+xml+"</svg>";
console.log(xml);
// create a file blob of our SVG.
// Unfortunately, this crashes modern chrome for unknown reasons.
//var blob = new Blob([ this.DOCTYPE + xml], { type: 'image/svg+xml' });
//var url = window.URL.createObjectURL(blob);
// Old method: this failed on IE
var url = "data:image/svg+xml;base64," + btoa(unescape(encodeURIComponent(xml)));
// Create an IMG tag to hold the new element
var img = document.createElement("img");
img.style.display = "block";
img.onload = function() {
var canvas = document.createElement("canvas");
canvas.width = bbox.width;
canvas.height = bbox.height;
if (!canvas.width || !canvas.height) {
callback("", img);
return;
}
var ctx = canvas.getContext("2d");
ctx.drawImage(img, 0, 0);
var canvasUrl;
try {
canvasUrl = canvas.toDataURL("image/png");
} catch (e) {
canvasUrl = url;
}
img.onload = null;
callback(canvasUrl, img);
};
img.onerror = function() {
callback("", img);
};
img.setAttribute("src", url);
} else {
callback("", document.createElement("img"));
}
} catch (e) {
callback("", document.createElement("img"));
console.error("PNG image creation not supported!", e);
}
};
BlockMirrorBlockEditor.prototype.highlightLines = function(lines, style) {
// Make some kind of block map?
/*this.workspace.getAllBlocks().map((block) => {
block
});*/
};