/** * @license * Copyright 2018 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Class for comment creation event. */ 'use strict'; /** * Class for comment creation event. * @class */ goog.module('Blockly.Events.CommentCreate'); const Xml = goog.require('Blockly.Xml'); const eventUtils = goog.require('Blockly.Events.utils'); const registry = goog.require('Blockly.registry'); const {CommentBase} = goog.require('Blockly.Events.CommentBase'); /* eslint-disable-next-line no-unused-vars */ const {WorkspaceComment} = goog.requireType('Blockly.WorkspaceComment'); /** * Class for a comment creation event. * @extends {CommentBase} * @alias Blockly.Events.CommentCreate */ class CommentCreate extends CommentBase { /** * @param {!WorkspaceComment=} opt_comment The created comment. * Undefined for a blank event. */ constructor(opt_comment) { super(opt_comment); /** * Type of this event. * @type {string} */ this.type = eventUtils.COMMENT_CREATE; if (!opt_comment) { return; // Blank event to be populated by fromJson. } this.xml = opt_comment.toXmlWithXY(); } // TODO (#1266): "Full" and "minimal" serialization. /** * Encode the event as JSON. * @return {!Object} JSON representation. */ toJson() { const json = super.toJson(); json['xml'] = Xml.domToText(this.xml); return json; } /** * Decode the JSON event. * @param {!Object} json JSON representation. */ fromJson(json) { super.fromJson(json); this.xml = Xml.textToDom(json['xml']); } /** * Run a creation event. * @param {boolean} forward True if run forward, false if run backward (undo). */ run(forward) { CommentBase.CommentCreateDeleteHelper(this, forward); } } registry.register( registry.Type.EVENT, eventUtils.COMMENT_CREATE, CommentCreate); exports.CommentCreate = CommentCreate;