mirror of
https://github.com/google/blockly.git
synced 2026-05-13 07:30:10 +02:00
f678531389
* chore: remove AnyDuringMigration from events * chore: format * chore: lint * chore: fix tests * fix: correct types for JSON properties * chore: fix tests * refactor: replace exclamation markers with errors * chore: fix build and tests * chore: set event types as members, rather than in constructor * chore: update comment * chore: export new types * chore: format * chore: remove unnecessary override * chore: change how we're overriding isBlank * chore: remove unnecessary ? * chore: remove non-null assertion in block move event * chore: format * chore: revert changes to isNull * chore: format
82 lines
2.0 KiB
TypeScript
82 lines
2.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Events fired as a result of selecting an item on the toolbox.
|
|
*
|
|
* @class
|
|
*/
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Events.ToolboxItemSelect');
|
|
|
|
import * as registry from '../registry.js';
|
|
import {AbstractEventJson} from './events_abstract.js';
|
|
import {UiBase} from './events_ui_base.js';
|
|
import * as eventUtils from './utils.js';
|
|
|
|
|
|
/**
|
|
* Class for a toolbox item select event.
|
|
*
|
|
* @alias Blockly.Events.ToolboxItemSelect
|
|
*/
|
|
export class ToolboxItemSelect extends UiBase {
|
|
oldItem?: string;
|
|
newItem?: string;
|
|
override type = eventUtils.TOOLBOX_ITEM_SELECT;
|
|
|
|
/**
|
|
* @param opt_oldItem The previously selected toolbox item.
|
|
* Undefined for a blank event.
|
|
* @param opt_newItem The newly selected toolbox item. Undefined for a blank
|
|
* event.
|
|
* @param opt_workspaceId The workspace identifier for this event.
|
|
* Undefined for a blank event.
|
|
*/
|
|
constructor(
|
|
opt_oldItem?: string|null, opt_newItem?: string|null,
|
|
opt_workspaceId?: string) {
|
|
super(opt_workspaceId);
|
|
|
|
/** The previously selected toolbox item. */
|
|
this.oldItem = opt_oldItem ?? undefined;
|
|
|
|
/** The newly selected toolbox item. */
|
|
this.newItem = opt_newItem ?? undefined;
|
|
}
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
*
|
|
* @returns JSON representation.
|
|
*/
|
|
override toJson(): ToolboxItemSelectJson {
|
|
const json = super.toJson() as ToolboxItemSelectJson;
|
|
json['oldItem'] = this.oldItem;
|
|
json['newItem'] = this.newItem;
|
|
return json;
|
|
}
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
*
|
|
* @param json JSON representation.
|
|
*/
|
|
override fromJson(json: ToolboxItemSelectJson) {
|
|
super.fromJson(json);
|
|
this.oldItem = json['oldItem'];
|
|
this.newItem = json['newItem'];
|
|
}
|
|
}
|
|
|
|
export interface ToolboxItemSelectJson extends AbstractEventJson {
|
|
oldItem?: string;
|
|
newItem?: string;
|
|
}
|
|
|
|
registry.register(
|
|
registry.Type.EVENT, eventUtils.TOOLBOX_ITEM_SELECT, ToolboxItemSelect);
|