Files
blockly/core/icons/warning_icon.ts
Christopher Allen b0a7c004a9 refactor(build): Delete Closure Library (#7415)
* fix(build): Restore erroneously-deleted filter function

  This was deleted in PR #7406 as it was mainly being used to
  filter core/ vs. test/mocha/ deps into separate deps files -
  but it turns out also to be used for filtering error
  messages too.  Oops.

* refactor(tests): Migrate advanced compilation test to ES Modules

* refactor(build): Migrate main.js to TypeScript

  This turns out to be pretty straight forward, even if it would
  cause crashing if one actually tried to import this module
  instead of just feeding it to Closure Compiler.

* chore(build): Remove goog.declareModuleId calls

  Replace goog.declareModuleId calls with a comment recording the
  former module ID for posterity (or at least until we decide
  how to reformat the renamings file.

* chore(tests): Delete closure/goog/*

  For the moment we still need something to serve as base.js for
  the benefit of closure-make-deps, so we keep a vestigial
  base.js around, containing only the @provideGoog declaration.

* refactor(build): Remove vestigial base.js

  By changing slightly the command line arguments to
  closure-make-deps and closure-calculate-chunks the need to have
  any base.js is eliminated.

* chore: Typo fix for PR #7415
2023-08-31 00:24:47 +01:00

212 lines
5.5 KiB
TypeScript

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
// Former goog.module ID: Blockly.Warning
import type {BlockSvg} from '../block_svg.js';
import {Coordinate} from '../utils/coordinate.js';
import * as dom from '../utils/dom.js';
import * as eventUtils from '../events/utils.js';
import {Icon} from './icon.js';
import type {IHasBubble} from '../interfaces/i_has_bubble.js';
import {Rect} from '../utils/rect.js';
import {Size} from '../utils.js';
import {Svg} from '../utils/svg.js';
import {TextBubble} from '../bubbles/text_bubble.js';
import {IconType} from './icon_types.js';
/** The size of the warning icon in workspace-scale units. */
const SIZE = 17;
/**
* An icon that warns the user that something is wrong with their block.
*
* For example, this could be used to warn them about incorrect field values,
* or incorrect placement of the block (putting it somewhere it doesn't belong).
*/
export class WarningIcon extends Icon implements IHasBubble {
/** The type string used to identify this icon. */
static readonly TYPE = IconType.WARNING;
/**
* The weight this icon has relative to other icons. Icons with more positive
* weight values are rendered farther toward the end of the block.
*/
static readonly WEIGHT = 2;
/** A map of warning IDs to warning text. */
private textMap: Map<string, string> = new Map();
/** The bubble used to display the warnings to the user. */
private textBubble: TextBubble | null = null;
/** @internal */
constructor(protected readonly sourceBlock: BlockSvg) {
super(sourceBlock);
}
override getType(): IconType<WarningIcon> {
return WarningIcon.TYPE;
}
override initView(pointerdownListener: (e: PointerEvent) => void): void {
if (this.svgRoot) return; // Already initialized.
super.initView(pointerdownListener);
// Triangle with rounded corners.
dom.createSvgElement(
Svg.PATH,
{
'class': 'blocklyIconShape',
'd': 'M2,15Q-1,15 0.5,12L6.5,1.7Q8,-1 9.5,1.7L15.5,12Q17,15 14,15z',
},
this.svgRoot,
);
// Can't use a real '!' text character since different browsers and
// operating systems render it differently. Body of exclamation point.
dom.createSvgElement(
Svg.PATH,
{
'class': 'blocklyIconSymbol',
'd': 'm7,4.8v3.16l0.27,2.27h1.46l0.27,-2.27v-3.16z',
},
this.svgRoot,
);
// Dot of exclamation point.
dom.createSvgElement(
Svg.RECT,
{
'class': 'blocklyIconSymbol',
'x': '7',
'y': '11',
'height': '2',
'width': '2',
},
this.svgRoot,
);
}
override dispose() {
super.dispose();
this.textBubble?.dispose();
}
override getWeight(): number {
return WarningIcon.WEIGHT;
}
override getSize(): Size {
return new Size(SIZE, SIZE);
}
override applyColour(): void {
super.applyColour();
this.textBubble?.setColour(this.sourceBlock.style.colourPrimary);
}
override updateCollapsed(): void {
// We are shown when collapsed, so do nothing! I.e. skip the default
// behavior of hiding.
}
/** Tells blockly that this icon is shown when the block is collapsed. */
override isShownWhenCollapsed(): boolean {
return true;
}
/** Updates the location of the icon's bubble if it is open. */
override onLocationChange(blockOrigin: Coordinate): void {
super.onLocationChange(blockOrigin);
this.textBubble?.setAnchorLocation(this.getAnchorLocation());
}
/**
* Adds a warning message to this warning icon.
*
* @param text The text of the message to add.
* @param id The id of the message to add.
* @internal
*/
addMessage(text: string, id: string): this {
if (this.textMap.get(id) === text) return this;
if (text) {
this.textMap.set(id, text);
} else {
this.textMap.delete(id);
}
this.textBubble?.setText(this.getText());
return this;
}
/**
* @returns the display text for this icon. Includes all warning messages
* concatenated together with newlines.
* @internal
*/
getText(): string {
return [...this.textMap.values()].join('\n');
}
/** Toggles the visibility of the bubble. */
override onClick(): void {
super.onClick();
this.setBubbleVisible(!this.bubbleIsVisible());
}
bubbleIsVisible(): boolean {
return !!this.textBubble;
}
setBubbleVisible(visible: boolean): void {
if (this.bubbleIsVisible() === visible) return;
if (visible) {
this.textBubble = new TextBubble(
this.getText(),
this.sourceBlock.workspace,
this.getAnchorLocation(),
this.getBubbleOwnerRect(),
);
this.applyColour();
} else {
this.textBubble?.dispose();
this.textBubble = null;
}
eventUtils.fire(
new (eventUtils.get(eventUtils.BUBBLE_OPEN))(
this.sourceBlock,
visible,
'warning',
),
);
}
/**
* @returns the location the bubble should be anchored to.
* I.E. the middle of this icon.
*/
private getAnchorLocation(): Coordinate {
const midIcon = SIZE / 2;
return Coordinate.sum(
this.workspaceLocation,
new Coordinate(midIcon, midIcon),
);
}
/**
* @returns the rect the bubble should avoid overlapping.
* I.E. the block that owns this icon.
*/
private getBubbleOwnerRect(): Rect {
const bbox = this.sourceBlock.getSvgRoot().getBBox();
return new Rect(bbox.y, bbox.y + bbox.height, bbox.x, bbox.x + bbox.width);
}
}