tldraw
Version:
A tiny little drawing editor.
96 lines (95 loc) • 3.07 kB
JavaScript
;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var PointingCropHandle_exports = {};
__export(PointingCropHandle_exports, {
PointingCropHandle: () => PointingCropHandle
});
module.exports = __toCommonJS(PointingCropHandle_exports);
var import_editor = require("@tldraw/editor");
var import_PointingResizeHandle = require("../../PointingResizeHandle");
class PointingCropHandle extends import_editor.StateNode {
static id = "pointing_crop_handle";
info = {};
onEnter(info) {
this.info = info;
if (typeof info.onInteractionEnd === "string") {
this.parent.setCurrentToolIdMask(info.onInteractionEnd);
}
const selectedShape = this.editor.getSelectedShapes()[0];
if (!selectedShape) return;
const cursorType = import_PointingResizeHandle.CursorTypeMap[this.info.handle];
this.editor.setCursor({ type: cursorType, rotation: this.editor.getSelectionRotation() });
this.editor.setCroppingShape(selectedShape.id);
}
onExit() {
this.editor.setCursor({ type: "default", rotation: 0 });
this.parent.setCurrentToolIdMask(void 0);
}
onPointerMove() {
if (this.editor.inputs.getIsDragging()) {
this.startCropping();
}
}
onLongPress() {
this.startCropping();
}
startCropping() {
if (this.editor.getIsReadonly()) return;
this.parent.transition("cropping", {
...this.info,
onInteractionEnd: this.info.onInteractionEnd
});
}
onPointerUp() {
const { onInteractionEnd } = this.info;
if (onInteractionEnd) {
if (typeof onInteractionEnd === "string") {
this.editor.setCurrentTool(onInteractionEnd, this.info);
} else {
onInteractionEnd();
}
return;
}
this.editor.setCroppingShape(null);
this.editor.setCurrentTool("select.idle");
}
onCancel() {
this.cancel();
}
onComplete() {
this.cancel();
}
onInterrupt() {
this.cancel();
}
cancel() {
const { onInteractionEnd } = this.info;
if (onInteractionEnd) {
if (typeof onInteractionEnd === "string") {
this.editor.setCurrentTool(onInteractionEnd, this.info);
} else {
onInteractionEnd();
}
return;
}
this.editor.setCroppingShape(null);
this.editor.setCurrentTool("select.idle");
}
}
//# sourceMappingURL=PointingCropHandle.js.map