mirror of
https://github.com/google/blockly.git
synced 2026-01-06 08:30:13 +01:00
chore: rename all JS files to TS files (#6297)
This commit is contained in:
189
core/contextmenu_registry.ts
Normal file
189
core/contextmenu_registry.ts
Normal file
@@ -0,0 +1,189 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2020 Google LLC
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @fileoverview Registry for context menu option items.
|
||||
*/
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Registry for context menu option items.
|
||||
* @class
|
||||
*/
|
||||
goog.module('Blockly.ContextMenuRegistry');
|
||||
|
||||
/* eslint-disable-next-line no-unused-vars */
|
||||
const {BlockSvg} = goog.requireType('Blockly.BlockSvg');
|
||||
/* eslint-disable-next-line no-unused-vars */
|
||||
const {WorkspaceSvg} = goog.requireType('Blockly.WorkspaceSvg');
|
||||
|
||||
|
||||
/**
|
||||
* Class for the registry of context menu items. This is intended to be a
|
||||
* singleton. You should not create a new instance, and only access this class
|
||||
* from ContextMenuRegistry.registry.
|
||||
* @alias Blockly.ContextMenuRegistry
|
||||
*/
|
||||
class ContextMenuRegistry {
|
||||
/**
|
||||
* Resets the existing singleton instance of ContextMenuRegistry.
|
||||
*/
|
||||
constructor() {
|
||||
this.reset();
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear and recreate the registry.
|
||||
*/
|
||||
reset() {
|
||||
/**
|
||||
* Registry of all registered RegistryItems, keyed by ID.
|
||||
* @type {!Object<string, !ContextMenuRegistry.RegistryItem>}
|
||||
* @private
|
||||
*/
|
||||
this.registry_ = Object.create(null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers a RegistryItem.
|
||||
* @param {!ContextMenuRegistry.RegistryItem} item Context menu item to
|
||||
* register.
|
||||
* @throws {Error} if an item with the given ID already exists.
|
||||
*/
|
||||
register(item) {
|
||||
if (this.registry_[item.id]) {
|
||||
throw Error('Menu item with ID "' + item.id + '" is already registered.');
|
||||
}
|
||||
this.registry_[item.id] = item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Unregisters a RegistryItem with the given ID.
|
||||
* @param {string} id The ID of the RegistryItem to remove.
|
||||
* @throws {Error} if an item with the given ID does not exist.
|
||||
*/
|
||||
unregister(id) {
|
||||
if (!this.registry_[id]) {
|
||||
throw new Error('Menu item with ID "' + id + '" not found.');
|
||||
}
|
||||
delete this.registry_[id];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {string} id The ID of the RegistryItem to get.
|
||||
* @return {?ContextMenuRegistry.RegistryItem} RegistryItem or null if not
|
||||
* found
|
||||
*/
|
||||
getItem(id) {
|
||||
return this.registry_[id] || null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the valid context menu options for the given scope type (e.g. block or
|
||||
* workspace) and scope. Blocks are only shown if the preconditionFn shows
|
||||
* they should not be hidden.
|
||||
* @param {!ContextMenuRegistry.ScopeType} scopeType Type of scope where menu
|
||||
* should be shown (e.g. on a block or on a workspace)
|
||||
* @param {!ContextMenuRegistry.Scope} scope Current scope of context menu
|
||||
* (i.e., the exact workspace or block being clicked on)
|
||||
* @return {!Array<!ContextMenuRegistry.ContextMenuOption>} the list of
|
||||
* ContextMenuOptions
|
||||
*/
|
||||
getContextMenuOptions(scopeType, scope) {
|
||||
const menuOptions = [];
|
||||
const registry = this.registry_;
|
||||
Object.keys(registry).forEach(function(id) {
|
||||
const item = registry[id];
|
||||
if (scopeType === item.scopeType) {
|
||||
const precondition = item.preconditionFn(scope);
|
||||
if (precondition !== 'hidden') {
|
||||
const displayText = typeof item.displayText === 'function' ?
|
||||
item.displayText(scope) :
|
||||
item.displayText;
|
||||
/** @type {!ContextMenuRegistry.ContextMenuOption} */
|
||||
const menuOption = {
|
||||
text: displayText,
|
||||
enabled: (precondition === 'enabled'),
|
||||
callback: item.callback,
|
||||
scope: scope,
|
||||
weight: item.weight,
|
||||
};
|
||||
menuOptions.push(menuOption);
|
||||
}
|
||||
}
|
||||
});
|
||||
menuOptions.sort(function(a, b) {
|
||||
return a.weight - b.weight;
|
||||
});
|
||||
return menuOptions;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Where this menu item should be rendered. If the menu item should be rendered
|
||||
* in multiple scopes, e.g. on both a block and a workspace, it should be
|
||||
* registered for each scope.
|
||||
* @enum {string}
|
||||
*/
|
||||
ContextMenuRegistry.ScopeType = {
|
||||
BLOCK: 'block',
|
||||
WORKSPACE: 'workspace',
|
||||
};
|
||||
|
||||
/**
|
||||
* The actual workspace/block where the menu is being rendered. This is passed
|
||||
* to callback and displayText functions that depend on this information.
|
||||
* @typedef {{
|
||||
* block: (BlockSvg|undefined),
|
||||
* workspace: (WorkspaceSvg|undefined)
|
||||
* }}
|
||||
*/
|
||||
ContextMenuRegistry.Scope;
|
||||
|
||||
/**
|
||||
* A menu item as entered in the registry.
|
||||
* @typedef {{
|
||||
* callback: function(!ContextMenuRegistry.Scope),
|
||||
* scopeType: !ContextMenuRegistry.ScopeType,
|
||||
* displayText: ((function(!ContextMenuRegistry.Scope):string)|string),
|
||||
* preconditionFn: function(!ContextMenuRegistry.Scope):string,
|
||||
* weight: number,
|
||||
* id: string
|
||||
* }}
|
||||
*/
|
||||
ContextMenuRegistry.RegistryItem;
|
||||
|
||||
/**
|
||||
* A menu item as presented to contextmenu.js.
|
||||
* @typedef {{
|
||||
* text: string,
|
||||
* enabled: boolean,
|
||||
* callback: function(!ContextMenuRegistry.Scope),
|
||||
* scope: !ContextMenuRegistry.Scope,
|
||||
* weight: number
|
||||
* }}
|
||||
*/
|
||||
ContextMenuRegistry.ContextMenuOption;
|
||||
|
||||
/**
|
||||
* A subset of ContextMenuOption corresponding to what was publicly documented.
|
||||
* ContextMenuOption should be preferred for new code.
|
||||
* @typedef {{
|
||||
* text: string,
|
||||
* enabled: boolean,
|
||||
* callback: function(!ContextMenuRegistry.Scope),
|
||||
* }}
|
||||
*/
|
||||
ContextMenuRegistry.LegacyContextMenuOption;
|
||||
|
||||
/**
|
||||
* Singleton instance of this class. All interactions with this class should be
|
||||
* done on this object.
|
||||
* @type {!ContextMenuRegistry}
|
||||
*/
|
||||
ContextMenuRegistry.registry = new ContextMenuRegistry();
|
||||
|
||||
exports.ContextMenuRegistry = ContextMenuRegistry;
|
||||
Reference in New Issue
Block a user