mirror of
https://github.com/google/blockly.git
synced 2026-01-07 09:00:11 +01:00
* fix: Move @alias onto classes instead of constructors * fix: Fix JSDoc for constructors.
91 lines
2.2 KiB
JavaScript
91 lines
2.2 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Events fired as a result of bubble open.
|
|
*/
|
|
'use strict';
|
|
|
|
/**
|
|
* Events fired as a result of bubble open.
|
|
* @class
|
|
*/
|
|
goog.module('Blockly.Events.BubbleOpen');
|
|
|
|
const eventUtils = goog.require('Blockly.Events.utils');
|
|
const registry = goog.require('Blockly.registry');
|
|
/* eslint-disable-next-line no-unused-vars */
|
|
const {BlockSvg} = goog.requireType('Blockly.BlockSvg');
|
|
const {UiBase} = goog.require('Blockly.Events.UiBase');
|
|
|
|
|
|
/**
|
|
* Class for a bubble open event.
|
|
* @extends {UiBase}
|
|
* @alias Blockly.Events.BubbleOpen
|
|
*/
|
|
class BubbleOpen extends UiBase {
|
|
/**
|
|
* @param {BlockSvg} opt_block The associated block. Undefined for a
|
|
* blank event.
|
|
* @param {boolean=} opt_isOpen Whether the bubble is opening (false if
|
|
* closing). Undefined for a blank event.
|
|
* @param {string=} opt_bubbleType The type of bubble. One of 'mutator',
|
|
* 'comment'
|
|
* or 'warning'. Undefined for a blank event.
|
|
*/
|
|
constructor(opt_block, opt_isOpen, opt_bubbleType) {
|
|
const workspaceId = opt_block ? opt_block.workspace.id : undefined;
|
|
super(workspaceId);
|
|
this.blockId = opt_block ? opt_block.id : null;
|
|
|
|
/**
|
|
* Whether the bubble is opening (false if closing).
|
|
* @type {boolean|undefined}
|
|
*/
|
|
this.isOpen = opt_isOpen;
|
|
|
|
/**
|
|
* The type of bubble. One of 'mutator', 'comment', or 'warning'.
|
|
* @type {string|undefined}
|
|
*/
|
|
this.bubbleType = opt_bubbleType;
|
|
|
|
/**
|
|
* Type of this event.
|
|
* @type {string}
|
|
*/
|
|
this.type = eventUtils.BUBBLE_OPEN;
|
|
}
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
* @return {!Object} JSON representation.
|
|
*/
|
|
toJson() {
|
|
const json = super.toJson();
|
|
json['isOpen'] = this.isOpen;
|
|
json['bubbleType'] = this.bubbleType;
|
|
json['blockId'] = this.blockId;
|
|
return json;
|
|
}
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
* @param {!Object} json JSON representation.
|
|
*/
|
|
fromJson(json) {
|
|
super.fromJson(json);
|
|
this.isOpen = json['isOpen'];
|
|
this.bubbleType = json['bubbleType'];
|
|
this.blockId = json['blockId'];
|
|
}
|
|
}
|
|
|
|
registry.register(registry.Type.EVENT, eventUtils.BUBBLE_OPEN, BubbleOpen);
|
|
|
|
exports.BubbleOpen = BubbleOpen;
|