mirror of
https://github.com/google/blockly.git
synced 2026-01-08 17:40:09 +01:00
* chore(deps): Bump prettier from 2.8.8 to 3.0.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.8.8 to 3.0.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.0.0) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Reformat using Prettier v3.0 defaults The main change is to add trailing commas to the last line of block-formatted function calls. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Christopher Allen <cpcallen+git@google.com>
124 lines
3.3 KiB
TypeScript
124 lines
3.3 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2023 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import type {Block} from '../block.js';
|
|
import type {BlockSvg} from '../block_svg.js';
|
|
import * as browserEvents from '../browser_events.js';
|
|
import {hasBubble} from '../interfaces/i_has_bubble.js';
|
|
import type {IIcon} from '../interfaces/i_icon.js';
|
|
import {Coordinate} from '../utils/coordinate.js';
|
|
import * as dom from '../utils/dom.js';
|
|
import {Size} from '../utils/size.js';
|
|
import {Svg} from '../utils/svg.js';
|
|
import type {IconType} from './icon_types.js';
|
|
import * as deprecation from '../utils/deprecation.js';
|
|
|
|
/**
|
|
* The abstract icon class. Icons are visual elements that live in the top-start
|
|
* corner of the block. Usually they provide more "meta" information about a
|
|
* block (such as warnings or comments) as opposed to fields, which provide
|
|
* "actual" information, related to how a block functions.
|
|
*/
|
|
export abstract class Icon implements IIcon {
|
|
/**
|
|
* The position of this icon relative to its blocks top-start,
|
|
* in workspace units.
|
|
*/
|
|
protected offsetInBlock: Coordinate = new Coordinate(0, 0);
|
|
|
|
/** The position of this icon in workspace coordinates. */
|
|
protected workspaceLocation: Coordinate = new Coordinate(0, 0);
|
|
|
|
/** The root svg element visually representing this icon. */
|
|
protected svgRoot: SVGGElement | null = null;
|
|
|
|
constructor(protected sourceBlock: Block) {}
|
|
|
|
getType(): IconType<IIcon> {
|
|
throw new Error('Icons must implement getType');
|
|
}
|
|
|
|
initView(pointerdownListener: (e: PointerEvent) => void): void {
|
|
if (this.svgRoot) return; // The icon has already been initialized.
|
|
|
|
const svgBlock = this.sourceBlock as BlockSvg;
|
|
this.svgRoot = dom.createSvgElement(Svg.G, {'class': 'blocklyIconGroup'});
|
|
svgBlock.getSvgRoot().appendChild(this.svgRoot);
|
|
this.updateSvgRootOffset();
|
|
browserEvents.conditionalBind(
|
|
this.svgRoot,
|
|
'pointerdown',
|
|
this,
|
|
pointerdownListener,
|
|
);
|
|
}
|
|
|
|
dispose(): void {
|
|
dom.removeNode(this.svgRoot);
|
|
}
|
|
|
|
getWeight(): number {
|
|
return -1;
|
|
}
|
|
|
|
getSize(): Size {
|
|
return new Size(0, 0);
|
|
}
|
|
|
|
applyColour(): void {}
|
|
|
|
updateEditable(): void {}
|
|
|
|
updateCollapsed(): void {
|
|
if (!this.svgRoot) return;
|
|
if (this.sourceBlock.isCollapsed()) {
|
|
this.svgRoot.style.display = 'none';
|
|
} else {
|
|
this.svgRoot.style.display = 'block';
|
|
}
|
|
if (hasBubble(this)) {
|
|
this.setBubbleVisible(false);
|
|
}
|
|
}
|
|
|
|
hideForInsertionMarker(): void {
|
|
if (!this.svgRoot) return;
|
|
this.svgRoot.style.display = 'none';
|
|
}
|
|
|
|
isShownWhenCollapsed(): boolean {
|
|
return false;
|
|
}
|
|
|
|
setOffsetInBlock(offset: Coordinate): void {
|
|
this.offsetInBlock = offset;
|
|
this.updateSvgRootOffset();
|
|
}
|
|
|
|
private updateSvgRootOffset(): void {
|
|
this.svgRoot?.setAttribute(
|
|
'transform',
|
|
`translate(${this.offsetInBlock.x}, ${this.offsetInBlock.y})`,
|
|
);
|
|
}
|
|
|
|
onLocationChange(blockOrigin: Coordinate): void {
|
|
this.workspaceLocation = Coordinate.sum(blockOrigin, this.offsetInBlock);
|
|
}
|
|
|
|
onClick(): void {}
|
|
|
|
/**
|
|
* Sets the visibility of the icon's bubble if one exists.
|
|
*
|
|
* @deprecated Use `setBubbleVisible` instead. To be removed in v11.
|
|
*/
|
|
setVisible(visibility: boolean): void {
|
|
deprecation.warn('setVisible', 'v10', 'v11', 'setBubbleVisible');
|
|
if (hasBubble(this)) this.setBubbleVisible(visibility);
|
|
}
|
|
}
|