123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852 |
- 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, 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 { duplicatedElements } = duplicateElements({
- type: "everything",
- elements: origElements,
- });
- // generic id in-equality checks
- // --------------------------------------------------------------------------
- expect(origElements.map((e) => e.type)).toEqual(
- duplicatedElements.map((e) => e.type),
- );
- origElements.forEach((origElement, idx) => {
- const clonedElement = duplicatedElements[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 = duplicatedElements.filter(
- (e) => e.type === "arrow",
- ) as ExcalidrawLinearElement[];
- const [clonedRectangle, clonedText1, , clonedArrow2, clonedArrowLabel] =
- duplicatedElements 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 duplicatedElements = duplicateElements({
- type: "everything",
- elements: origElements,
- }).duplicatedElements as any as typeof origElements;
- const [
- clonedRectangle,
- clonedText1,
- clonedArrow1,
- clonedArrow2,
- clonedArrow3,
- ] = duplicatedElements;
- 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 { duplicatedElements } = duplicateElements({
- type: "everything",
- elements: origElements,
- });
- const [clonedRectangle1, clonedRectangle2, clonedRectangle3] =
- duplicatedElements;
- 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 {
- duplicatedElements: [clonedRectangle1],
- } = duplicateElements({ type: "everything", elements: [rectangle1] });
- expect(typeof clonedRectangle1.groupIds[0]).toBe("string");
- expect(rectangle1.groupIds[0]).not.toBe(clonedRectangle1.groupIds[0]);
- });
- });
- });
- describe("group-related duplication", () => {
- beforeEach(async () => {
- await render(<Excalidraw />);
- });
- it("action-duplicating within group", async () => {
- const rectangle1 = API.createElement({
- type: "rectangle",
- x: 0,
- y: 0,
- groupIds: ["group1"],
- });
- const rectangle2 = API.createElement({
- type: "rectangle",
- x: 10,
- y: 10,
- groupIds: ["group1"],
- });
- API.setElements([rectangle1, rectangle2]);
- API.setSelectedElements([rectangle2], "group1");
- act(() => {
- h.app.actionManager.executeAction(actionDuplicateSelection);
- });
- assertElements(h.elements, [
- { id: rectangle1.id },
- { id: rectangle2.id },
- { [ORIG_ID]: rectangle2.id, selected: true, groupIds: ["group1"] },
- ]);
- expect(h.state.editingGroupId).toBe("group1");
- });
- it("alt-duplicating within group", async () => {
- const rectangle1 = API.createElement({
- type: "rectangle",
- x: 0,
- y: 0,
- groupIds: ["group1"],
- });
- const rectangle2 = API.createElement({
- type: "rectangle",
- x: 10,
- y: 10,
- groupIds: ["group1"],
- });
- API.setElements([rectangle1, rectangle2]);
- API.setSelectedElements([rectangle2], "group1");
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(rectangle2.x + 5, rectangle2.y + 5);
- mouse.up(rectangle2.x + 50, rectangle2.y + 50);
- });
- assertElements(h.elements, [
- { id: rectangle1.id },
- { id: rectangle2.id },
- { [ORIG_ID]: rectangle2.id, selected: true, groupIds: ["group1"] },
- ]);
- expect(h.state.editingGroupId).toBe("group1");
- });
- it("alt-duplicating within group away outside frame", () => {
- const frame = API.createElement({
- type: "frame",
- x: 0,
- y: 0,
- width: 100,
- height: 100,
- });
- const rectangle1 = API.createElement({
- type: "rectangle",
- x: 0,
- y: 0,
- width: 50,
- height: 50,
- groupIds: ["group1"],
- frameId: frame.id,
- });
- const rectangle2 = API.createElement({
- type: "rectangle",
- x: 10,
- y: 10,
- width: 50,
- height: 50,
- groupIds: ["group1"],
- frameId: frame.id,
- });
- API.setElements([frame, rectangle1, rectangle2]);
- API.setSelectedElements([rectangle2], "group1");
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(rectangle2.x + 5, rectangle2.y + 5);
- mouse.up(frame.x + frame.width + 50, frame.y + frame.height + 50);
- });
- // console.log(h.elements);
- assertElements(h.elements, [
- { id: frame.id },
- { id: rectangle1.id, frameId: frame.id },
- { id: rectangle2.id, frameId: frame.id },
- { [ORIG_ID]: rectangle2.id, selected: true, groupIds: [], frameId: null },
- ]);
- expect(h.state.editingGroupId).toBe(null);
- });
- });
- 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, [
- { id: rectangle1.id },
- { [ORIG_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 },
- { 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, [
- { id: rectangle1.id },
- { [ORIG_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, [
- { id: rectangle1.id },
- { id: rectangle2.id },
- { id: rectangle3.id },
- { [ORIG_ID]: rectangle1.id, selected: true },
- { [ORIG_ID]: rectangle2.id, selected: true },
- { [ORIG_ID]: rectangle3.id, selected: true },
- ]);
- });
- it("alt-duplicating text container (in-order)", async () => {
- const [rectangle, text] = API.createTextContainer();
- API.setElements([rectangle, text]);
- API.setSelectedElements([rectangle]);
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(rectangle.x + 5, rectangle.y + 5);
- mouse.up(rectangle.x + 15, rectangle.y + 15);
- });
- assertElements(h.elements, [
- { id: rectangle.id },
- { id: text.id, containerId: rectangle.id },
- { [ORIG_ID]: rectangle.id, selected: true },
- {
- [ORIG_ID]: text.id,
- containerId: getCloneByOrigId(rectangle.id)?.id,
- },
- ]);
- });
- it("alt-duplicating text container (out-of-order)", async () => {
- const [rectangle, text] = API.createTextContainer();
- API.setElements([text, rectangle]);
- API.setSelectedElements([rectangle]);
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(rectangle.x + 5, rectangle.y + 5);
- mouse.up(rectangle.x + 15, rectangle.y + 15);
- });
- assertElements(h.elements, [
- { id: rectangle.id },
- { id: text.id, containerId: rectangle.id },
- { [ORIG_ID]: rectangle.id, selected: true },
- {
- [ORIG_ID]: text.id,
- containerId: getCloneByOrigId(rectangle.id)?.id,
- },
- ]);
- });
- it("alt-duplicating labeled arrows (in-order)", async () => {
- const [arrow, text] = API.createLabeledArrow();
- API.setElements([arrow, text]);
- API.setSelectedElements([arrow]);
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(arrow.x + 5, arrow.y + 5);
- mouse.up(arrow.x + 15, arrow.y + 15);
- });
- assertElements(h.elements, [
- { id: arrow.id },
- { id: text.id, containerId: arrow.id },
- { [ORIG_ID]: arrow.id, selected: true },
- {
- [ORIG_ID]: text.id,
- containerId: getCloneByOrigId(arrow.id)?.id,
- },
- ]);
- expect(h.state.selectedLinearElement).toEqual(
- expect.objectContaining({ elementId: getCloneByOrigId(arrow.id)?.id }),
- );
- });
- it("alt-duplicating labeled arrows (out-of-order)", async () => {
- const [arrow, text] = API.createLabeledArrow();
- API.setElements([text, arrow]);
- API.setSelectedElements([arrow]);
- Keyboard.withModifierKeys({ alt: true }, () => {
- mouse.down(arrow.x + 5, arrow.y + 5);
- mouse.up(arrow.x + 15, arrow.y + 15);
- });
- assertElements(h.elements, [
- { id: arrow.id },
- { id: text.id, containerId: arrow.id },
- { [ORIG_ID]: arrow.id, selected: true },
- {
- [ORIG_ID]: text.id,
- containerId: getCloneByOrigId(arrow.id)?.id,
- },
- ]);
- });
- it("alt-duplicating bindable element with bound arrow should keep the arrow on the duplicate", async () => {
- 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);
- });
- assertElements(h.elements, [
- {
- id: rect.id,
- boundElements: expect.arrayContaining([
- expect.objectContaining({ id: arrow.id }),
- ]),
- },
- { [ORIG_ID]: rect.id, boundElements: [], selected: true },
- {
- id: arrow.id,
- endBinding: expect.objectContaining({ elementId: rect.id }),
- },
- ]);
- });
- });
|