mirror of
https://github.com/google/blockly.git
synced 2026-05-12 23:20:10 +02:00
f678531389
* chore: remove AnyDuringMigration from events * chore: format * chore: lint * chore: fix tests * fix: correct types for JSON properties * chore: fix tests * refactor: replace exclamation markers with errors * chore: fix build and tests * chore: set event types as members, rather than in constructor * chore: update comment * chore: export new types * chore: format * chore: remove unnecessary override * chore: change how we're overriding isBlank * chore: remove unnecessary ? * chore: remove non-null assertion in block move event * chore: format * chore: revert changes to isNull * chore: format
98 lines
2.5 KiB
TypeScript
98 lines
2.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Events fired as a result of UI click in Blockly's editor.
|
|
*
|
|
* @class
|
|
*/
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Events.Click');
|
|
|
|
import type {Block} from '../block.js';
|
|
import * as registry from '../registry.js';
|
|
import {AbstractEventJson} from './events_abstract.js';
|
|
|
|
import {UiBase} from './events_ui_base.js';
|
|
import * as eventUtils from './utils.js';
|
|
|
|
|
|
/**
|
|
* Class for a click event.
|
|
*
|
|
* @alias Blockly.Events.Click
|
|
*/
|
|
export class Click extends UiBase {
|
|
blockId?: string;
|
|
targetType?: ClickTarget;
|
|
override type = eventUtils.CLICK;
|
|
|
|
/**
|
|
* @param opt_block The affected block. Null for click events that do not have
|
|
* an associated block (i.e. workspace click). Undefined for a blank
|
|
* event.
|
|
* @param opt_workspaceId The workspace identifier for this event.
|
|
* Not used if block is passed. Undefined for a blank event.
|
|
* @param opt_targetType The type of element targeted by this click event.
|
|
* Undefined for a blank event.
|
|
*/
|
|
constructor(
|
|
opt_block?: Block|null, opt_workspaceId?: string|null,
|
|
opt_targetType?: ClickTarget) {
|
|
let workspaceId = opt_block ? opt_block.workspace.id : opt_workspaceId;
|
|
if (workspaceId === null) {
|
|
workspaceId = undefined;
|
|
}
|
|
super(workspaceId);
|
|
|
|
this.blockId = opt_block ? opt_block.id : undefined;
|
|
|
|
/** The type of element targeted by this click event. */
|
|
this.targetType = opt_targetType;
|
|
}
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
*
|
|
* @returns JSON representation.
|
|
*/
|
|
override toJson(): ClickJson {
|
|
const json = super.toJson() as ClickJson;
|
|
if (!this.targetType) {
|
|
throw new Error(
|
|
'The click target type is undefined. Either pass a block to ' +
|
|
'the constructor, or call fromJson');
|
|
}
|
|
json['targetType'] = this.targetType;
|
|
json['blockId'] = this.blockId;
|
|
return json;
|
|
}
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
*
|
|
* @param json JSON representation.
|
|
*/
|
|
override fromJson(json: ClickJson) {
|
|
super.fromJson(json);
|
|
this.targetType = json['targetType'];
|
|
this.blockId = json['blockId'];
|
|
}
|
|
}
|
|
|
|
export enum ClickTarget {
|
|
BLOCK = 'block',
|
|
WORKSPACE = 'workspace',
|
|
ZOOM_CONTROLS = 'zoom_controls',
|
|
}
|
|
|
|
export interface ClickJson extends AbstractEventJson {
|
|
targetType: ClickTarget;
|
|
blockId?: string;
|
|
}
|
|
|
|
registry.register(registry.Type.EVENT, eventUtils.CLICK, Click);
|