Pass through block drag event

This commit is contained in:
DD 2018-02-12 10:25:42 -05:00
parent 8e1719b716
commit fe4b3d3c01
3 changed files with 30 additions and 0 deletions

View file

@ -288,6 +288,16 @@ class Blocks {
newCoordinate: e.newCoordinate newCoordinate: e.newCoordinate
}); });
break; break;
case 'drag':
if (optRuntime) {
optRuntime.emitBlockDragUpdate(e.isOutside);
}
break;
case 'endDrag':
if (optRuntime) {
optRuntime.emitBlockDragUpdate(false /* areBlocksOverGui */);
}
break;
case 'delete': case 'delete':
// Don't accept delete events for missing blocks, // Don't accept delete events for missing blocks,
// or shadow blocks being obscured. // or shadow blocks being obscured.

View file

@ -379,6 +379,15 @@ class Runtime extends EventEmitter {
return 'MONITORS_UPDATE'; return 'MONITORS_UPDATE';
} }
/**
* Event name for block drag update.
* @const {string}
*/
static get BLOCK_DRAG_UPDATE () {
return 'BLOCK_DRAG_UPDATE';
}
/** /**
* Event name for reporting that an extension was added. * Event name for reporting that an extension was added.
* @const {string} * @const {string}
@ -1387,6 +1396,14 @@ class Runtime extends EventEmitter {
} }
} }
/**
* Emit whether blocks are being dragged over gui
* @param {boolean} areBlocksOverGui True if blocks are dragged out of blocks workspace, false otherwise
*/
emitBlockDragUpdate (areBlocksOverGui) {
this.emit(Runtime.BLOCK_DRAG_UPDATE, areBlocksOverGui);
}
/** /**
* Emit value for reporter to show in the blocks. * Emit value for reporter to show in the blocks.
* @param {string} blockId ID for the block. * @param {string} blockId ID for the block.

View file

@ -74,6 +74,9 @@ class VirtualMachine extends EventEmitter {
this.runtime.on(Runtime.MONITORS_UPDATE, monitorList => { this.runtime.on(Runtime.MONITORS_UPDATE, monitorList => {
this.emit(Runtime.MONITORS_UPDATE, monitorList); this.emit(Runtime.MONITORS_UPDATE, monitorList);
}); });
this.runtime.on(Runtime.BLOCK_DRAG_UPDATE, areBlocksOverGui => {
this.emit(Runtime.BLOCK_DRAG_UPDATE, areBlocksOverGui);
});
this.runtime.on(Runtime.EXTENSION_ADDED, blocksInfo => { this.runtime.on(Runtime.EXTENSION_ADDED, blocksInfo => {
this.emit(Runtime.EXTENSION_ADDED, blocksInfo); this.emit(Runtime.EXTENSION_ADDED, blocksInfo);
}); });