1e4ce77612
* Revert "Revert "Feature: Multi Point Arrows (#338)" (#634)" This reverts commit 3d2e59bfed4fa41a0cae49ee567a6f95ca26e7bf. * Convert old arrow spec to new one * Remove unnecessary failchecks and fix context transform issue in retina displays * Remove old points failcheck from getArrowAbsoluteBounds * Remove all failchecks for old arrow * remove the rest of unnecessary checks * Set default values for the arrow during import * Add translations * fix restore using unmigrated elements for state computation * don't use width/height when migrating from new arrow spec Co-authored-by: David Luzar <luzar.david@gmail.com> Co-authored-by: Christopher Chedeau <vjeuxx@gmail.com>
72 lines
1.5 KiB
TypeScript
72 lines
1.5 KiB
TypeScript
import { randomSeed } from "roughjs/bin/math";
|
|
import nanoid from "nanoid";
|
|
import { Drawable } from "roughjs/bin/core";
|
|
import { Point } from "roughjs/bin/geometry";
|
|
|
|
import { ExcalidrawElement, ExcalidrawTextElement } from "../element/types";
|
|
import { measureText } from "../utils";
|
|
|
|
export function newElement(
|
|
type: string,
|
|
x: number,
|
|
y: number,
|
|
strokeColor: string,
|
|
backgroundColor: string,
|
|
fillStyle: string,
|
|
strokeWidth: number,
|
|
roughness: number,
|
|
opacity: number,
|
|
width = 0,
|
|
height = 0,
|
|
) {
|
|
const element = {
|
|
id: nanoid(),
|
|
type,
|
|
x,
|
|
y,
|
|
width,
|
|
height,
|
|
strokeColor,
|
|
backgroundColor,
|
|
fillStyle,
|
|
strokeWidth,
|
|
roughness,
|
|
opacity,
|
|
isSelected: false,
|
|
seed: randomSeed(),
|
|
shape: null as Drawable | Drawable[] | null,
|
|
points: [] as Point[],
|
|
};
|
|
return element;
|
|
}
|
|
|
|
export function newTextElement(
|
|
element: ExcalidrawElement,
|
|
text: string,
|
|
font: string,
|
|
) {
|
|
const metrics = measureText(text, font);
|
|
const textElement: ExcalidrawTextElement = {
|
|
...element,
|
|
type: "text",
|
|
text: text,
|
|
font: font,
|
|
// Center the text
|
|
x: element.x - metrics.width / 2,
|
|
y: element.y - metrics.height / 2,
|
|
width: metrics.width,
|
|
height: metrics.height,
|
|
baseline: metrics.baseline,
|
|
};
|
|
|
|
return textElement;
|
|
}
|
|
|
|
export function duplicateElement(element: ReturnType<typeof newElement>) {
|
|
const copy = { ...element };
|
|
delete copy.shape;
|
|
copy.id = nanoid();
|
|
copy.seed = randomSeed();
|
|
return copy;
|
|
}
|