You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
732 lines
20 KiB
732 lines
20 KiB
import React from "react"; |
|
import { pointFrom } from "@excalidraw/math"; |
|
|
|
import { |
|
FONT_FAMILY, |
|
ORIG_ID, |
|
ROUNDNESS, |
|
isPrimitive, |
|
} from "@excalidraw/common"; |
|
|
|
import { Excalidraw } from "@excalidraw/excalidraw"; |
|
|
|
import { actionDuplicateSelection } from "@excalidraw/excalidraw/actions"; |
|
|
|
import { API } from "@excalidraw/excalidraw/tests/helpers/api"; |
|
|
|
import { UI, Keyboard, Pointer } from "@excalidraw/excalidraw/tests/helpers/ui"; |
|
|
|
import { |
|
act, |
|
assertElements, |
|
getCloneByOrigId, |
|
render, |
|
} from "@excalidraw/excalidraw/tests/test-utils"; |
|
|
|
import type { LocalPoint } from "@excalidraw/math"; |
|
|
|
import { mutateElement } from "../src/mutateElement"; |
|
import { duplicateElement, duplicateElements } from "../src/duplicate"; |
|
|
|
import type { ExcalidrawLinearElement } from "../src/types"; |
|
|
|
const { h } = window; |
|
const mouse = new Pointer("mouse"); |
|
|
|
const assertCloneObjects = (source: any, clone: any) => { |
|
for (const key in clone) { |
|
if (clone.hasOwnProperty(key) && !isPrimitive(clone[key])) { |
|
expect(clone[key]).not.toBe(source[key]); |
|
if (source[key]) { |
|
assertCloneObjects(source[key], clone[key]); |
|
} |
|
} |
|
} |
|
}; |
|
|
|
describe("duplicating single elements", () => { |
|
it("clones arrow element", () => { |
|
const element = API.createElement({ |
|
type: "arrow", |
|
x: 0, |
|
y: 0, |
|
strokeColor: "#000000", |
|
backgroundColor: "transparent", |
|
fillStyle: "hachure", |
|
strokeWidth: 1, |
|
strokeStyle: "solid", |
|
roundness: { type: ROUNDNESS.PROPORTIONAL_RADIUS }, |
|
roughness: 1, |
|
opacity: 100, |
|
}); |
|
|
|
// @ts-ignore |
|
element.__proto__ = { hello: "world" }; |
|
|
|
mutateElement(element, { |
|
points: [pointFrom<LocalPoint>(1, 2), pointFrom<LocalPoint>(3, 4)], |
|
}); |
|
|
|
const copy = duplicateElement(null, new Map(), element, undefined, true); |
|
|
|
assertCloneObjects(element, copy); |
|
|
|
// assert we clone the object's prototype |
|
// @ts-ignore |
|
expect(copy.__proto__).toEqual({ hello: "world" }); |
|
expect(copy.hasOwnProperty("hello")).toBe(false); |
|
|
|
expect(copy.points).not.toBe(element.points); |
|
expect(copy).not.toHaveProperty("shape"); |
|
expect(copy.id).not.toBe(element.id); |
|
expect(typeof copy.id).toBe("string"); |
|
expect(copy.seed).not.toBe(element.seed); |
|
expect(typeof copy.seed).toBe("number"); |
|
expect(copy).toEqual({ |
|
...element, |
|
id: copy.id, |
|
seed: copy.seed, |
|
version: copy.version, |
|
versionNonce: copy.versionNonce, |
|
}); |
|
}); |
|
|
|
it("clones text element", () => { |
|
const element = API.createElement({ |
|
type: "text", |
|
x: 0, |
|
y: 0, |
|
strokeColor: "#000000", |
|
backgroundColor: "transparent", |
|
fillStyle: "hachure", |
|
strokeWidth: 1, |
|
strokeStyle: "solid", |
|
roundness: null, |
|
roughness: 1, |
|
opacity: 100, |
|
text: "hello", |
|
fontSize: 20, |
|
fontFamily: FONT_FAMILY.Virgil, |
|
textAlign: "left", |
|
verticalAlign: "top", |
|
}); |
|
|
|
const copy = duplicateElement(null, new Map(), element); |
|
|
|
assertCloneObjects(element, copy); |
|
|
|
expect(copy).not.toHaveProperty("points"); |
|
expect(copy).not.toHaveProperty("shape"); |
|
expect(copy.id).not.toBe(element.id); |
|
expect(typeof copy.id).toBe("string"); |
|
expect(typeof copy.seed).toBe("number"); |
|
}); |
|
}); |
|
|
|
describe("duplicating multiple elements", () => { |
|
it("duplicateElements should clone bindings", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
id: "rectangle1", |
|
boundElements: [ |
|
{ id: "arrow1", type: "arrow" }, |
|
{ id: "arrow2", type: "arrow" }, |
|
{ id: "text1", type: "text" }, |
|
], |
|
}); |
|
|
|
const text1 = API.createElement({ |
|
type: "text", |
|
id: "text1", |
|
containerId: "rectangle1", |
|
}); |
|
|
|
const arrow1 = API.createElement({ |
|
type: "arrow", |
|
id: "arrow1", |
|
startBinding: { |
|
elementId: "rectangle1", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
}); |
|
|
|
const arrow2 = API.createElement({ |
|
type: "arrow", |
|
id: "arrow2", |
|
endBinding: { |
|
elementId: "rectangle1", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
boundElements: [{ id: "text2", type: "text" }], |
|
}); |
|
|
|
const text2 = API.createElement({ |
|
type: "text", |
|
id: "text2", |
|
containerId: "arrow2", |
|
}); |
|
|
|
// ------------------------------------------------------------------------- |
|
|
|
const origElements = [rectangle1, text1, arrow1, arrow2, text2] as const; |
|
const { newElements: clonedElements } = duplicateElements({ |
|
type: "everything", |
|
elements: origElements, |
|
}); |
|
|
|
// generic id in-equality checks |
|
// -------------------------------------------------------------------------- |
|
expect(origElements.map((e) => e.type)).toEqual( |
|
clonedElements.map((e) => e.type), |
|
); |
|
origElements.forEach((origElement, idx) => { |
|
const clonedElement = clonedElements[idx]; |
|
expect(origElement).toEqual( |
|
expect.objectContaining({ |
|
id: expect.not.stringMatching(clonedElement.id), |
|
type: clonedElement.type, |
|
}), |
|
); |
|
if ("containerId" in origElement) { |
|
expect(origElement.containerId).not.toBe( |
|
(clonedElement as any).containerId, |
|
); |
|
} |
|
if ("endBinding" in origElement) { |
|
if (origElement.endBinding) { |
|
expect(origElement.endBinding.elementId).not.toBe( |
|
(clonedElement as any).endBinding?.elementId, |
|
); |
|
} else { |
|
expect((clonedElement as any).endBinding).toBeNull(); |
|
} |
|
} |
|
if ("startBinding" in origElement) { |
|
if (origElement.startBinding) { |
|
expect(origElement.startBinding.elementId).not.toBe( |
|
(clonedElement as any).startBinding?.elementId, |
|
); |
|
} else { |
|
expect((clonedElement as any).startBinding).toBeNull(); |
|
} |
|
} |
|
}); |
|
// -------------------------------------------------------------------------- |
|
|
|
const clonedArrows = clonedElements.filter( |
|
(e) => e.type === "arrow", |
|
) as ExcalidrawLinearElement[]; |
|
|
|
const [clonedRectangle, clonedText1, , clonedArrow2, clonedArrowLabel] = |
|
clonedElements as any as typeof origElements; |
|
|
|
expect(clonedText1.containerId).toBe(clonedRectangle.id); |
|
expect( |
|
clonedRectangle.boundElements!.find((e) => e.id === clonedText1.id), |
|
).toEqual( |
|
expect.objectContaining({ |
|
id: clonedText1.id, |
|
type: clonedText1.type, |
|
}), |
|
); |
|
expect(clonedRectangle.type).toBe("rectangle"); |
|
|
|
clonedArrows.forEach((arrow) => { |
|
expect( |
|
clonedRectangle.boundElements!.find((e) => e.id === arrow.id), |
|
).toEqual( |
|
expect.objectContaining({ |
|
id: arrow.id, |
|
type: arrow.type, |
|
}), |
|
); |
|
|
|
if (arrow.endBinding) { |
|
expect(arrow.endBinding.elementId).toBe(clonedRectangle.id); |
|
} |
|
if (arrow.startBinding) { |
|
expect(arrow.startBinding.elementId).toBe(clonedRectangle.id); |
|
} |
|
}); |
|
|
|
expect(clonedArrow2.boundElements).toEqual([ |
|
{ type: "text", id: clonedArrowLabel.id }, |
|
]); |
|
expect(clonedArrowLabel.containerId).toBe(clonedArrow2.id); |
|
}); |
|
|
|
it("should remove id references of elements that aren't found", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
id: "rectangle1", |
|
boundElements: [ |
|
// should keep |
|
{ id: "arrow1", type: "arrow" }, |
|
// should drop |
|
{ id: "arrow-not-exists", type: "arrow" }, |
|
// should drop |
|
{ id: "text-not-exists", type: "text" }, |
|
], |
|
}); |
|
|
|
const arrow1 = API.createElement({ |
|
type: "arrow", |
|
id: "arrow1", |
|
startBinding: { |
|
elementId: "rectangle1", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
}); |
|
|
|
const text1 = API.createElement({ |
|
type: "text", |
|
id: "text1", |
|
containerId: "rectangle-not-exists", |
|
}); |
|
|
|
const arrow2 = API.createElement({ |
|
type: "arrow", |
|
id: "arrow2", |
|
startBinding: { |
|
elementId: "rectangle1", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
endBinding: { |
|
elementId: "rectangle-not-exists", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
}); |
|
|
|
const arrow3 = API.createElement({ |
|
type: "arrow", |
|
id: "arrow3", |
|
startBinding: { |
|
elementId: "rectangle-not-exists", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
endBinding: { |
|
elementId: "rectangle1", |
|
focus: 0.2, |
|
gap: 7, |
|
fixedPoint: [0.5, 1], |
|
}, |
|
}); |
|
|
|
// ------------------------------------------------------------------------- |
|
|
|
const origElements = [rectangle1, text1, arrow1, arrow2, arrow3] as const; |
|
const { newElements: clonedElements } = duplicateElements({ |
|
type: "everything", |
|
elements: origElements, |
|
}) as any as { newElements: typeof origElements }; |
|
|
|
const [ |
|
clonedRectangle, |
|
clonedText1, |
|
clonedArrow1, |
|
clonedArrow2, |
|
clonedArrow3, |
|
] = clonedElements; |
|
|
|
expect(clonedRectangle.boundElements).toEqual([ |
|
{ id: clonedArrow1.id, type: "arrow" }, |
|
]); |
|
|
|
expect(clonedText1.containerId).toBe(null); |
|
|
|
expect(clonedArrow2.startBinding).toEqual({ |
|
...arrow2.startBinding, |
|
elementId: clonedRectangle.id, |
|
}); |
|
expect(clonedArrow2.endBinding).toBe(null); |
|
expect(clonedArrow3.startBinding).toBe(null); |
|
expect(clonedArrow3.endBinding).toEqual({ |
|
...arrow3.endBinding, |
|
elementId: clonedRectangle.id, |
|
}); |
|
}); |
|
|
|
describe("should duplicate all group ids", () => { |
|
it("should regenerate all group ids and keep them consistent across elements", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
groupIds: ["g1"], |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
groupIds: ["g2", "g1"], |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
groupIds: ["g2", "g1"], |
|
}); |
|
|
|
const origElements = [rectangle1, rectangle2, rectangle3] as const; |
|
const { newElements: clonedElements } = duplicateElements({ |
|
type: "everything", |
|
elements: origElements, |
|
}) as any as { newElements: typeof origElements }; |
|
const [clonedRectangle1, clonedRectangle2, clonedRectangle3] = |
|
clonedElements; |
|
|
|
expect(rectangle1.groupIds[0]).not.toBe(clonedRectangle1.groupIds[0]); |
|
expect(rectangle2.groupIds[0]).not.toBe(clonedRectangle2.groupIds[0]); |
|
expect(rectangle2.groupIds[1]).not.toBe(clonedRectangle2.groupIds[1]); |
|
|
|
expect(clonedRectangle1.groupIds[0]).toBe(clonedRectangle2.groupIds[1]); |
|
expect(clonedRectangle2.groupIds[0]).toBe(clonedRectangle3.groupIds[0]); |
|
expect(clonedRectangle2.groupIds[1]).toBe(clonedRectangle3.groupIds[1]); |
|
}); |
|
|
|
it("should keep and regenerate ids of groups even if invalid", () => { |
|
// lone element shouldn't be able to be grouped with itself, |
|
// but hard to check against in a performant way so we ignore it |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
groupIds: ["g1"], |
|
}); |
|
|
|
const { |
|
newElements: [clonedRectangle1], |
|
} = duplicateElements({ type: "everything", elements: [rectangle1] }); |
|
|
|
expect(typeof clonedRectangle1.groupIds[0]).toBe("string"); |
|
expect(rectangle1.groupIds[0]).not.toBe(clonedRectangle1.groupIds[0]); |
|
}); |
|
}); |
|
}); |
|
|
|
describe("duplication z-order", () => { |
|
beforeEach(async () => { |
|
await render(<Excalidraw />); |
|
}); |
|
|
|
it("duplication z order with Cmd+D for the lowest z-ordered element should be +1 for the clone", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
API.setSelectedElements([rectangle1]); |
|
|
|
act(() => { |
|
h.app.actionManager.executeAction(actionDuplicateSelection); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ id: rectangle1.id }, |
|
{ [ORIG_ID]: rectangle1.id, selected: true }, |
|
{ id: rectangle2.id }, |
|
{ id: rectangle3.id }, |
|
]); |
|
}); |
|
|
|
it("duplication z order with Cmd+D for the highest z-ordered element should be +1 for the clone", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
API.setSelectedElements([rectangle3]); |
|
|
|
act(() => { |
|
h.app.actionManager.executeAction(actionDuplicateSelection); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ id: rectangle1.id }, |
|
{ id: rectangle2.id }, |
|
{ id: rectangle3.id }, |
|
{ [ORIG_ID]: rectangle3.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("duplication z order with alt+drag for the lowest z-ordered element should be +1 for the clone", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
|
|
mouse.select(rectangle1); |
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle1.x + 5, rectangle1.y + 5); |
|
mouse.up(rectangle1.x + 5, rectangle1.y + 5); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: rectangle1.id }, |
|
{ id: rectangle1.id, selected: true }, |
|
{ id: rectangle2.id }, |
|
{ id: rectangle3.id }, |
|
]); |
|
}); |
|
|
|
it("duplication z order with alt+drag for the highest z-ordered element should be +1 for the clone", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
|
|
mouse.select(rectangle3); |
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle3.x + 5, rectangle3.y + 5); |
|
mouse.up(rectangle3.x + 5, rectangle3.y + 5); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ id: rectangle1.id }, |
|
{ id: rectangle2.id }, |
|
{ [ORIG_ID]: rectangle3.id }, |
|
{ id: rectangle3.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("duplication z order with alt+drag for the lowest z-ordered element should be +1 for the clone", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
|
|
mouse.select(rectangle1); |
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle1.x + 5, rectangle1.y + 5); |
|
mouse.up(rectangle1.x + 5, rectangle1.y + 5); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: rectangle1.id }, |
|
{ id: rectangle1.id, selected: true }, |
|
{ id: rectangle2.id }, |
|
{ id: rectangle3.id }, |
|
]); |
|
}); |
|
|
|
it("duplication z order with alt+drag with grouped elements should consider the group together when determining z-index", () => { |
|
const rectangle1 = API.createElement({ |
|
type: "rectangle", |
|
x: 0, |
|
y: 0, |
|
groupIds: ["group1"], |
|
}); |
|
const rectangle2 = API.createElement({ |
|
type: "rectangle", |
|
x: 10, |
|
y: 10, |
|
groupIds: ["group1"], |
|
}); |
|
const rectangle3 = API.createElement({ |
|
type: "rectangle", |
|
x: 20, |
|
y: 20, |
|
groupIds: ["group1"], |
|
}); |
|
|
|
API.setElements([rectangle1, rectangle2, rectangle3]); |
|
|
|
mouse.select(rectangle1); |
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle1.x + 5, rectangle1.y + 5); |
|
mouse.up(rectangle1.x + 15, rectangle1.y + 15); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: rectangle1.id }, |
|
{ [ORIG_ID]: rectangle2.id }, |
|
{ [ORIG_ID]: rectangle3.id }, |
|
{ id: rectangle1.id, selected: true }, |
|
{ id: rectangle2.id, selected: true }, |
|
{ id: rectangle3.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("reverse-duplicating text container (in-order)", async () => { |
|
const [rectangle, text] = API.createTextContainer(); |
|
API.setElements([rectangle, text]); |
|
API.setSelectedElements([rectangle, text]); |
|
|
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle.x + 5, rectangle.y + 5); |
|
mouse.up(rectangle.x + 15, rectangle.y + 15); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: rectangle.id }, |
|
{ |
|
[ORIG_ID]: text.id, |
|
containerId: getCloneByOrigId(rectangle.id)?.id, |
|
}, |
|
{ id: rectangle.id, selected: true }, |
|
{ id: text.id, containerId: rectangle.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("reverse-duplicating text container (out-of-order)", async () => { |
|
const [rectangle, text] = API.createTextContainer(); |
|
API.setElements([text, rectangle]); |
|
API.setSelectedElements([rectangle, text]); |
|
|
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(rectangle.x + 5, rectangle.y + 5); |
|
mouse.up(rectangle.x + 15, rectangle.y + 15); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: rectangle.id }, |
|
{ |
|
[ORIG_ID]: text.id, |
|
containerId: getCloneByOrigId(rectangle.id)?.id, |
|
}, |
|
{ id: rectangle.id, selected: true }, |
|
{ id: text.id, containerId: rectangle.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("reverse-duplicating labeled arrows (in-order)", async () => { |
|
const [arrow, text] = API.createLabeledArrow(); |
|
|
|
API.setElements([arrow, text]); |
|
API.setSelectedElements([arrow, text]); |
|
|
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(arrow.x + 5, arrow.y + 5); |
|
mouse.up(arrow.x + 15, arrow.y + 15); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: arrow.id }, |
|
{ |
|
[ORIG_ID]: text.id, |
|
containerId: getCloneByOrigId(arrow.id)?.id, |
|
}, |
|
{ id: arrow.id, selected: true }, |
|
{ id: text.id, containerId: arrow.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("reverse-duplicating labeled arrows (out-of-order)", async () => { |
|
const [arrow, text] = API.createLabeledArrow(); |
|
|
|
API.setElements([text, arrow]); |
|
API.setSelectedElements([arrow, text]); |
|
|
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(arrow.x + 5, arrow.y + 5); |
|
mouse.up(arrow.x + 15, arrow.y + 15); |
|
}); |
|
|
|
assertElements(h.elements, [ |
|
{ [ORIG_ID]: arrow.id }, |
|
{ |
|
[ORIG_ID]: text.id, |
|
containerId: getCloneByOrigId(arrow.id)?.id, |
|
}, |
|
{ id: arrow.id, selected: true }, |
|
{ id: text.id, containerId: arrow.id, selected: true }, |
|
]); |
|
}); |
|
|
|
it("reverse-duplicating bindable element with bound arrow should keep the arrow on the duplicate", () => { |
|
const rect = UI.createElement("rectangle", { |
|
x: 0, |
|
y: 0, |
|
width: 100, |
|
height: 100, |
|
}); |
|
|
|
const arrow = UI.createElement("arrow", { |
|
x: -100, |
|
y: 50, |
|
width: 95, |
|
height: 0, |
|
}); |
|
|
|
expect(arrow.endBinding?.elementId).toBe(rect.id); |
|
|
|
Keyboard.withModifierKeys({ alt: true }, () => { |
|
mouse.down(5, 5); |
|
mouse.up(15, 15); |
|
}); |
|
|
|
expect(window.h.elements).toHaveLength(3); |
|
|
|
const newRect = window.h.elements[0]; |
|
|
|
expect(arrow.endBinding?.elementId).toBe(newRect.id); |
|
expect(newRect.boundElements?.[0]?.id).toBe(arrow.id); |
|
}); |
|
});
|
|
|