A connection checker that prevents blocks that don't provide type information from being connected to blocks that do.
npm install @blockly/plugin-strict-connection-checkerA Blockly plugin that imposes stricter rules for connection check arrays than the default checker in Blockly, but uses the same rules for dragging and safety.
This checker still expects nullable arrays of string for connection type checks, and still looks for intersections in the arrays. Unlike the default checker, null checks arrays are only compatible with other null arrays.
```
yarn add @blockly/plugin-strict-connection-checker
``
npm install @blockly/plugin-strict-connection-checker --save
The plugin exports a pluginInfo object for use in the options struct.
`js
import * as Blockly from 'blockly';
import {pluginInfo as StrictConnectionsPluginInfo} from '@blockly/plugin-strict-connection-checker';
// Inject Blockly.
const workspace = Blockly.inject('blocklyDiv', {
toolbox: toolboxCategories,
plugins: {
...StrictConnectionsPluginInfo,
},
});
`
Note that this uses the spread operator (...) to copy the contents of pluginInfo into the plugins section of the struct.
This plugin exports a class, StrictConnectionChecker`, and registers it as a connection checker with Blockly. You should not need to instantiate it directly.
Apache 2.0