mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
* feat: Invalid Blocks * Rename the new json property from invalid to invalidReasons. * Merged isValid into isEnabled. * Minor fixes. * More minor fixes. * Reverting some stuff that didn't need to change. * Addressing PR feedback. * Update the BlockInfo interface to match State. * Make BlockChange.disabledReason private.
260 lines
7.4 KiB
TypeScript
260 lines
7.4 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2018 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Class for a block change event.
|
|
*
|
|
* @class
|
|
*/
|
|
// Former goog.module ID: Blockly.Events.BlockChange
|
|
|
|
import type {Block} from '../block.js';
|
|
import type {BlockSvg} from '../block_svg.js';
|
|
import {IconType} from '../icons/icon_types.js';
|
|
import {hasBubble} from '../interfaces/i_has_bubble.js';
|
|
import {MANUALLY_DISABLED} from '../constants.js';
|
|
import * as registry from '../registry.js';
|
|
import * as utilsXml from '../utils/xml.js';
|
|
import {Workspace} from '../workspace.js';
|
|
import * as Xml from '../xml.js';
|
|
|
|
import {BlockBase, BlockBaseJson} from './events_block_base.js';
|
|
import * as eventUtils from './utils.js';
|
|
|
|
/**
|
|
* Notifies listeners when some element of a block has changed (e.g.
|
|
* field values, comments, etc).
|
|
*/
|
|
export class BlockChange extends BlockBase {
|
|
override type = eventUtils.BLOCK_CHANGE;
|
|
/**
|
|
* The element that changed; one of 'field', 'comment', 'collapsed',
|
|
* 'disabled', 'inline', or 'mutation'
|
|
*/
|
|
element?: string;
|
|
|
|
/** The name of the field that changed, if this is a change to a field. */
|
|
name?: string;
|
|
|
|
/** The original value of the element. */
|
|
oldValue: unknown;
|
|
|
|
/** The new value of the element. */
|
|
newValue: unknown;
|
|
|
|
/**
|
|
* If element is 'disabled', this is the language-neutral identifier of the
|
|
* reason why the block was or was not disabled.
|
|
*/
|
|
private disabledReason?: string;
|
|
|
|
/**
|
|
* @param opt_block The changed block. Undefined for a blank event.
|
|
* @param opt_element One of 'field', 'comment', 'disabled', etc.
|
|
* @param opt_name Name of input or field affected, or null.
|
|
* @param opt_oldValue Previous value of element.
|
|
* @param opt_newValue New value of element.
|
|
*/
|
|
constructor(
|
|
opt_block?: Block,
|
|
opt_element?: string,
|
|
opt_name?: string | null,
|
|
opt_oldValue?: unknown,
|
|
opt_newValue?: unknown,
|
|
) {
|
|
super(opt_block);
|
|
|
|
if (!opt_block) {
|
|
return; // Blank event to be populated by fromJson.
|
|
}
|
|
this.element = opt_element;
|
|
this.name = opt_name || undefined;
|
|
this.oldValue = opt_oldValue;
|
|
this.newValue = opt_newValue;
|
|
}
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
*
|
|
* @returns JSON representation.
|
|
*/
|
|
override toJson(): BlockChangeJson {
|
|
const json = super.toJson() as BlockChangeJson;
|
|
if (!this.element) {
|
|
throw new Error(
|
|
'The changed element is undefined. Either pass an ' +
|
|
'element to the constructor, or call fromJson',
|
|
);
|
|
}
|
|
json['element'] = this.element;
|
|
json['name'] = this.name;
|
|
json['oldValue'] = this.oldValue;
|
|
json['newValue'] = this.newValue;
|
|
if (this.disabledReason) {
|
|
json['disabledReason'] = this.disabledReason;
|
|
}
|
|
return json;
|
|
}
|
|
|
|
/**
|
|
* Deserializes the JSON event.
|
|
*
|
|
* @param event The event to append new properties to. Should be a subclass
|
|
* of BlockChange, but we can't specify that due to the fact that
|
|
* parameters to static methods in subclasses must be supertypes of
|
|
* parameters to static methods in superclasses.
|
|
* @internal
|
|
*/
|
|
static fromJson(
|
|
json: BlockChangeJson,
|
|
workspace: Workspace,
|
|
event?: any,
|
|
): BlockChange {
|
|
const newEvent = super.fromJson(
|
|
json,
|
|
workspace,
|
|
event ?? new BlockChange(),
|
|
) as BlockChange;
|
|
newEvent.element = json['element'];
|
|
newEvent.name = json['name'];
|
|
newEvent.oldValue = json['oldValue'];
|
|
newEvent.newValue = json['newValue'];
|
|
if (json['disabledReason'] !== undefined) {
|
|
newEvent.disabledReason = json['disabledReason'];
|
|
}
|
|
return newEvent;
|
|
}
|
|
|
|
/**
|
|
* Set the language-neutral identifier for the reason why the block was or was
|
|
* not disabled. This is only valid for events where element is 'disabled'.
|
|
* Defaults to 'MANUALLY_DISABLED'.
|
|
*
|
|
* @param disabledReason The identifier of the reason why the block was or was
|
|
* not disabled.
|
|
*/
|
|
setDisabledReason(disabledReason: string) {
|
|
if (this.element !== 'disabled') {
|
|
throw new Error(
|
|
'Cannot set the disabled reason for a BlockChange event if the ' +
|
|
'element is not "disabled".',
|
|
);
|
|
}
|
|
this.disabledReason = disabledReason;
|
|
}
|
|
|
|
/**
|
|
* Does this event record any change of state?
|
|
*
|
|
* @returns False if something changed.
|
|
*/
|
|
override isNull(): boolean {
|
|
return this.oldValue === this.newValue;
|
|
}
|
|
|
|
/**
|
|
* Run a change event.
|
|
*
|
|
* @param forward True if run forward, false if run backward (undo).
|
|
*/
|
|
override run(forward: boolean) {
|
|
const workspace = this.getEventWorkspace_();
|
|
if (!this.blockId) {
|
|
throw new Error(
|
|
'The block ID is undefined. Either pass a block to ' +
|
|
'the constructor, or call fromJson',
|
|
);
|
|
}
|
|
const block = workspace.getBlockById(this.blockId);
|
|
if (!block) {
|
|
throw new Error(
|
|
'The associated block is undefined. Either pass a ' +
|
|
'block to the constructor, or call fromJson',
|
|
);
|
|
}
|
|
// Assume the block is rendered so that then we can check.
|
|
const icon = block.getIcon(IconType.MUTATOR);
|
|
if (icon && hasBubble(icon) && icon.bubbleIsVisible()) {
|
|
// Close the mutator (if open) since we don't want to update it.
|
|
icon.setBubbleVisible(false);
|
|
}
|
|
const value = forward ? this.newValue : this.oldValue;
|
|
switch (this.element) {
|
|
case 'field': {
|
|
const field = block.getField(this.name!);
|
|
if (field) {
|
|
field.setValue(value);
|
|
} else {
|
|
console.warn("Can't set non-existent field: " + this.name);
|
|
}
|
|
break;
|
|
}
|
|
case 'comment':
|
|
block.setCommentText((value as string) || null);
|
|
break;
|
|
case 'collapsed':
|
|
block.setCollapsed(!!value);
|
|
break;
|
|
case 'disabled':
|
|
block.setDisabledReason(
|
|
!!value,
|
|
this.disabledReason ?? MANUALLY_DISABLED,
|
|
);
|
|
break;
|
|
case 'inline':
|
|
block.setInputsInline(!!value);
|
|
break;
|
|
case 'mutation': {
|
|
const oldState = BlockChange.getExtraBlockState_(block as BlockSvg);
|
|
if (block.loadExtraState) {
|
|
block.loadExtraState(JSON.parse((value as string) || '{}'));
|
|
} else if (block.domToMutation) {
|
|
block.domToMutation(
|
|
utilsXml.textToDom((value as string) || '<mutation/>'),
|
|
);
|
|
}
|
|
eventUtils.fire(
|
|
new BlockChange(block, 'mutation', null, oldState, value),
|
|
);
|
|
break;
|
|
}
|
|
default:
|
|
console.warn('Unknown change type: ' + this.element);
|
|
}
|
|
}
|
|
|
|
// TODO (#5397): Encapsulate this in the BlocklyMutationChange event when
|
|
// refactoring change events.
|
|
/**
|
|
* Returns the extra state of the given block (either as XML or a JSO,
|
|
* depending on the block's definition).
|
|
*
|
|
* @param block The block to get the extra state of.
|
|
* @returns A stringified version of the extra state of the given block.
|
|
* @internal
|
|
*/
|
|
static getExtraBlockState_(block: BlockSvg): string {
|
|
if (block.saveExtraState) {
|
|
const state = block.saveExtraState(true);
|
|
return state ? JSON.stringify(state) : '';
|
|
} else if (block.mutationToDom) {
|
|
const state = block.mutationToDom();
|
|
return state ? Xml.domToText(state) : '';
|
|
}
|
|
return '';
|
|
}
|
|
}
|
|
|
|
export interface BlockChangeJson extends BlockBaseJson {
|
|
element: string;
|
|
name?: string;
|
|
newValue: unknown;
|
|
oldValue: unknown;
|
|
disabledReason?: string;
|
|
}
|
|
|
|
registry.register(registry.Type.EVENT, eventUtils.CHANGE, BlockChange);
|