import * asBlocklyfrom'blockly';
import {Multiselect} from'@mit-app-inventor/blockly-plugin-workspace-multiselect';
options = {
toolbox: toolboxCategories,
// The plugin should work with other plugins// that require a custom block dragger, like// the scroll-options plugin as this plugin// was updated to not require a custom dragger.// Double click the blocks to collapse/expand// them (A feature from MIT App Inventor).useDoubleClick: false,
// Bump neighbours after dragging to avoid overlapping.bumpNeighbours: false,
// Keep the fields of multiple selected same-type blocks with the same value// See note below. multiFieldUpdate: true,
// Auto focus the workspace when the mouse enters.workspaceAutoFocus: true,
// Use custom icon for the multi select controls.multiselectIcon: {
hideIcon: false,
weight: 3,
enabledIcon: 'https://github.com/mit-cml/workspace-multiselect/raw/main/test/media/select.svg',
disabledIcon: 'https://github.com/mit-cml/workspace-multiselect/raw/main/test/media/unselect.svg',
},
// Keys for multi-selection mode switch. Any key value is possible (see MDN docs).// https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key// The best support (default) is given for Shift. Provide an empty array []// will revert to the default key.// One thing to make sure is that the multiSelectKeys do not overlap with the// keys defined for the shortcut actions as it will lead to a cascade of calls,// which is not ideal for the browser.multiSelectKeys: ['Shift'],
multiselectCopyPaste: {
// Enable the copy/paste accross tabs feature (true by default).crossTab: true,
// Show the copy/paste menu entries (true by default).menu: true,
},
};
// Inject Blockly.const workspace = Blockly.inject('blocklyDiv', options);
// Initialize plugin.const multiselectPlugin = newMultiselect(workspace);
multiselectPlugin.init(options);
User behavior
When some of the selected blocks are in one block stack, for example, some top blocks and some of their children blocks are in the selection simultaneously. If applicable, the plugin only disconnects the selected most top block in that stack with its parent block. Move along with all the children's blocks of that most top block as a whole.
Blocks can be deselected by clicking on the workspace background.
Additional blocks can be able to be selected/deselected by holding SHIFT key while clicking the new/already selected block.
Clicking a new block without holding SHIFT key can clear the multiple selections and only select that block.
Holding SHIFT key to drag a rectangle area to select can reverse their selection state for the blocks touched by the rectangle.
Clicking on the button above the dustbin is equivalent to holding/releasing the SHIFT key for switching between the multiple selection mode and the normal mode. Icons are customizable.
Bumping neighbours after dragging to avoid overlapping is disabled in this plugin by default. Enable with bumpNeighbours: true.
Click on a block will bring that block to front. (In case Bumping neighbours is disabled)
In multiple selection mode, workspace dragging as well as block dragging will all be disabled. You can only drag to draw a rectangle for selection.
The Duplicate menu will duplicate the selected most top block in the block stack and all the children blocks of that most top block. The selection will be changed to all newly created duplicate blocks' most top blocks.
The Add Comment / Remove Comment will instead read as Add Comment (X) / Remove Comment (X), and will add / remove comment buttons to all the selected blocks.
The Inline Inputs / External Inputs will instead read as Inline Inputs (X) / External Inputs (X), and will convert the input format with all the selected blocks.
The Collapse Block / Expand Block will instead read as Collapse Block (X) / Expand Block (X), and will only apply to the selected most top block in the block stack.
The Disable Block / Enable Block will instead read as Disable Block (X) / Enable Block (X), and will only apply to the selected most top block in the block stack. All the children blocks of that most top block will also get disabled.
For 11-14, X means the currently applicable number of selected blocks by the user, and (X) will only be shown when X is greater than 1.
The text to show in 11-14 is determined by the state of the block that the user right-clicks, and the same status will be applied to all the blocks no matter their individual state.
Delete [X] Blocks represents the count of the selected most top block in the block stack as well as all children of those selected most top block, and delete the blocks mentioned.
The "Help" option displays just the helping information for which block the user just right-clicked.
The workspace context menu has a item to Select all Blocks in that workspace.
When you use Ctrl/Alt + A, you can select all the blocks in the current workspace. Ctrl/Alt + C to copy the selected blocks, Ctrl/Alt + X to cut the selected blocks to the clipboard, and Ctrl/Alt + V to paste all the blocks currently in the clipboard and get all the newly pasted blocks selected, these will only apply to the selected most top block in the block stack.
When you edit the fields while selecting multiple blocks, we will automatically apply that to all the blocks with the same type.
You can copy and paste blocks in the same workspace and across different tabs. This plugin collides with blockly-plugin-cross-tab-copy-paste so they should not be used together.
(MIT App Inventor-only feature) Double click to collapse/expand currently selected blocks, enable with Blockly option useDoubleClick: true.
In @blockly/workspace-backpack, Copy to backpack (Y) will become (X) Copy to backpack (Y), where Y represents the number of blocks that are already in the backpack, and X represents the number of top most blocks that can be copied to the backpack. The Copy to backpack (Y) menu will only be disabled when none of the selected blocks can be copied to the backpack, and it will only be applied to the selected most top block in the block stack.
Known issues
Currently, we rely on DragSelect to know which block gets selected. DragSelect seems to listen to the "blocks". However, it actually works by listening to the SVG path element, which is always a rectangle with some transparent parts forming a block. For irregularly shaped blocks, if you click on the transparent area that within the SVG rectangle, it will still get selected. (a mitigation has already been introduced in v0.1.4, but a proper fix should be that Blockly implements some kind of API, so that we can know for sure where the block actually locates.)
Currently, there is an issue related to the pointerdown event listener workaround for the setStartBlock gesture handling. The SVG root of a block that has a next block overlaps with that next block. So, when we try to remove the pointerdown event listener for the next block, it does not matter as the pointerdown event listener for the parent (higher level) block is still present. (a fix may be introduced when the Blockly team introduces proper gesture handling for setStartBlock.)
Note on multi-field updates
When the multiFieldUpdate option is enable, the plugin will automatically update the fields of all selected blocks with the
same type. This can cause issues when you have multiple field on a block and one field is dependent on another.
For example, if you have a block with a dropdown field and another, dependent, field which is programmatically updated
(e.g. in the dropdown field's validator) based on the value of the dropdown field, then the
multi-field update may interfere with the programmatic update. In this situation, you only want to multi-field
update to update the dropdown fields. To do this, you can use the Multiselect.withoutMultiFieldUpdates wrapper function
within the function which updates the dependent field. It allows you to temporarily turn off the multi-field update within the
scope of its wrapped input function.
Cross-tested with the following plugins:
Original
Scroll-options plugin
Backpack (Need to update UI in Backpack plugin side)
Workspace-related
Keyboard-navigation
Shadow-block-converter
Workspace-content-highlight
Disable-top-blocks
Plugin-strict-connection-checker
Blocks-related
Block-dynamic-connection
Block-shareable-procedures
Block-test
For more information, please check out the following issue page.
Note on keyboard navigation plugin
Currently, the keyboard navigation plugin has no compatibility issues with the multiselect plugin. It is enabled by default
in the test files. However, one thing that developers and users should note is that the regular Blockly core's copy/cut/paste shortcuts
and multiselect plugin's copy/cut/paste shortcuts are completely disabled when the keyboard navigation mode is turned on. This was assumed
to be the expected behavior of the user as it defeats the purpose of having the keyboard navigation mode turned on and the user would try to
select blocks using the cursor and copy/cut/paste with that selection. However, if a developer wants to allow for either copy/cut/paste behavior
(Blockly Core or multiselect plugin) while the keyboard navigation mode is turned on, we would have to make the following changes described in this
issue.
Note on disable top blocks plugin
The disable top blocks plugin has to be initialized after the multiselect plugin. The main reason behind this is that
the multiselect plugin has its own custom context menu, which allows for the disabling of any blocks (not just top blocks).
Installing the multiselect plugin after the disable top blocks plugin overrides the disable top blocks plugin's context menu
customization. If we install the disable top blocks plugin after the multiselect plugin, everything works as intended.
API
Multiselect.init: Initialize the plugin.
Multiselect.dispose: Dispose the plugin.
MultiselectDraggable: The customized draggable object unique to each workspace that contains the blocks in the multiselection.
dragSelectionWeakMap: The WeakMap storing set of currently selected block ids by workspace svg.
inMultipleSelectionModeWeakMap: The WeakMap storing whether the plugin is in multiple selection mode by workspace svg.
Multiselect.withoutMultiFieldUpdates: A wrapper function to ignore multi-field updates.
Multiselect.setMultiselectIcon: Pass in the icon URLs/data to change the multiselect icon at runtime.
Credit
DragSelect: This plugin uses DragSelect to realize the "drag a rectangle to select multiple blocks" feature. The patching PR #143 and #165 made all this possible, and these PRs are included in v2.6.0.
A Blockly plugin that allows to drag, select and doing actions on multiple blocks in the workspace.
The npm package @mit-app-inventor/blockly-plugin-workspace-multiselect receives a total of 303 weekly downloads. As such, @mit-app-inventor/blockly-plugin-workspace-multiselect popularity was classified as not popular.
We found that @mit-app-inventor/blockly-plugin-workspace-multiselect demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.It has 0 open source maintainers collaborating on the project.
Package last updated on 17 Aug 2024
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.
Socket researchers found a malicious Maven package impersonating the legitimate ‘XZ for Java’ library, introducing a backdoor for remote code execution.