mirror of
https://github.com/google/blockly.git
synced 2026-01-08 09:30:06 +01:00
81 lines
2.1 KiB
JavaScript
81 lines
2.1 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Events fired as a result of selecting an item on the toolbox.
|
|
* @author kozbial@google.com (Monica Kozbial)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.module('Blockly.Events.ToolboxItemSelect');
|
|
goog.module.declareLegacyNamespace();
|
|
|
|
const Events = goog.require('Blockly.Events');
|
|
const UiBase = goog.require('Blockly.Events.UiBase');
|
|
const object = goog.require('Blockly.utils.object');
|
|
const registry = goog.require('Blockly.registry');
|
|
|
|
|
|
/**
|
|
* Class for a toolbox item select event.
|
|
* @param {?string=} opt_oldItem The previously selected toolbox item. Undefined
|
|
* for a blank event.
|
|
* @param {?string=} opt_newItem The newly selected toolbox item. Undefined for
|
|
* a blank event.
|
|
* @param {string=} opt_workspaceId The workspace identifier for this event.
|
|
* Undefined for a blank event.
|
|
* @extends {UiBase}
|
|
* @constructor
|
|
*/
|
|
const ToolboxItemSelect = function(opt_oldItem, opt_newItem, opt_workspaceId) {
|
|
ToolboxItemSelect.superClass_.constructor.call(this, opt_workspaceId);
|
|
|
|
/**
|
|
* The previously selected toolbox item.
|
|
* @type {?string|undefined}
|
|
*/
|
|
this.oldItem = opt_oldItem;
|
|
|
|
/**
|
|
* The newly selected toolbox item.
|
|
* @type {?string|undefined}
|
|
*/
|
|
this.newItem = opt_newItem;
|
|
};
|
|
object.inherits(ToolboxItemSelect, UiBase);
|
|
|
|
/**
|
|
* Type of this event.
|
|
* @type {string}
|
|
*/
|
|
ToolboxItemSelect.prototype.type = Events.TOOLBOX_ITEM_SELECT;
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
* @return {!Object} JSON representation.
|
|
*/
|
|
ToolboxItemSelect.prototype.toJson = function() {
|
|
const json = ToolboxItemSelect.superClass_.toJson.call(this);
|
|
json['oldItem'] = this.oldItem;
|
|
json['newItem'] = this.newItem;
|
|
return json;
|
|
};
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
* @param {!Object} json JSON representation.
|
|
*/
|
|
ToolboxItemSelect.prototype.fromJson = function(json) {
|
|
ToolboxItemSelect.superClass_.fromJson.call(this, json);
|
|
this.oldItem = json['oldItem'];
|
|
this.newItem = json['newItem'];
|
|
};
|
|
|
|
registry.register(
|
|
registry.Type.EVENT, Events.TOOLBOX_ITEM_SELECT, ToolboxItemSelect);
|
|
|
|
exports = ToolboxItemSelect;
|