anki/ts/image-occlusion/tools/tool-text.ts
Hikaru Y 7cf19ea213
Fix selected shapes shifting to canvas origin (#2729)
* Fix selected shapes shifting to canvas origin

* Make only newly added shape selected even if it...

... overlaps with another
2023-10-13 09:58:43 +10:00

45 lines
1.2 KiB
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import { fabric } from "fabric";
import {
disableRotation,
enableUniformScaling,
stopDraw,
TEXT_BACKGROUND_COLOR,
TEXT_FONT_FAMILY,
TEXT_PADDING,
} from "./lib";
import { undoStack } from "./tool-undo-redo";
export const drawText = (canvas: fabric.Canvas): void => {
canvas.selectionColor = "rgba(0, 0, 0, 0)";
stopDraw(canvas);
canvas.on("mouse:down", function(o) {
if (o.target) {
return;
}
const pointer = canvas.getPointer(o.e);
const text = new fabric.IText("text", {
id: "text-" + new Date().getTime(),
left: pointer.x,
top: pointer.y,
originX: "left",
originY: "top",
selectable: true,
strokeWidth: 1,
noScaleCache: false,
fontFamily: TEXT_FONT_FAMILY,
backgroundColor: TEXT_BACKGROUND_COLOR,
padding: TEXT_PADDING,
});
disableRotation(text);
enableUniformScaling(canvas, text);
canvas.add(text);
canvas.setActiveObject(text);
undoStack.onObjectAdded(text.id);
});
};