mirror of
https://github.com/google/blockly.git
synced 2026-01-05 08:00:09 +01:00
* fix: Fix bug that caused blocks dragged from non-primary flyouts to be misplaced. * chore: Fix docstring.
77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2024 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {FlyoutButton} from './flyout_button.js';
|
|
import {FlyoutItem} from './flyout_item.js';
|
|
import type {IFlyout} from './interfaces/i_flyout.js';
|
|
import type {IFlyoutInflater} from './interfaces/i_flyout_inflater.js';
|
|
import * as registry from './registry.js';
|
|
import {ButtonOrLabelInfo} from './utils/toolbox.js';
|
|
|
|
const BUTTON_TYPE = 'button';
|
|
|
|
/**
|
|
* Class responsible for creating buttons for flyouts.
|
|
*/
|
|
export class ButtonFlyoutInflater implements IFlyoutInflater {
|
|
/**
|
|
* Inflates a flyout button from the given state and adds it to the flyout.
|
|
*
|
|
* @param state A JSON representation of a flyout button.
|
|
* @param flyout The flyout to create the button on.
|
|
* @returns A newly created FlyoutButton.
|
|
*/
|
|
load(state: object, flyout: IFlyout): FlyoutItem {
|
|
const button = new FlyoutButton(
|
|
flyout.getWorkspace(),
|
|
flyout.targetWorkspace!,
|
|
state as ButtonOrLabelInfo,
|
|
false,
|
|
);
|
|
button.show();
|
|
|
|
return new FlyoutItem(button, BUTTON_TYPE, true);
|
|
}
|
|
|
|
/**
|
|
* Returns the amount of space that should follow this button.
|
|
*
|
|
* @param state A JSON representation of a flyout button.
|
|
* @param defaultGap The default spacing for flyout items.
|
|
* @returns The amount of space that should follow this button.
|
|
*/
|
|
gapForItem(state: object, defaultGap: number): number {
|
|
return defaultGap;
|
|
}
|
|
|
|
/**
|
|
* Disposes of the given button.
|
|
*
|
|
* @param item The flyout button to dispose of.
|
|
*/
|
|
disposeItem(item: FlyoutItem): void {
|
|
const element = item.getElement();
|
|
if (element instanceof FlyoutButton) {
|
|
element.dispose();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Returns the type of items this inflater is responsible for creating.
|
|
*
|
|
* @returns An identifier for the type of items this inflater creates.
|
|
*/
|
|
getType() {
|
|
return BUTTON_TYPE;
|
|
}
|
|
}
|
|
|
|
registry.register(
|
|
registry.Type.FLYOUT_INFLATER,
|
|
BUTTON_TYPE,
|
|
ButtonFlyoutInflater,
|
|
);
|