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
82 lines
2.1 KiB
TypeScript
82 lines
2.1 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2019 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* Class for a finished loading workspace event.
|
|
*
|
|
* @class
|
|
*/
|
|
import * as goog from '../../closure/goog/goog.js';
|
|
goog.declareModuleId('Blockly.Events.FinishedLoading');
|
|
|
|
import * as registry from '../registry.js';
|
|
import type {Workspace} from '../workspace.js';
|
|
import {Abstract as AbstractEvent, AbstractEventJson} from './events_abstract.js';
|
|
import * as eventUtils from './utils.js';
|
|
|
|
|
|
/**
|
|
* Class for a finished loading event.
|
|
* Used to notify the developer when the workspace has finished loading (i.e
|
|
* domToWorkspace).
|
|
* Finished loading events do not record undo or redo.
|
|
*
|
|
* @alias Blockly.Events.FinishedLoading
|
|
*/
|
|
export class FinishedLoading extends AbstractEvent {
|
|
override isBlank = true;
|
|
override recordUndo = false;
|
|
override type = eventUtils.FINISHED_LOADING;
|
|
|
|
/**
|
|
* @param opt_workspace The workspace that has finished loading. Undefined
|
|
* for a blank event.
|
|
*/
|
|
constructor(opt_workspace?: Workspace) {
|
|
super();
|
|
/** Whether or not the event is blank (to be populated by fromJson). */
|
|
this.isBlank = !!opt_workspace;
|
|
|
|
if (!opt_workspace) return;
|
|
|
|
/** The workspace identifier for this event. */
|
|
this.workspaceId = opt_workspace.id;
|
|
}
|
|
|
|
/**
|
|
* Encode the event as JSON.
|
|
*
|
|
* @returns JSON representation.
|
|
*/
|
|
override toJson(): FinishedLoadingJson {
|
|
const json = super.toJson() as FinishedLoadingJson;
|
|
if (!this.workspaceId) {
|
|
throw new Error(
|
|
'The workspace ID is undefined. Either pass a workspace to ' +
|
|
'the constructor, or call fromJson');
|
|
}
|
|
json['workspaceId'] = this.workspaceId;
|
|
return json;
|
|
}
|
|
|
|
/**
|
|
* Decode the JSON event.
|
|
*
|
|
* @param json JSON representation.
|
|
*/
|
|
override fromJson(json: FinishedLoadingJson) {
|
|
super.fromJson(json);
|
|
this.workspaceId = json['workspaceId'];
|
|
}
|
|
}
|
|
|
|
export interface FinishedLoadingJson extends AbstractEventJson {
|
|
workspaceId: string;
|
|
}
|
|
|
|
registry.register(
|
|
registry.Type.EVENT, eventUtils.FINISHED_LOADING, FinishedLoading);
|