Switch Blockly listener to normal function (not closure/generated)

This commit is contained in:
Tim Mickel 2016-08-31 11:34:17 -04:00
parent aa70c1bc3b
commit 05a5369d7b

View file

@ -120,63 +120,57 @@ Blocks.prototype.getInputs = function (id) {
/** /**
* Create event listener for blocks. Handles validation and serves as a generic * Create event listener for blocks. Handles validation and serves as a generic
* adapter between the blocks and the runtime interface. * adapter between the blocks and the runtime interface.
* @param {Object} e Blockly "block" event
* @param {boolean} isFlyout If true, create a listener for flyout events. * @param {boolean} isFlyout If true, create a listener for flyout events.
* @param {?Runtime} opt_runtime Optional runtime to forward click events to. * @param {?Runtime} opt_runtime Optional runtime to forward click events to.
* @return {Function} A generated listener to attach to Blockly instance.
*/ */
Blocks.prototype.generateBlockListener = function (isFlyout, opt_runtime) { Blocks.prototype.blocklyListen = function (e, isFlyout, opt_runtime) {
var instance = this; // Validate event
/** if (typeof e !== 'object') return;
* The actual generated block listener. if (typeof e.blockId !== 'string') return;
* @param {Object} e Blockly "block" event
*/
return function (e) {
// Validate event
if (typeof e !== 'object') return;
if (typeof e.blockId !== 'string') return;
// UI event: clicked scripts toggle in the runtime. // UI event: clicked scripts toggle in the runtime.
if (e.element === 'stackclick') { if (e.element === 'stackclick') {
if (opt_runtime) { if (opt_runtime) {
opt_runtime.toggleScript(e.blockId); opt_runtime.toggleScript(e.blockId);
}
return;
} }
return;
}
// Block create/update/destroy // Block create/update/destroy
switch (e.type) { switch (e.type) {
case 'create': case 'create':
var newBlocks = adapter(e); var newBlocks = adapter(e);
// A create event can create many blocks. Add them all. // A create event can create many blocks. Add them all.
for (var i = 0; i < newBlocks.length; i++) { for (var i = 0; i < newBlocks.length; i++) {
instance.createBlock(newBlocks[i], isFlyout); this.createBlock(newBlocks[i], isFlyout);
}
break;
case 'change':
instance.changeBlock({
id: e.blockId,
element: e.element,
name: e.name,
value: e.newValue
});
break;
case 'move':
instance.moveBlock({
id: e.blockId,
oldParent: e.oldParentId,
oldInput: e.oldInputName,
newParent: e.newParentId,
newInput: e.newInputName
});
break;
case 'delete':
instance.deleteBlock({
id: e.blockId
});
break;
} }
}; break;
case 'change':
this.changeBlock({
id: e.blockId,
element: e.element,
name: e.name,
value: e.newValue
});
break;
case 'move':
this.moveBlock({
id: e.blockId,
oldParent: e.oldParentId,
oldInput: e.oldInputName,
newParent: e.newParentId,
newInput: e.newInputName,
newCoordinate: e.newCoordinate
});
break;
case 'delete':
this.deleteBlock({
id: e.blockId
});
break;
}
}; };
// --------------------------------------------------------------------- // ---------------------------------------------------------------------