@blockly/block-plus-minus
Version:
A group of blocks that replace the built-in mutator UI with a +/- based UI.
69 lines (60 loc) • 1.87 kB
JavaScript
/**
* @license
* Copyright 2020 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview A function that creates a minus button used for mutation.
*/
;
import * as Blockly from 'blockly/core';
import {getExtraBlockState} from './serialization_helper';
/**
* Creates a minus image field used for mutation.
* @param {Object=} args Untyped args passed to block.minus when the field
* is clicked.
* @returns {Blockly.FieldImage} The minus field.
*/
export function createMinusField(args = undefined) {
const minus = new Blockly.FieldImage(minusImage, 15, 15, undefined, onClick_);
/**
* Untyped args passed to block.minus when the field is clicked.
* @type {?(Object|undefined)}
* @private
*/
minus.args_ = args;
return minus;
}
/**
* Calls block.minus(args) when the minus field is clicked.
* @param {Blockly.FieldImage} minusField The field being clicked.
* @private
*/
function onClick_(minusField) {
// TODO: This is a dupe of the mutator code, anyway to unify?
const block = minusField.getSourceBlock();
if (block.isInFlyout) {
return;
}
Blockly.Events.setGroup(true);
const oldExtraState = getExtraBlockState(block);
block.minus(minusField.args_);
const newExtraState = getExtraBlockState(block);
if (oldExtraState != newExtraState) {
Blockly.Events.fire(
new Blockly.Events.BlockChange(
block,
'mutation',
null,
oldExtraState,
newExtraState,
),
);
}
Blockly.Events.setGroup(false);
}
const minusImage =
'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAw' +
'MC9zdmciIHZlcnNpb249IjEuMSIgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0Ij48cGF0aCBkPS' +
'JNMTggMTFoLTEyYy0xLjEwNCAwLTIgLjg5Ni0yIDJzLjg5NiAyIDIgMmgxMmMxLjEwNCAw' +
'IDItLjg5NiAyLTJzLS44OTYtMi0yLTJ6IiBmaWxsPSJ3aGl0ZSIgLz48L3N2Zz4K';