Files
blockly/core/trashcan.ts
Beka Westberg 21d90696d1 chore: Migrate core/ to Typescript, actually (#6299)
* fix: convert files to typescript

* fix: add alias for AnyDuringMigration so that tsc will run

* chore: format

* chore: enable ts for the clang-format workflow (#6233)

* chore: Restore @fileoverview comment locations (#6237)

* chore: add declareModuleId (#6238)

* fix: Revert comment change to app_controller.js (#6241)

* fix: Add missing import goog statements (#6240)

I've added the import statement immediately before the
goog.declareModuleId calls that depend on it.

There is an argument to be made that we should put the import
statement in their normal place amongst any other imports, and
move the declareModuleId statement to below the double blank
line below the imports, but as these are so tightly coupled,
replace the previous goog.module calls, and will both be deleted
at the same time once the transition to TypeScript is fully complete
I think it's fine (and certainly much easier) to do it this way.

* chore: Fix whitespace (#6243)

* fix: Remove spurious blank lines

  Remove extraneous blank lines introduced by deletion of
  'use strict'; pragmas.

  Also fix the location of the goog.declareModuleId call in
  core/utils/array.ts.

* fix: Add missing double-blank-line before body of modules

  Our convention is to have two blank lines between the imports (or
  module ID, if there are no imports) and the beginning of the body
  of the module.  Enforce this.

* fix: one addition format error for PR #6243

* fix(build): Skip npm prepare when running in CI (#6244)

Have npm prepare do nothing when running in CI.

We don't need to do any building, because npm test will build
everything needed in the workflows in which it is run, and we
don't want to build anything in other workflows because a tsc
error would prevent those workflows from completing.

* fix: re-add `@package` annotations as `@internal` annotations (#6232)

* fix: add ~70% of internal attributes

* fix: work on manually adding more @internal annotations

* fix: add more manual internal annotations

* fix: rename package typos to internal

* fix: final manual fixes for internal annotations

* chore: format

* chore: make unnecessary multiline jsdoc a single line

* fix: fix internal tags in serialization exceptions

* fix: tsc errors picked up from develop (#6224)

* fix: relative path for deprecation utils

* fix: checking if properties exist in svg_math

* fix: set all timeout PIDs to AnyDuringMigration

* fix: make nullability errors explicity in block drag surface

* fix: make null check in events_block_change explicit

* fix: make getEventWorkspace_ internal so we can access it from CommentCreateDeleteHelper

* fix: rename DIV -> containerDiv in tooltip

* fix: ignore backwards compat check in category

* fix: set block styles to AnyDuringMigration

* fix: type typo in KeyboardShortcut

* fix: constants name in row measurables

* fix: typecast in mutator

* fix: populateProcedures type of flattened array

* fix: ignore errors related to workspace comment deserialization

* chore: format files

* fix: renaming imports missing file extensions

* fix: remove check for sound.play

* fix: temporarily remove bad requireType.

All `export type` statements are stripped when tsc is run. This means
that when we attempt to require BlockDefinition from the block files, we
get an error because it does not exist.

We decided to temporarily remove the require, because this will no
longer be a problem when we conver the blocks to typescript, and
everything gets compiled together.

* fix: bad jsdoc in array

* fix: silence missing property errors

Closure was complaining about inexistant properties, but they actually
do exist, they're just not being transpiled by tsc in a way that closure
understands.

I.E. if things are initialized in a function called by the constructor,
rather than in a class field or in the custructor itself, closure would
error.

It would also error on enums, because they are transpiled to a weird
IIFE.

* fix: context menu action handler not knowing the type of this.

this: TypeX information gets stripped when tsc is run, so closure could
not know that this was not global. Fixed this by reorganizing to use the
option object directly instead of passing it to onAction to be bound to
this.

* fix: readd getDeveloperVars checks (should not be part of migration)

This was found because ALL_DEVELOPER_VARS_WARNINGS_BY_BLOCK_TYPE was no
longer being accessed.

* fix: silence closure errors about overriding supertype props

We propertly define the overrides in typescript, but these get removed
from the compiled output, so closure doesn't know they exist.

* fix: silence globalThis errors

this: TypeX annotations get stripped from the compiled output, so
closure can't know that we're accessing the correct things. However,
typescript makes sure that this always has the correct properties, so
silencing this should be fine.

* fix: bad jsdoc name

* chore: attempt compiling with blockly.js

* fix: attempt moving the import statement above the namespace line

* chore: add todo comments to block def files

* chore: remove todo from context menu

* chore: add comments abotu disabled errors

* chore: move comments back to their correct positions (#6249)

* fix: work on fixing comments

* chore: finish moving all comments

* chore: format

* chore: move some other messed up comments

* chore: format

* fix: Correct enum formatting, use merged `namespace`s for types that are class static members (#6246)

* fix: formatting of enum KeyCodes

* fix: Use merged namespace for ContextMenuRegistry static types

  - Create a namespace to be merged with the ContextMenuRegistry
    class containing the types that were formerly declared as static
    properties on that class.

  - Use type aliases to export them individually as well, for
    compatibility with the changes made by MigranTS (and/or
    @gonfunko) to how other modules in core/ now import these
    types.

  - Update renamings.json5 to reflect the availability of the
    direct exports for modules that import this module directly
    (though they are not available to, and will not be used by,
    code that imports only via blockly.js/blockly.ts.)

* fix: Use merged namespace for Input.Align

  - Create a merged namespace for the Input.Align enum.

  - Use type/const aliases to export it as Input too.

  - Update renamings.json5 to reflect the availability of the
    direct export.

* fix: Use merged namespace for Names.NameType

  - Create a merged namespace for the Names.NameType enum.

  - Use type/const aliases to export it as NameType too.

  - Update renamings.json5 to reflect the availability of the
    direct export.  (This ought to have happened in an earlier
    version as it was already available by both routes.)

* chore: Fix minor issues for PR #6246

  - Use `Align` instead of `Input.Align` where possible.

* fix(build): Suppress irrelevant JSC_UNUSED_LOCAL_ASSIGNMENT errors

  tsc generates code for merged namespaces that looks like:

      (function (ClassName) {
          let EnumName;
          (function (EnumName) {
              EnumName[EnumNameAlign["v1"] = 0] = "v1";
              // etc.
          })(EnumName = ClassName.EnumName || (ClassName.EnumName = {}));
      })(ClassName || (ClassName = {}));

  and Closure Compiler complains about the fact that the EnumName let
  binding is initialised but never used.  (It exists so that any other
  code that was in the namespace could see the enum.)

  Suppress this message, since it is not actionable and lint and/or tsc
  should tell us if we have actual unused variables in our .ts files.

* chore(build): Suppress spurious warnings from closure-make-deps (#6253)

A little bit of an ugly hack, but it works: pipe stderr through
grep -v to suppress error output starting with "WARNING in".

* fix: remaining enums that weren't properly exported (#6251)

* fix: remaining enums that weren't properly exported

* chore: format

* fix: add enum value exports

* chore: format

* fix: properly export interfaces that were typedefs (#6250)

* fix: properly export interfaces that were typedefs

* fix: allowCollsion -> allowCollision

* fix: convert unconverted enums

* fix: enums that were/are instance properties

* fix: revert changes to property enums

* fix: renamed protected parameter properties (#6252)

* fix: bad protected parameter properties

* chore:format

* fix: gesture constructor

* fix: overridden properties that were renamed

* refactor: Migrate `blockly.js` to TypeScript (#6261)

* chore: Apply changes to blockly.js to blockly.ts

* fix: Build using core/blockly.ts instead of .js

  Compiles and runs in compressed mode correctly!

* fix(build): Don't depend on execSync running bash (#6262)

For some reason on Github CI servers execSync uses /bin/sh, which
is (on Ubuntu) dash rather than bash, and does not understand
the pipefail option.

So remove the grep pipe on stderr and just discard all error output
at all.

This is not ideal as errors in test deps will go unreported AND
not even cause test failure, but it's not clear that it's worth
investing more time to fix this at the moment.

* chore: use `import type` where possible (#6279)

* chore: automatically change imports to import types

* chore: revert changes that actually need to be imports

* chore: format

* chore: add more import type statements based on importsNotUsedAsValues

* chore: fix tsconfig

* chore: add link to compiler issue

* fix: add type information to blockly options (#6283)

* fix: add type information to blockly options

* chore: format

* chore: remove erroneous comment

* fix: bugs revealed by getting the built output working (#6282)

* fix: types of compose and decompose in block

* fix: workspace naming in toolbox

* chore: add jsdoc

* chore: restore registry comments to better positions

* chore: pr comments'

* fix(variables): Revert inadvertent change to allDeveloperVariables (#6290)

It appears that a function call got modified incorrectly (probably
in an effort to fix a typing issue).  This fix trivially reverts
the line in question to match the original JS version from develop.

This causes the generator tests to pass.

* fix: circular dependencies (#6281)

* chore: fix circular dependencies w/ static workspace funcs

* remove preserved imports that aren't currently necessary (probably)

* fix circular dependency with workspaces and block using stub

* fix dependency between variables and xml by moving function to utils

* add stub for trashcan as well

* fix line endings from rebase

* fix goog/base order

* add trashcan patch

* fix: types of compose and decompose in block

* fix: workspace naming in toolbox

* chore: add jsdoc

* chore: restore registry comments to better positions

* chore: remove implementations in goog.js

* chore: fix types of stubs

* chore: remove added AnyDuringMigration casts

* chore: remove modifications to xml and variables

* chore: format

* chore: remove event requirements in workspace comments

* chore: fix circular dependency with xml and workspace comments

* fixup remove ContextMenu import

* chore: fix dependency between mutator and workspace

* chore: break circular dependency between names and procedures

* chore: get tests to run?

* chore: pr comments'

* chore: fix stubbing field registry fromJson

* chore: fix spying on fire

* chore: fix stubbing parts of connection checker

* chore: fix stubbing dialog

* chore: fix stubbing style

* chore: fix spying on duplicate

* chore: fix stubbing variables

* chore: fix stubbing copy

* chore: fix stubbing in workspace

* chore: remove unnecessary stubs

* chore: fix formatting

* chore: fix other formatting

* chore: add backwards compatible static properties to workspace

* chore: move static type properties

* chore: move and comment stubs

* chore: add newlines at EOF

* chore: improve errors for monkey patched functions

* chore: update comment with a pointer to the doc

* chore: update comment with a pointer to the doc

* chore: format

* chore: revert changes to playground used for testing (#6292)

* chore: get mocha tests to pass. (#6291)

* chore: fix undo and empty code blocks

* chore: skip IE test

* chore: fix gesture test

* chore: fix replace message references test

* chore: fix string table interpolation

* chore: skip getById tests

* chore: fix field tests

* chore: fix console errors by making workspace nullable

* chore: format

* chore: fix definition overwrite warning

* chore: update metadata

* chore: temporarily modify the the advanced compile test

* chore: fix gestures by fixing test instead

Co-authored-by: Neil Fraser <fraser@google.com>
Co-authored-by: Christopher Allen <cpcallen+git@google.com>
2022-08-02 10:30:13 -07:00

669 lines
21 KiB
TypeScript

/**
* @license
* Copyright 2011 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @fileoverview Object representing a trash can icon.
*/
/**
* Object representing a trash can icon.
* @class
*/
import * as goog from '../closure/goog/goog.js';
goog.declareModuleId('Blockly.Trashcan');
/* eslint-disable-next-line no-unused-vars */
// Unused import preserved for side-effects. Remove if unneeded.
// import './metrics_manager.js';
// Unused import preserved for side-effects. Remove if unneeded.
import './events/events_trashcan_open.js';
import type {BlocklyOptions} from './blockly_options.js';
import * as browserEvents from './browser_events.js';
import {ComponentManager} from './component_manager.js';
import {DeleteArea} from './delete_area.js';
import type {Abstract} from './events/events_abstract.js';
import type {BlockDelete} from './events/events_block_delete.js';
import * as eventUtils from './events/utils.js';
import type {IAutoHideable} from './interfaces/i_autohideable.js';
import type {IDraggable} from './interfaces/i_draggable.js';
import type {IFlyout} from './interfaces/i_flyout.js';
import type {IPositionable} from './interfaces/i_positionable.js';
import type {UiMetrics} from './metrics_manager.js';
import {Options} from './options.js';
import * as uiPosition from './positionable_helpers.js';
import * as registry from './registry.js';
import type * as blocks from './serialization/blocks.js';
import {SPRITE} from './sprites.js';
import * as dom from './utils/dom.js';
import {Rect} from './utils/rect.js';
import {Size} from './utils/size.js';
import {Svg} from './utils/svg.js';
import * as toolbox from './utils/toolbox.js';
import type {WorkspaceSvg} from './workspace_svg.js';
/**
* Class for a trash can.
* @alias Blockly.Trashcan
*/
export class Trashcan extends DeleteArea implements IAutoHideable,
IPositionable {
/**
* The unique id for this component that is used to register with the
* ComponentManager.
*/
override id = 'trashcan';
/**
* A list of JSON (stored as strings) representing blocks in the trashcan.
*/
private readonly contents_: string[] = [];
/**
* The trashcan flyout.
* @internal
*/
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'IFlyout'.
flyout: IFlyout = null as AnyDuringMigration;
/** Current open/close state of the lid. */
isLidOpen = false;
/**
* The minimum openness of the lid. Used to indicate if the trashcan
* contains blocks.
*/
private minOpenness_ = 0;
/** The SVG group containing the trash can. */
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'SVGElement'.
private svgGroup_: SVGElement = null as AnyDuringMigration;
/** The SVG image element of the trash can lid. */
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'SVGElement'.
private svgLid_: SVGElement = null as AnyDuringMigration;
/** Task ID of opening/closing animation. */
private lidTask_: AnyDuringMigration = 0;
/** Current state of lid opening (0.0 = closed, 1.0 = open). */
private lidOpen_ = 0;
/** Left coordinate of the trash can. */
private left_ = 0;
/** Top coordinate of the trash can. */
private top_ = 0;
/** Whether this trash can has been initialized. */
private initialized_ = false;
/** @param workspace The workspace to sit in. */
constructor(private workspace: WorkspaceSvg) {
super();
if (this.workspace.options.maxTrashcanContents <= 0) {
return;
}
// Create flyout options.
const flyoutWorkspaceOptions = new Options(({
'scrollbars': true,
'parentWorkspace': this.workspace,
'rtl': this.workspace.RTL,
'oneBasedIndex': this.workspace.options.oneBasedIndex,
'renderer': this.workspace.options.renderer,
'rendererOverrides': this.workspace.options.rendererOverrides,
'move': {
'scrollbars': true,
},
} as BlocklyOptions));
// Create vertical or horizontal flyout.
if (this.workspace.horizontalLayout) {
flyoutWorkspaceOptions.toolboxPosition =
this.workspace.toolboxPosition === toolbox.Position.TOP ?
toolbox.Position.BOTTOM :
toolbox.Position.TOP;
const HorizontalFlyout = registry.getClassFromOptions(
registry.Type.FLYOUTS_HORIZONTAL_TOOLBOX, this.workspace.options,
true);
this.flyout = new HorizontalFlyout!(flyoutWorkspaceOptions);
} else {
flyoutWorkspaceOptions.toolboxPosition =
this.workspace.toolboxPosition === toolbox.Position.RIGHT ?
toolbox.Position.LEFT :
toolbox.Position.RIGHT;
const VerticalFlyout = registry.getClassFromOptions(
registry.Type.FLYOUTS_VERTICAL_TOOLBOX, this.workspace.options, true);
this.flyout = new VerticalFlyout!(flyoutWorkspaceOptions);
}
this.workspace.addChangeListener(this.onDelete_.bind(this));
}
/**
* Create the trash can elements.
* @return The trash can's SVG group.
*/
createDom(): SVGElement {
/* Here's the markup that will be generated:
<g class="blocklyTrash">
<clippath id="blocklyTrashBodyClipPath837493">
<rect width="47" height="45" y="15"></rect>
</clippath>
<image width="64" height="92" y="-32" xlink:href="media/sprites.png"
clip-path="url(#blocklyTrashBodyClipPath837493)"></image>
<clippath id="blocklyTrashLidClipPath837493">
<rect width="47" height="15"></rect>
</clippath>
<image width="84" height="92" y="-32" xlink:href="media/sprites.png"
clip-path="url(#blocklyTrashLidClipPath837493)"></image>
</g>
*/
this.svgGroup_ = dom.createSvgElement(Svg.G, {'class': 'blocklyTrash'});
let clip;
const rnd = String(Math.random()).substring(2);
clip = dom.createSvgElement(
Svg.CLIPPATH, {'id': 'blocklyTrashBodyClipPath' + rnd}, this.svgGroup_);
dom.createSvgElement(
Svg.RECT, {'width': WIDTH, 'height': BODY_HEIGHT, 'y': LID_HEIGHT},
clip);
const body = dom.createSvgElement(
Svg.IMAGE, {
'width': SPRITE.width,
'x': -SPRITE_LEFT,
'height': SPRITE.height,
'y': -SPRITE_TOP,
'clip-path': 'url(#blocklyTrashBodyClipPath' + rnd + ')',
},
this.svgGroup_);
body.setAttributeNS(
dom.XLINK_NS, 'xlink:href',
this.workspace.options.pathToMedia + SPRITE.url);
clip = dom.createSvgElement(
Svg.CLIPPATH, {'id': 'blocklyTrashLidClipPath' + rnd}, this.svgGroup_);
dom.createSvgElement(
Svg.RECT, {'width': WIDTH, 'height': LID_HEIGHT}, clip);
this.svgLid_ = dom.createSvgElement(
Svg.IMAGE, {
'width': SPRITE.width,
'x': -SPRITE_LEFT,
'height': SPRITE.height,
'y': -SPRITE_TOP,
'clip-path': 'url(#blocklyTrashLidClipPath' + rnd + ')',
},
this.svgGroup_);
this.svgLid_.setAttributeNS(
dom.XLINK_NS, 'xlink:href',
this.workspace.options.pathToMedia + SPRITE.url);
// bindEventWithChecks_ quashes events too aggressively. See:
// https://groups.google.com/forum/#!topic/blockly/QF4yB9Wx00s
// Using bindEventWithChecks_ for blocking mousedown causes issue in mobile.
// See #4303
browserEvents.bind(
this.svgGroup_, 'mousedown', this, this.blockMouseDownWhenOpenable_);
browserEvents.bind(this.svgGroup_, 'mouseup', this, this.click);
// Bind to body instead of this.svgGroup_ so that we don't get lid jitters
browserEvents.bind(body, 'mouseover', this, this.mouseOver_);
browserEvents.bind(body, 'mouseout', this, this.mouseOut_);
this.animateLid_();
return this.svgGroup_;
}
/** Initializes the trash can. */
init() {
if (this.workspace.options.maxTrashcanContents > 0) {
dom.insertAfter(
this.flyout.createDom(Svg.SVG), this.workspace.getParentSvg());
this.flyout.init(this.workspace);
}
this.workspace.getComponentManager().addComponent({
component: this,
weight: 1,
capabilities: [
ComponentManager.Capability.AUTOHIDEABLE,
ComponentManager.Capability.DELETE_AREA,
ComponentManager.Capability.DRAG_TARGET,
ComponentManager.Capability.POSITIONABLE,
],
});
this.initialized_ = true;
this.setLidOpen(false);
}
/**
* Dispose of this trash can.
* Unlink from all DOM elements to prevent memory leaks.
* @suppress {checkTypes}
*/
dispose() {
this.workspace.getComponentManager().removeComponent('trashcan');
if (this.svgGroup_) {
dom.removeNode(this.svgGroup_);
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'SVGElement'.
this.svgGroup_ = null as AnyDuringMigration;
}
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'SVGElement'.
this.svgLid_ = null as AnyDuringMigration;
// AnyDuringMigration because: Type 'null' is not assignable to type
// 'WorkspaceSvg'.
this.workspace = null as AnyDuringMigration;
clearTimeout(this.lidTask_);
}
/**
* Whether the trashcan has contents.
* @return True if the trashcan has contents.
*/
private hasContents_(): boolean {
return !!this.contents_.length;
}
/**
* Returns true if the trashcan contents-flyout is currently open.
* @return True if the trashcan contents-flyout is currently open.
*/
contentsIsOpen(): boolean {
return !!this.flyout && this.flyout.isVisible();
}
/** Opens the trashcan flyout. */
openFlyout() {
if (this.contentsIsOpen()) {
return;
}
const contents = this.contents_.map(function(string) {
return JSON.parse(string);
});
this.flyout.show(contents);
this.fireUiEvent_(true);
}
/** Closes the trashcan flyout. */
closeFlyout() {
if (!this.contentsIsOpen()) {
return;
}
this.flyout.hide();
this.fireUiEvent_(false);
this.workspace.recordDragTargets();
}
/**
* Hides the component. Called in WorkspaceSvg.hideChaff.
* @param onlyClosePopups Whether only popups should be closed.
* Flyouts should not be closed if this is true.
*/
autoHide(onlyClosePopups: boolean) {
// For now the trashcan flyout always autocloses because it overlays the
// trashcan UI (no trashcan to click to close it).
if (!onlyClosePopups && this.flyout) {
this.closeFlyout();
}
}
/**
* Empties the trashcan's contents. If the contents-flyout is currently open
* it will be closed.
*/
emptyContents() {
if (!this.hasContents_()) {
return;
}
this.contents_.length = 0;
this.setMinOpenness_(0);
this.closeFlyout();
}
/**
* Positions the trashcan.
* It is positioned in the opposite corner to the corner the
* categories/toolbox starts at.
* @param metrics The workspace metrics.
* @param savedPositions List of rectangles that are already on the workspace.
*/
position(metrics: UiMetrics, savedPositions: Rect[]) {
// Not yet initialized.
if (!this.initialized_) {
return;
}
const cornerPosition =
uiPosition.getCornerOppositeToolbox(this.workspace, metrics);
const height = BODY_HEIGHT + LID_HEIGHT;
const startRect = uiPosition.getStartPositionRect(
cornerPosition, new Size(WIDTH, height), MARGIN_HORIZONTAL,
MARGIN_VERTICAL, metrics, this.workspace);
const verticalPosition = cornerPosition.vertical;
const bumpDirection = verticalPosition === uiPosition.verticalPosition.TOP ?
uiPosition.bumpDirection.DOWN :
uiPosition.bumpDirection.UP;
const positionRect = uiPosition.bumpPositionRect(
startRect, MARGIN_VERTICAL, bumpDirection, savedPositions);
this.top_ = positionRect.top;
this.left_ = positionRect.left;
this.svgGroup_.setAttribute(
'transform', 'translate(' + this.left_ + ',' + this.top_ + ')');
}
/**
* Returns the bounding rectangle of the UI element in pixel units relative to
* the Blockly injection div.
* @return The UI elements's bounding box. Null if bounding box should be
* ignored by other UI elements.
*/
getBoundingRectangle(): Rect|null {
const bottom = this.top_ + BODY_HEIGHT + LID_HEIGHT;
const right = this.left_ + WIDTH;
return new Rect(this.top_, bottom, this.left_, right);
}
/**
* Returns the bounding rectangle of the drag target area in pixel units
* relative to viewport.
* @return The component's bounding box. Null if drag target area should be
* ignored.
*/
override getClientRect(): Rect|null {
if (!this.svgGroup_) {
return null;
}
const trashRect = this.svgGroup_.getBoundingClientRect();
const top = trashRect.top + SPRITE_TOP - MARGIN_HOTSPOT;
const bottom = top + LID_HEIGHT + BODY_HEIGHT + 2 * MARGIN_HOTSPOT;
const left = trashRect.left + SPRITE_LEFT - MARGIN_HOTSPOT;
const right = left + WIDTH + 2 * MARGIN_HOTSPOT;
return new Rect(top, bottom, left, right);
}
/**
* Handles when a cursor with a block or bubble is dragged over this drag
* target.
* @param _dragElement The block or bubble currently being dragged.
*/
override onDragOver(_dragElement: IDraggable) {
this.setLidOpen(this.wouldDelete_);
}
/**
* Handles when a cursor with a block or bubble exits this drag target.
* @param _dragElement The block or bubble currently being dragged.
*/
override onDragExit(_dragElement: IDraggable) {
this.setLidOpen(false);
}
/**
* Handles when a block or bubble is dropped on this component.
* Should not handle delete here.
* @param _dragElement The block or bubble currently being dragged.
*/
override onDrop(_dragElement: IDraggable) {
setTimeout(this.setLidOpen.bind(this, false), 100);
}
/**
* Flip the lid open or shut.
* @param state True if open.
* @internal
*/
setLidOpen(state: boolean) {
if (this.isLidOpen === state) {
return;
}
clearTimeout(this.lidTask_);
this.isLidOpen = state;
this.animateLid_();
}
/** Rotate the lid open or closed by one step. Then wait and recurse. */
private animateLid_() {
const frames = ANIMATION_FRAMES;
const delta = 1 / (frames + 1);
this.lidOpen_ += this.isLidOpen ? delta : -delta;
this.lidOpen_ = Math.min(Math.max(this.lidOpen_, this.minOpenness_), 1);
this.setLidAngle_(this.lidOpen_ * MAX_LID_ANGLE);
// Linear interpolation between min and max.
const opacity = OPACITY_MIN + this.lidOpen_ * (OPACITY_MAX - OPACITY_MIN);
// AnyDuringMigration because: Type 'number' is not assignable to type
// 'string'.
this.svgGroup_.style.opacity = opacity as AnyDuringMigration;
if (this.lidOpen_ > this.minOpenness_ && this.lidOpen_ < 1) {
this.lidTask_ =
setTimeout(this.animateLid_.bind(this), ANIMATION_LENGTH / frames);
}
}
/**
* Set the angle of the trashcan's lid.
* @param lidAngle The angle at which to set the lid.
*/
private setLidAngle_(lidAngle: number) {
const openAtRight =
this.workspace.toolboxPosition === toolbox.Position.RIGHT ||
this.workspace.horizontalLayout && this.workspace.RTL;
this.svgLid_.setAttribute(
'transform',
'rotate(' + (openAtRight ? -lidAngle : lidAngle) + ',' +
(openAtRight ? 4 : WIDTH - 4) + ',' + (LID_HEIGHT - 2) + ')');
}
/**
* Sets the minimum openness of the trashcan lid. If the lid is currently
* closed, this will update lid's position.
* @param newMin The new minimum openness of the lid. Should be between 0
* and 1.
*/
private setMinOpenness_(newMin: number) {
this.minOpenness_ = newMin;
if (!this.isLidOpen) {
this.setLidAngle_(newMin * MAX_LID_ANGLE);
}
}
/**
* Flip the lid shut.
* Called externally after a drag.
*/
closeLid() {
this.setLidOpen(false);
}
/** Inspect the contents of the trash. */
click() {
if (!this.hasContents_()) {
return;
}
this.openFlyout();
}
/**
* Fires a UI event for trashcan flyout open or close.
* @param trashcanOpen Whether the flyout is opening.
*/
private fireUiEvent_(trashcanOpen: boolean) {
const uiEvent = new (eventUtils.get(eventUtils.TRASHCAN_OPEN))!
(trashcanOpen, this.workspace.id);
eventUtils.fire(uiEvent);
}
/**
* Prevents a workspace scroll and click event if the trashcan has blocks.
* @param e A mouse down event.
*/
private blockMouseDownWhenOpenable_(e: Event) {
if (!this.contentsIsOpen() && this.hasContents_()) {
// Don't start a workspace scroll.
e.stopPropagation();
}
}
/**
* Indicate that the trashcan can be clicked (by opening it) if it has blocks.
*/
private mouseOver_() {
if (this.hasContents_()) {
this.setLidOpen(true);
}
}
/**
* Close the lid of the trashcan if it was open (Vis. it was indicating it had
* blocks).
*/
private mouseOut_() {
// No need to do a .hasBlocks check here because if it doesn't the trashcan
// won't be open in the first place, and setOpen won't run.
this.setLidOpen(false);
}
/**
* Handle a BLOCK_DELETE event. Adds deleted blocks oldXml to the content
* array.
* @param event Workspace event.
*/
private onDelete_(event: Abstract) {
if (this.workspace.options.maxTrashcanContents <= 0 ||
event.type !== eventUtils.BLOCK_DELETE) {
return;
}
const deleteEvent = event as BlockDelete;
if (event.type === eventUtils.BLOCK_DELETE && !deleteEvent.wasShadow) {
const cleanedJson = this.cleanBlockJson_(deleteEvent.oldJson);
if (this.contents_.indexOf(cleanedJson) !== -1) {
return;
}
this.contents_.unshift(cleanedJson);
while (this.contents_.length >
this.workspace.options.maxTrashcanContents) {
this.contents_.pop();
}
this.setMinOpenness_(HAS_BLOCKS_LID_ANGLE);
}
}
/**
* Converts JSON representing a block into text that can be stored in the
* content array.
* @param json A JSON representation of a block's state.
* @return Text representing the JSON, cleaned of all unnecessary attributes.
*/
private cleanBlockJson_(json: blocks.State): string {
// Create a deep copy.
json = JSON.parse(JSON.stringify(json)) as blocks.State;
/**
* Reshape JSON into a nicer format.
* @param json The JSON to clean.
*/
function cleanRec(json: blocks.State) {
if (!json) {
return;
}
delete json['id'];
delete json['x'];
delete json['y'];
delete json['enabled'];
if (json['icons'] && json['icons']['comment']) {
const comment = json['icons']['comment'];
delete comment['height'];
delete comment['width'];
delete comment['pinned'];
}
const inputs = json['inputs'];
for (const name in inputs) {
const input = inputs[name];
// AnyDuringMigration because: Argument of type 'State | undefined' is
// not assignable to parameter of type 'State'.
cleanRec((input as AnyDuringMigration)['block']);
// AnyDuringMigration because: Argument of type 'State | undefined' is
// not assignable to parameter of type 'State'.
cleanRec((input as AnyDuringMigration)['shadow']);
}
if (json['next']) {
const next = json['next'];
// AnyDuringMigration because: Argument of type 'State | undefined' is
// not assignable to parameter of type 'State'.
cleanRec((next as AnyDuringMigration)['block']);
// AnyDuringMigration because: Argument of type 'State | undefined' is
// not assignable to parameter of type 'State'.
cleanRec((next as AnyDuringMigration)['shadow']);
}
}
cleanRec(json);
(json as AnyDuringMigration)['kind'] = 'BLOCK';
return JSON.stringify(json);
}
}
/** Width of both the trash can and lid images. */
const WIDTH = 47;
/** Height of the trashcan image (minus lid). */
const BODY_HEIGHT = 44;
/** Height of the lid image. */
const LID_HEIGHT = 16;
/** Distance between trashcan and bottom or top edge of workspace. */
const MARGIN_VERTICAL = 20;
/** Distance between trashcan and right or left edge of workspace. */
const MARGIN_HORIZONTAL = 20;
/** Extent of hotspot on all sides beyond the size of the image. */
const MARGIN_HOTSPOT = 10;
/** Location of trashcan in sprite image. */
const SPRITE_LEFT = 0;
/** Location of trashcan in sprite image. */
const SPRITE_TOP = 32;
/**
* The openness of the lid when the trashcan contains blocks.
* (0.0 = closed, 1.0 = open)
*/
const HAS_BLOCKS_LID_ANGLE = 0.1;
/** The length of the lid open/close animation in milliseconds. */
const ANIMATION_LENGTH = 80;
/** The number of frames in the animation. */
const ANIMATION_FRAMES = 4;
/** The minimum (resting) opacity of the trashcan and lid. */
const OPACITY_MIN = 0.4;
/** The maximum (hovered) opacity of the trashcan and lid. */
const OPACITY_MAX = 0.8;
/**
* The maximum angle the trashcan lid can opens to. At the end of the open
* animation the lid will be open to this angle.
*/
const MAX_LID_ANGLE = 45;