/** * @license * Copyright 2018 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Class for a variable creation event. */ 'use strict'; /** * Class for a variable creation event. * @class */ goog.module('Blockly.Events.VarCreate'); const eventUtils = goog.require('Blockly.Events.utils'); const registry = goog.require('Blockly.registry'); const {VarBase} = goog.require('Blockly.Events.VarBase'); /* eslint-disable-next-line no-unused-vars */ const {VariableModel} = goog.requireType('Blockly.VariableModel'); /** * Class for a variable creation event. * @extends {VarBase} * @alias Blockly.Events.VarCreate */ class VarCreate extends VarBase { /** * @param {!VariableModel=} opt_variable The created variable. Undefined * for a blank event. */ constructor(opt_variable) { super(opt_variable); /** * Type of this event. * @type {string} */ this.type = eventUtils.VAR_CREATE; if (!opt_variable) { return; // Blank event to be populated by fromJson. } this.varType = opt_variable.type; this.varName = opt_variable.name; } /** * Encode the event as JSON. * @return {!Object} JSON representation. */ toJson() { const json = super.toJson(); json['varType'] = this.varType; json['varName'] = this.varName; return json; } /** * Decode the JSON event. * @param {!Object} json JSON representation. */ fromJson(json) { super.fromJson(json); this.varType = json['varType']; this.varName = json['varName']; } /** * Run a variable creation event. * @param {boolean} forward True if run forward, false if run backward (undo). */ run(forward) { const workspace = this.getEventWorkspace_(); if (forward) { workspace.createVariable(this.varName, this.varType, this.varId); } else { workspace.deleteVariableById(this.varId); } } } registry.register(registry.Type.EVENT, eventUtils.VAR_CREATE, VarCreate); exports.VarCreate = VarCreate;