mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
545 lines
15 KiB
TypeScript
545 lines
15 KiB
TypeScript
import {
|
|
DEFAULT_FONT_FAMILY,
|
|
DEFAULT_FONT_SIZE,
|
|
TEXT_ALIGN,
|
|
VERTICAL_ALIGN,
|
|
} from "../constants";
|
|
import {
|
|
newElement,
|
|
newLinearElement,
|
|
redrawTextBoundingBox,
|
|
} from "../element";
|
|
import { bindLinearElement } from "../element/binding";
|
|
import { mutateElement } from "../element/mutateElement";
|
|
import {
|
|
ElementConstructorOpts,
|
|
newTextElement,
|
|
regenerateId,
|
|
} from "../element/newElement";
|
|
import {
|
|
getDefaultLineHeight,
|
|
measureText,
|
|
normalizeText,
|
|
} from "../element/textElement";
|
|
import {
|
|
ExcalidrawBindableElement,
|
|
ExcalidrawElement,
|
|
ExcalidrawFrameElement,
|
|
ExcalidrawFreeDrawElement,
|
|
ExcalidrawGenericElement,
|
|
ExcalidrawImageElement,
|
|
ExcalidrawLinearElement,
|
|
ExcalidrawSelectionElement,
|
|
ExcalidrawTextElement,
|
|
FontFamilyValues,
|
|
TextAlign,
|
|
VerticalAlign,
|
|
} from "../element/types";
|
|
import { MarkOptional } from "../utility-types";
|
|
import { getFontString } from "../utils";
|
|
|
|
export type ValidLinearElement = {
|
|
type: "arrow" | "line";
|
|
x: number;
|
|
y: number;
|
|
label?: {
|
|
text: string;
|
|
fontSize?: number;
|
|
fontFamily?: FontFamilyValues;
|
|
textAlign?: TextAlign;
|
|
verticalAlign?: VerticalAlign;
|
|
} & MarkOptional<ElementConstructorOpts, "x" | "y">;
|
|
end?:
|
|
| (
|
|
| (
|
|
| {
|
|
type: Exclude<
|
|
ExcalidrawBindableElement["type"],
|
|
"image" | "selection" | "text" | "frame"
|
|
>;
|
|
id?: ExcalidrawGenericElement["id"];
|
|
}
|
|
| {
|
|
id: ExcalidrawGenericElement["id"];
|
|
type?: Exclude<
|
|
ExcalidrawBindableElement["type"],
|
|
"image" | "selection" | "text" | "frame"
|
|
>;
|
|
}
|
|
)
|
|
| ((
|
|
| {
|
|
type: "text";
|
|
text: string;
|
|
}
|
|
| {
|
|
type?: "text";
|
|
id: ExcalidrawTextElement["id"];
|
|
text: string;
|
|
}
|
|
) &
|
|
Partial<ExcalidrawTextElement>)
|
|
) &
|
|
MarkOptional<ElementConstructorOpts, "x" | "y">;
|
|
start?:
|
|
| (
|
|
| (
|
|
| {
|
|
type: Exclude<
|
|
ExcalidrawBindableElement["type"],
|
|
"image" | "selection" | "text" | "frame"
|
|
>;
|
|
id?: ExcalidrawGenericElement["id"];
|
|
}
|
|
| {
|
|
id: ExcalidrawGenericElement["id"];
|
|
type?: Exclude<
|
|
ExcalidrawBindableElement["type"],
|
|
"image" | "selection" | "text" | "frame"
|
|
>;
|
|
}
|
|
)
|
|
| ((
|
|
| {
|
|
type: "text";
|
|
text: string;
|
|
}
|
|
| {
|
|
type?: "text";
|
|
id: ExcalidrawTextElement["id"];
|
|
text: string;
|
|
}
|
|
) &
|
|
Partial<ExcalidrawTextElement>)
|
|
) &
|
|
MarkOptional<ElementConstructorOpts, "x" | "y">;
|
|
} & Partial<ExcalidrawLinearElement>;
|
|
|
|
export type ValidContainer =
|
|
| {
|
|
type: Exclude<ExcalidrawGenericElement["type"], "selection">;
|
|
id?: ExcalidrawGenericElement["id"];
|
|
label?: {
|
|
text: string;
|
|
fontSize?: number;
|
|
fontFamily?: FontFamilyValues;
|
|
textAlign?: TextAlign;
|
|
verticalAlign?: VerticalAlign;
|
|
} & MarkOptional<ElementConstructorOpts, "x" | "y">;
|
|
} & ElementConstructorOpts;
|
|
|
|
export interface ExcalidrawProgrammaticAPI {
|
|
elements?:
|
|
| readonly (
|
|
| Extract<
|
|
ExcalidrawElement,
|
|
| ExcalidrawSelectionElement
|
|
| ExcalidrawFreeDrawElement
|
|
| ExcalidrawFrameElement
|
|
>
|
|
| ({
|
|
type: Extract<ExcalidrawLinearElement["type"], "line">;
|
|
x: number;
|
|
y: number;
|
|
} & Partial<ExcalidrawLinearElement>)
|
|
| ValidContainer
|
|
| ValidLinearElement
|
|
| ({
|
|
type: "text";
|
|
text: string;
|
|
x: number;
|
|
y: number;
|
|
id?: ExcalidrawTextElement["id"];
|
|
} & Partial<ExcalidrawTextElement>)
|
|
| ({
|
|
type: Extract<ExcalidrawImageElement["type"], "image">;
|
|
x: number;
|
|
y: number;
|
|
} & Partial<ExcalidrawImageElement>)
|
|
)[]
|
|
| null;
|
|
}
|
|
export const ELEMENTS_SUPPORTING_PROGRAMMATIC_API = [
|
|
"rectangle",
|
|
"ellipse",
|
|
"diamond",
|
|
"text",
|
|
"arrow",
|
|
"line",
|
|
];
|
|
|
|
const DEFAULT_LINEAR_ELEMENT_PROPS = {
|
|
width: 300,
|
|
height: 0,
|
|
};
|
|
|
|
const DEFAULT_DIMENSION = 100;
|
|
|
|
const bindTextToContainer = (
|
|
containerProps: ValidContainer | ({ type: "arrow" } & ValidLinearElement),
|
|
textProps: { text: string } & MarkOptional<ElementConstructorOpts, "x" | "y">,
|
|
) => {
|
|
let container;
|
|
if (containerProps.type === "arrow") {
|
|
const width = containerProps.width || DEFAULT_LINEAR_ELEMENT_PROPS.width;
|
|
const height = containerProps.height || DEFAULT_LINEAR_ELEMENT_PROPS.height;
|
|
container = newLinearElement({
|
|
width,
|
|
height,
|
|
endArrowhead: "arrow",
|
|
points: [
|
|
[0, 0],
|
|
[width, height],
|
|
],
|
|
...containerProps,
|
|
});
|
|
} else {
|
|
container = newElement({
|
|
...containerProps,
|
|
});
|
|
}
|
|
const textElement: ExcalidrawTextElement = newTextElement({
|
|
x: 0,
|
|
y: 0,
|
|
textAlign: TEXT_ALIGN.CENTER,
|
|
verticalAlign: VERTICAL_ALIGN.MIDDLE,
|
|
...textProps,
|
|
containerId: container.id,
|
|
strokeColor: textProps.strokeColor || container.strokeColor,
|
|
});
|
|
|
|
mutateElement(container, {
|
|
boundElements: (container.boundElements || []).concat({
|
|
type: "text",
|
|
id: textElement.id,
|
|
}),
|
|
});
|
|
|
|
redrawTextBoundingBox(textElement, container);
|
|
|
|
return [container, textElement];
|
|
};
|
|
|
|
const bindLinearElementToElement = (
|
|
linearElement: ValidLinearElement,
|
|
): {
|
|
linearElement: ExcalidrawLinearElement;
|
|
startBoundElement?: ExcalidrawElement;
|
|
endBoundElement?: ExcalidrawElement;
|
|
} => {
|
|
const {
|
|
start,
|
|
end,
|
|
type,
|
|
endArrowhead = linearElement.type === "arrow" ? "arrow" : null,
|
|
...rest
|
|
} = linearElement;
|
|
const width = linearElement.width || DEFAULT_LINEAR_ELEMENT_PROPS.width;
|
|
const height = linearElement.height || DEFAULT_LINEAR_ELEMENT_PROPS.height;
|
|
const excliadrawLinearElement = newLinearElement({
|
|
type,
|
|
width,
|
|
height,
|
|
points: [
|
|
[0, 0],
|
|
[width, height],
|
|
],
|
|
endArrowhead,
|
|
...rest,
|
|
});
|
|
|
|
let startBoundElement;
|
|
let endBoundElement;
|
|
|
|
mutateElement(excliadrawLinearElement, {
|
|
startBinding: linearElement?.startBinding || null,
|
|
endBinding: linearElement.endBinding || null,
|
|
});
|
|
|
|
if (start) {
|
|
const width = start?.width ?? DEFAULT_DIMENSION;
|
|
const height = start?.height ?? DEFAULT_DIMENSION;
|
|
|
|
let existingElement;
|
|
if (start.id) {
|
|
existingElement = excalidrawElements
|
|
.get()
|
|
.find((ele) => ele?.id === start.id) as Exclude<
|
|
ExcalidrawBindableElement,
|
|
ExcalidrawImageElement | ExcalidrawFrameElement
|
|
>;
|
|
if (!existingElement) {
|
|
console.error(`No element for start binding with id ${start.id} found`);
|
|
}
|
|
}
|
|
|
|
const startX = start.x || excliadrawLinearElement.x - width;
|
|
const startY = start.y || excliadrawLinearElement.y - height / 2;
|
|
const startType = existingElement ? existingElement.type : start.type;
|
|
|
|
if (startType) {
|
|
if (startType === "text") {
|
|
let text = "";
|
|
if (existingElement && existingElement.type === "text") {
|
|
text = existingElement.text;
|
|
} else if (start.type === "text") {
|
|
text = start.text;
|
|
}
|
|
if (!text) {
|
|
console.error(
|
|
`No text found for start binding text element for ${excliadrawLinearElement.id}`,
|
|
);
|
|
}
|
|
startBoundElement = newTextElement({
|
|
x: startX,
|
|
y: startY,
|
|
type: "text",
|
|
...existingElement,
|
|
...start,
|
|
text,
|
|
});
|
|
// to position the text correctly when coordinates not provided
|
|
mutateElement(startBoundElement, {
|
|
x: start.x || excliadrawLinearElement.x - startBoundElement.width,
|
|
y:
|
|
start.y || excliadrawLinearElement.y - startBoundElement.height / 2,
|
|
});
|
|
} else {
|
|
startBoundElement = newElement({
|
|
x: startX,
|
|
y: startY,
|
|
width,
|
|
height,
|
|
...existingElement,
|
|
...start,
|
|
type: startType,
|
|
});
|
|
}
|
|
|
|
bindLinearElement(
|
|
excliadrawLinearElement,
|
|
startBoundElement as ExcalidrawBindableElement,
|
|
"start",
|
|
);
|
|
}
|
|
}
|
|
if (end) {
|
|
const height = end?.height ?? DEFAULT_DIMENSION;
|
|
const width = end?.width ?? DEFAULT_DIMENSION;
|
|
|
|
let existingElement;
|
|
if (end.id) {
|
|
existingElement = excalidrawElements
|
|
.get()
|
|
.find((ele) => ele?.id === end.id) as Exclude<
|
|
ExcalidrawBindableElement,
|
|
ExcalidrawImageElement | ExcalidrawFrameElement
|
|
>;
|
|
if (!existingElement) {
|
|
console.error(`No element for end binding with id ${end.id} found`);
|
|
}
|
|
}
|
|
const endX =
|
|
end.x || excliadrawLinearElement.x + excliadrawLinearElement.width;
|
|
const endY = end.y || excliadrawLinearElement.y - height / 2;
|
|
const endType = existingElement ? existingElement.type : end.type;
|
|
|
|
if (endType) {
|
|
if (endType === "text") {
|
|
let text = "";
|
|
if (existingElement && existingElement.type === "text") {
|
|
text = existingElement.text;
|
|
} else if (end.type === "text") {
|
|
text = end.text;
|
|
}
|
|
|
|
if (!text) {
|
|
console.error(
|
|
`No text found for end binding text element for ${excliadrawLinearElement.id}`,
|
|
);
|
|
}
|
|
endBoundElement = newTextElement({
|
|
x: endX,
|
|
y: endY,
|
|
type: "text",
|
|
...existingElement,
|
|
...end,
|
|
text,
|
|
});
|
|
// to position the text correctly when coordinates not provided
|
|
mutateElement(endBoundElement, {
|
|
y: end.y || excliadrawLinearElement.y - endBoundElement.height / 2,
|
|
});
|
|
} else {
|
|
endBoundElement = newElement({
|
|
x: endX,
|
|
y: endY,
|
|
width,
|
|
height,
|
|
...existingElement,
|
|
...end,
|
|
type: endType,
|
|
}) as ExcalidrawBindableElement;
|
|
}
|
|
|
|
bindLinearElement(
|
|
excliadrawLinearElement,
|
|
endBoundElement as ExcalidrawBindableElement,
|
|
"end",
|
|
);
|
|
}
|
|
}
|
|
return {
|
|
linearElement: excliadrawLinearElement,
|
|
startBoundElement,
|
|
endBoundElement,
|
|
};
|
|
};
|
|
|
|
const excalidrawElements = (() => {
|
|
const res: ExcalidrawElement[] = [];
|
|
const elementMap = new Map<string, number>();
|
|
|
|
const add = (ele?: ExcalidrawElement) => {
|
|
if (!ele) {
|
|
return;
|
|
}
|
|
const index = elementMap.get(ele.id);
|
|
if (index !== undefined && index >= 0) {
|
|
res[index] = ele;
|
|
} else {
|
|
res.push(ele);
|
|
const index = res.length - 1;
|
|
elementMap.set(ele.id, index);
|
|
}
|
|
};
|
|
const clear = () => {
|
|
res.length = 0;
|
|
elementMap.clear();
|
|
};
|
|
const get = () => {
|
|
return res;
|
|
};
|
|
const hasElementWithId = (id: string) => {
|
|
const index = elementMap.get(id);
|
|
return index !== undefined && index >= 0;
|
|
};
|
|
return {
|
|
add,
|
|
clear,
|
|
get,
|
|
hasElementWithId,
|
|
};
|
|
})();
|
|
|
|
export const convertToExcalidrawElements = (
|
|
elements: ExcalidrawProgrammaticAPI["elements"],
|
|
): ExcalidrawElement[] => {
|
|
excalidrawElements.clear();
|
|
if (!elements) {
|
|
return [];
|
|
}
|
|
elements.forEach((element) => {
|
|
let elementId = element.id || regenerateId(null);
|
|
|
|
// To make sure every element has a unique id
|
|
while (excalidrawElements.hasElementWithId(elementId)) {
|
|
elementId = regenerateId(elementId);
|
|
}
|
|
|
|
if (!ELEMENTS_SUPPORTING_PROGRAMMATIC_API.includes(element.type)) {
|
|
excalidrawElements.add(element as ExcalidrawElement);
|
|
|
|
return;
|
|
}
|
|
const elementWithId = { ...element, id: elementId };
|
|
|
|
if (
|
|
(elementWithId.type === "rectangle" ||
|
|
elementWithId.type === "ellipse" ||
|
|
elementWithId.type === "diamond" ||
|
|
elementWithId.type === "arrow") &&
|
|
elementWithId?.label?.text
|
|
) {
|
|
let [container, text] = bindTextToContainer(
|
|
elementWithId as
|
|
| ValidContainer
|
|
| ({
|
|
type: "arrow";
|
|
} & ValidLinearElement),
|
|
elementWithId?.label,
|
|
);
|
|
excalidrawElements.add(container);
|
|
excalidrawElements.add(text);
|
|
|
|
if (container.type === "arrow") {
|
|
const originalStart =
|
|
elementWithId.type === "arrow" ? elementWithId?.start : undefined;
|
|
const originalEnd =
|
|
elementWithId.type === "arrow" ? elementWithId?.end : undefined;
|
|
const { linearElement, startBoundElement, endBoundElement } =
|
|
bindLinearElementToElement({
|
|
...container,
|
|
start: originalStart,
|
|
end: originalEnd,
|
|
});
|
|
container = linearElement;
|
|
excalidrawElements.add(linearElement);
|
|
excalidrawElements.add(startBoundElement);
|
|
excalidrawElements.add(endBoundElement);
|
|
}
|
|
} else {
|
|
let excalidrawElement;
|
|
if (elementWithId.type === "text") {
|
|
const fontFamily = elementWithId?.fontFamily || DEFAULT_FONT_FAMILY;
|
|
const fontSize = elementWithId?.fontSize || DEFAULT_FONT_SIZE;
|
|
const lineHeight =
|
|
elementWithId?.lineHeight || getDefaultLineHeight(fontFamily);
|
|
const text = elementWithId.text ?? "";
|
|
const normalizedText = normalizeText(text);
|
|
const metrics = measureText(
|
|
normalizedText,
|
|
getFontString({ fontFamily, fontSize }),
|
|
lineHeight,
|
|
);
|
|
excalidrawElement = {
|
|
width: metrics.width,
|
|
height: metrics.height,
|
|
fontFamily,
|
|
fontSize,
|
|
...elementWithId,
|
|
};
|
|
|
|
excalidrawElements.add(excalidrawElement as ExcalidrawTextElement);
|
|
} else if (elementWithId.type === "arrow") {
|
|
const { linearElement, startBoundElement, endBoundElement } =
|
|
bindLinearElementToElement(elementWithId);
|
|
excalidrawElements.add(linearElement);
|
|
excalidrawElements.add(startBoundElement);
|
|
excalidrawElements.add(endBoundElement);
|
|
} else if (elementWithId.type === "line") {
|
|
const width = elementWithId.width || DEFAULT_LINEAR_ELEMENT_PROPS.width;
|
|
const height =
|
|
elementWithId.height || DEFAULT_LINEAR_ELEMENT_PROPS.height;
|
|
const lineElement = newLinearElement({
|
|
width,
|
|
height,
|
|
points: [
|
|
[0, 0],
|
|
[width, height],
|
|
],
|
|
...elementWithId,
|
|
});
|
|
excalidrawElements.add(lineElement);
|
|
} else {
|
|
excalidrawElement = {
|
|
...elementWithId,
|
|
width: elementWithId?.width || DEFAULT_DIMENSION,
|
|
height: elementWithId?.height || DEFAULT_DIMENSION,
|
|
} as ExcalidrawGenericElement;
|
|
excalidrawElements.add(excalidrawElement);
|
|
}
|
|
}
|
|
});
|
|
return excalidrawElements.get();
|
|
};
|