mirror of
https://github.com/google/blockly.git
synced 2026-01-19 14:57:12 +01:00
* Migrate core/events/events_selected.js to ES6 const/let * Migrate core/events/events_selected.js to goog.module * Migrate core/events/events_selected.js to named requires * clang-format core/events/events_selected.js
80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Events fired as a result of element select action.
|
|
* @author kozbial@google.com (Monica Kozbial)
|
|
*/
|
|
'use strict';
|
|
|
|
goog.module('Blockly.Events.Selected');
|
|
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 selected event.
|
|
* @param {?string=} opt_oldElementId The ID of the previously selected
|
|
* element. Null if no element last selected. Undefined for a blank event.
|
|
* @param {?string=} opt_newElementId The ID of the selected element. Null if no
|
|
* element currently selected (deselect). Undefined for a blank event.
|
|
* @param {string=} opt_workspaceId The workspace identifier for this event.
|
|
* Null if no element previously selected. Undefined for a blank event.
|
|
* @extends {UiBase}
|
|
* @constructor
|
|
*/
|
|
const Selected = function(opt_oldElementId, opt_newElementId, opt_workspaceId) {
|
|
Selected.superClass_.constructor.call(this, opt_workspaceId);
|
|
|
|
/**
|
|
* The id of the last selected element.
|
|
* @type {?string|undefined}
|
|
*/
|
|
this.oldElementId = opt_oldElementId;
|
|
|
|
/**
|
|
* The id of the selected element.
|
|
* @type {?string|undefined}
|
|
*/
|
|
this.newElementId = opt_newElementId;
|
|
};
|
|
object.inherits(Selected, UiBase);
|
|
|
|
/**
|
|
* Type of this event.
|
|
* @type {string}
|
|
*/
|
|
Selected.prototype.type = Events.SELECTED;
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
* @return {!Object} JSON representation.
|
|
*/
|
|
Selected.prototype.toJson = function() {
|
|
const json = Selected.superClass_.toJson.call(this);
|
|
json['oldElementId'] = this.oldElementId;
|
|
json['newElementId'] = this.newElementId;
|
|
return json;
|
|
};
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
* @param {!Object} json JSON representation.
|
|
*/
|
|
Selected.prototype.fromJson = function(json) {
|
|
Selected.superClass_.fromJson.call(this, json);
|
|
this.oldElementId = json['oldElementId'];
|
|
this.newElementId = json['newElementId'];
|
|
};
|
|
|
|
registry.register(registry.Type.EVENT, Events.SELECTED, Selected);
|
|
|
|
exports = Selected;
|