mirror of
https://github.com/google/blockly.git
synced 2026-01-06 00:20:37 +01:00
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright 2024 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import {IBubble, WorkspaceSvg} from '../blockly.js';
|
|
import {IDragStrategy} from '../interfaces/i_draggable.js';
|
|
import * as layers from '../layers.js';
|
|
import {Coordinate} from '../utils.js';
|
|
|
|
export class BubbleDragStrategy implements IDragStrategy {
|
|
private startLoc: Coordinate | null = null;
|
|
|
|
constructor(
|
|
private bubble: IBubble,
|
|
private workspace: WorkspaceSvg,
|
|
) {}
|
|
|
|
isMovable(): boolean {
|
|
return true;
|
|
}
|
|
|
|
startDrag(): void {
|
|
this.startLoc = this.bubble.getRelativeToSurfaceXY();
|
|
this.workspace.setResizesEnabled(false);
|
|
this.workspace.getLayerManager()?.moveToDragLayer(this.bubble);
|
|
if (this.bubble.setDragging) {
|
|
this.bubble.setDragging(true);
|
|
}
|
|
}
|
|
|
|
drag(newLoc: Coordinate): void {
|
|
this.bubble.moveDuringDrag(newLoc);
|
|
}
|
|
|
|
endDrag(): void {
|
|
this.workspace.setResizesEnabled(true);
|
|
|
|
this.workspace
|
|
.getLayerManager()
|
|
?.moveOffDragLayer(this.bubble, layers.BUBBLE);
|
|
this.bubble.setDragging(false);
|
|
}
|
|
|
|
revertDrag(): void {
|
|
if (this.startLoc) this.bubble.moveDuringDrag(this.startLoc);
|
|
}
|
|
}
|