/** * @license * Copyright 2018 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Events fired as a result of UI actions in Blockly's editor. * @author fraser@google.com (Neil Fraser) */ 'use strict'; goog.provide('Blockly.Events.Ui'); goog.provide('Blockly.Events.UiBase'); goog.require('Blockly.Events'); goog.require('Blockly.Events.Abstract'); goog.require('Blockly.registry'); goog.require('Blockly.utils.object'); goog.requireType('Blockly.Block'); /** * Base class for a UI event. * UI events are events that don't need to be sent over the wire for multi-user * editing to work (e.g. scrolling the workspace, zooming, opening toolbox * categories). * UI events do not undo or redo. * @param {string=} opt_workspaceId The workspace identifier for this event. * Undefined for a blank event. * @extends {Blockly.Events.Abstract} * @constructor */ Blockly.Events.UiBase = function(opt_workspaceId) { Blockly.Events.UiBase.superClass_.constructor.call(this); /** * Whether or not the event is blank (to be populated by fromJson). * @type {boolean} */ this.isBlank = typeof opt_workspaceId == 'undefined'; /** * The workspace identifier for this event. * @type {string} */ this.workspaceId = opt_workspaceId ? opt_workspaceId : ''; // UI events do not undo or redo. this.recordUndo = false; }; Blockly.utils.object.inherits(Blockly.Events.UiBase, Blockly.Events.Abstract); /** * Whether or not the event is a UI event. * @type {boolean} */ Blockly.Events.UiBase.prototype.isUiEvent = true; /** * Class for a UI event. * @param {?Blockly.Block=} opt_block The affected block. Null for UI events * that do not have an associated block. Undefined for a blank event. * @param {string=} opt_element One of 'selected', 'comment', 'mutatorOpen', * etc. * @param {*=} opt_oldValue Previous value of element. * @param {*=} opt_newValue New value of element. * @extends {Blockly.Events.UiBase} * @deprecated December 2020. Instead use a more specific UI event. * @constructor */ Blockly.Events.Ui = function(opt_block, opt_element, opt_oldValue, opt_newValue) { var workspaceId = opt_block ? opt_block.workspace.id : undefined; Blockly.Events.Ui.superClass_.constructor.call(this, workspaceId); this.blockId = opt_block ? opt_block.id : null; this.element = typeof opt_element == 'undefined' ? '' : opt_element; this.oldValue = typeof opt_oldValue == 'undefined' ? '' : opt_oldValue; this.newValue = typeof opt_newValue == 'undefined' ? '' : opt_newValue; }; Blockly.utils.object.inherits(Blockly.Events.Ui, Blockly.Events.UiBase); /** * Type of this event. * @type {string} */ Blockly.Events.Ui.prototype.type = Blockly.Events.UI; /** * Encode the event as JSON. * @return {!Object} JSON representation. */ Blockly.Events.Ui.prototype.toJson = function() { var json = Blockly.Events.Ui.superClass_.toJson.call(this); json['element'] = this.element; if (this.newValue !== undefined) { json['newValue'] = this.newValue; } if (this.blockId) { json['blockId'] = this.blockId; } return json; }; /** * Decode the JSON event. * @param {!Object} json JSON representation. */ Blockly.Events.Ui.prototype.fromJson = function(json) { Blockly.Events.Ui.superClass_.fromJson.call(this, json); this.element = json['element']; this.newValue = json['newValue']; this.blockId = json['blockId']; }; Blockly.registry.register(Blockly.registry.Type.EVENT, Blockly.Events.UI, Blockly.Events.Ui);