safe conversion between line, sharp, curved, and elbow

This commit is contained in:
Ryan Di 2025-04-23 17:59:03 +10:00
parent c90cdb7b74
commit 7541fadf9c
6 changed files with 466 additions and 249 deletions

View file

@ -3,12 +3,16 @@ import {
randomInteger,
getUpdatedTimestamp,
toBrandedType,
isDevEnv,
ROUNDNESS,
} from "@excalidraw/common";
// TODO: remove direct dependency on the scene, should be passed in or injected instead
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
import Scene from "@excalidraw/excalidraw/scene/Scene";
import type { AppClassProperties } from "@excalidraw/excalidraw/types";
import type { Radians } from "@excalidraw/math";
import type { Mutable } from "@excalidraw/common/utility-types";
@ -16,9 +20,26 @@ import type { Mutable } from "@excalidraw/common/utility-types";
import { ShapeCache } from "./ShapeCache";
import { updateElbowArrowPoints } from "./elbowArrow";
import { isElbowArrow } from "./typeChecks";
import {
isCurvedArrow,
isElbowArrow,
isSharpArrow,
isUsingAdaptiveRadius,
} from "./typeChecks";
import type { ExcalidrawElement, NonDeletedSceneElementsMap } from "./types";
import type {
ConvertibleGenericTypes,
ConvertibleLinearTypes,
ExcalidrawArrowElement,
ExcalidrawDiamondElement,
ExcalidrawElbowArrowElement,
ExcalidrawElement,
ExcalidrawEllipseElement,
ExcalidrawLinearElement,
ExcalidrawRectangleElement,
ExcalidrawSelectionElement,
NonDeletedSceneElementsMap,
} from "./types";
export type ElementUpdate<TElement extends ExcalidrawElement> = Omit<
Partial<TElement>,
@ -212,3 +233,211 @@ export const bumpVersion = <T extends Mutable<ExcalidrawElement>>(
element.updated = getUpdatedTimestamp();
return element;
};
// Declare the constant array with a read-only type so that its values can only be one of the valid union.
export const CONVERTIBLE_GENERIC_TYPES: readonly ConvertibleGenericTypes[] = [
"rectangle",
"diamond",
"ellipse",
];
const ELBOW_ARROW_SPECIFIC_PROPERTIES: Array<
keyof ExcalidrawElbowArrowElement
> = ["elbowed", "fixedSegments", "startIsSpecial", "endIsSpecial"];
const ARROW_TO_LINE_CLEAR_PROPERTIES: Array<keyof ExcalidrawArrowElement> = [
"startArrowhead",
"endArrowhead",
"startBinding",
"endBinding",
];
export const CONVERTIBLE_LINEAR_TYPES: readonly ConvertibleLinearTypes[] = [
"line",
"sharpArrow",
"curvedArrow",
"elbowArrow",
];
type NewElementType = ConvertibleGenericTypes | ConvertibleLinearTypes;
export const isConvertibleGenericType = (
elementType: string,
): elementType is ConvertibleGenericTypes =>
CONVERTIBLE_GENERIC_TYPES.includes(elementType as ConvertibleGenericTypes);
export const isConvertibleLinearType = (
elementType: string,
): elementType is ConvertibleLinearTypes =>
elementType === "arrow" ||
CONVERTIBLE_LINEAR_TYPES.includes(elementType as ConvertibleLinearTypes);
/**
* Converts an element to a new type, adding or removing properties as needed
* so that the element object is always valid.
*
* Valid conversions at this point:
* - switching between generic elements
* e.g. rectangle -> diamond
* - switching between linear elements
* e.g. elbow arrow -> line
*/
export const convertElementType = <
TElement extends Mutable<
Exclude<ExcalidrawElement, ExcalidrawSelectionElement>
>,
>(
element: TElement,
newType: NewElementType,
app: AppClassProperties,
informMutation = true,
): ExcalidrawElement => {
if (!isValidConversion(element.type, newType)) {
if (isDevEnv()) {
throw Error(`Invalid conversion from ${element.type} to ${newType}.`);
}
return element;
}
const startType = isSharpArrow(element)
? "sharpArrow"
: isCurvedArrow(element)
? "curvedArrow"
: isElbowArrow(element)
? "elbowArrow"
: element.type;
if (element.type === newType) {
return element;
}
ShapeCache.delete(element);
const update = () => {
(element as any).version++;
(element as any).versionNonce = randomInteger();
(element as any).updated = getUpdatedTimestamp();
if (informMutation) {
app.scene.triggerUpdate();
}
};
if (
isConvertibleGenericType(startType) &&
isConvertibleGenericType(newType)
) {
(element as any).type = newType;
if (newType === "diamond" && element.roundness) {
(element as any).roundness = {
type: isUsingAdaptiveRadius(newType)
? ROUNDNESS.ADAPTIVE_RADIUS
: ROUNDNESS.PROPORTIONAL_RADIUS,
};
}
update();
switch (element.type) {
case "rectangle":
return element as ExcalidrawRectangleElement;
case "diamond":
return element as ExcalidrawDiamondElement;
case "ellipse":
return element as ExcalidrawEllipseElement;
}
}
if (isConvertibleLinearType(element.type)) {
if (newType === "line") {
for (const key of ELBOW_ARROW_SPECIFIC_PROPERTIES) {
delete (element as any)[key];
}
for (const key of ARROW_TO_LINE_CLEAR_PROPERTIES) {
if (key in element) {
(element as any)[key] = null;
}
}
(element as any).type = newType;
}
if (newType === "sharpArrow") {
if (startType === "elbowArrow") {
// drop elbow arrow specific properties
for (const key of ELBOW_ARROW_SPECIFIC_PROPERTIES) {
delete (element as any)[key];
}
}
(element as any).type = "arrow";
(element as any).elbowed = false;
(element as any).roundness = null;
(element as any).startArrowhead = app.state.currentItemStartArrowhead;
(element as any).endArrowhead = app.state.currentItemEndArrowhead;
}
if (newType === "curvedArrow") {
if (startType === "elbowArrow") {
// drop elbow arrow specific properties
for (const key of ELBOW_ARROW_SPECIFIC_PROPERTIES) {
delete (element as any)[key];
}
}
(element as any).type = "arrow";
(element as any).elbowed = false;
(element as any).roundness = {
type: ROUNDNESS.PROPORTIONAL_RADIUS,
};
(element as any).startArrowhead = app.state.currentItemStartArrowhead;
(element as any).endArrowhead = app.state.currentItemEndArrowhead;
}
if (newType === "elbowArrow") {
(element as any).type = "arrow";
(element as any).elbowed = true;
(element as any).fixedSegments = null;
(element as any).startIsSpecial = null;
(element as any).endIsSpecial = null;
}
update();
switch (newType) {
case "line":
return element as ExcalidrawLinearElement;
case "sharpArrow":
return element as ExcalidrawArrowElement;
case "curvedArrow":
return element as ExcalidrawArrowElement;
case "elbowArrow":
return element as ExcalidrawElbowArrowElement;
}
}
return element;
};
const isValidConversion = (
startType: string,
targetType: NewElementType,
): startType is NewElementType => {
if (
isConvertibleGenericType(startType) &&
isConvertibleGenericType(targetType)
) {
return true;
}
if (
isConvertibleLinearType(startType) &&
isConvertibleLinearType(targetType)
) {
return true;
}
// NOTE: add more conversions when needed
return false;
};

View file

@ -119,6 +119,20 @@ export const isElbowArrow = (
return isArrowElement(element) && element.elbowed;
};
export const isSharpArrow = (
element?: ExcalidrawElement,
): element is ExcalidrawArrowElement => {
return isArrowElement(element) && !element.elbowed && !element.roundness;
};
export const isCurvedArrow = (
element?: ExcalidrawElement,
): element is ExcalidrawArrowElement => {
return (
isArrowElement(element) && !element.elbowed && element.roundness !== null
);
};
export const isLinearElementType = (
elementType: ElementOrToolType,
): boolean => {
@ -338,76 +352,3 @@ export const isBounds = (box: unknown): box is Bounds =>
typeof box[1] === "number" &&
typeof box[2] === "number" &&
typeof box[3] === "number";
export const getSwitchableTypeFromElements = (
elements: ExcalidrawElement[],
):
| {
generic: true;
linear: false;
}
| {
linear: true;
generic: false;
}
| {
generic: false;
linear: false;
} => {
if (elements.length === 0) {
return {
generic: false,
linear: false,
};
}
let onlyLinear = true;
for (const element of elements) {
if (
element.type === "rectangle" ||
element.type === "ellipse" ||
element.type === "diamond"
) {
return {
generic: true,
linear: false,
};
}
if (element.type !== "arrow" && element.type !== "line") {
onlyLinear = false;
}
}
if (onlyLinear) {
// check at least some linear element is switchable
// for a linear to be swtichable:
// - no labels
// - not bound to anything
let linear = true;
for (const element of elements) {
if (
isArrowElement(element) &&
(element.startBinding !== null || element.endBinding !== null)
) {
linear = false;
} else if (element.boundElements && element.boundElements.length > 0) {
linear = false;
} else {
linear = true;
break;
}
}
return {
linear,
generic: false,
};
}
return {
generic: false,
linear: false,
};
};

View file

@ -413,5 +413,9 @@ export type ElementsMapOrArray =
| readonly ExcalidrawElement[]
| Readonly<ElementsMap>;
export type GenericSwitchableToolType = "rectangle" | "ellipse" | "diamond";
export type LinearSwitchableToolType = "line" | "arrow";
export type ConvertibleGenericTypes = "rectangle" | "diamond" | "ellipse";
export type ConvertibleLinearTypes =
| "line"
| "sharpArrow"
| "curvedArrow"
| "elbowArrow";