mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-15 05:20:27 +02:00

Fix binding Remove unneeded params Unfinished simple arrow avoidance Fix newly created jumping arrow when gets outside Do not apply the jumping logic to elbow arrows for new elements Existing arrows now jump out Type updates to support fixed binding for simple arrows Fix crash for elbow arrws in mutateElement() Refactored simple arrow creation Updating tests No confirm threshold when inside biding range Fix multi-point arrow grid off Make elbow arrows respect grids Unbind arrow if bound and moved at shaft of arrow key Fix binding test Fix drag unbind when the bound element is in the selection Do not move mid point for simple arrows bound on both ends Add test for mobing mid points for simple arrows when bound on the same element on both ends Fix linear editor bug when both midpoint and endpoint is moved Fix all point multipoint arrow highlight and binding Arrow dragging gets a little drag to avoid accidental unbinding Fixed point binding for simple arrows when the arrow doesn't point to the element Fix binding disabled use-case triggering arrow editor Timed binding mode change for simple arrows Apply fixes Remove code to unbind on drag Update simple arrow fixed point when arrow is dragged or moved by arrow keys Binding highlight fixes Change bind mode timeout logic Fix tests Add Alt bindMode switch No dragging of arrows when bound, similar to elbow Fix timeout not taking effect immediately Bumop z-index for arrows when dragged Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Only transparent bindables allow binding fallthrough Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix lint Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix point click array creation interaction with fixed point binding Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Restrict new behavior to arrows only Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Allow binding inside images Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix already existing fixed binding retention Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Refactor and implement fixed point binding for unfilled elements Restore drag Removed point binding Binding code refactor Added centered focus point Binding & focus point debug Add invariants to check binding integrity in elements Binding fixes Small refactors Completely rewritten binding Include point updates after binding update Fix point updates when endpoint dragged and opposite endpoint orbits centered focus point only for new arrows Make z-index arrow reorder on bind Turn off inside binding mode after leaving a shape Remove invariants from debug feat: expose `applyTo` options, don't commit empty text element (#9744) * Expose applyTo options, skip re-draw for empty text * Don't commit empty text elements test: added test file for distribute (#9754) z-index update Bind mode on precise binding Fix binding to inside element Fix initial arrow not following cursor (white dot) Fix elbow arrow Fix z-index so it works on hover Fix fixed angle orbiting Move point click arrow creation over to common strategy Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Add binding strategy for drag arrow creation Fix elbow arrow Fix point handles Snap to center Fix transparent shape binding Internal arrow creation fix Fix point binding Fix selection bug Fix new arrow focus point Images now always bind inside Flashing arrow creation on binding band Add watchState debug method to window.h Fix debug canvas crash Remove non-needed bind mode Fix restore No keyboard movement when bound Add actionFinalize when arrow in edit mode Add drag to the Stats panel when bound arrow is moved Further simplify curve tracking Add typing to action register() Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix point at finalize Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix type errors Signed-off-by: Mark Tolmacs <mark@lazycat.hu> New arrow binding rules Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix cyclical dep Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fix jiggly arrows Fix jiggly arrow x2 Long inside-other binding Click-click binding Fix arrows Performance [PERF] Replace in-place Jacobian derivation with analytical version Different approach to inside binding Signed-off-by: Mark Tolmacs <mark@lazycat.hu> Fixes Fix inconsistent arrow start jump out Change how images are bound to on new arrow creation Lower timeout Small insurance fix
843 lines
23 KiB
TypeScript
843 lines
23 KiB
TypeScript
import { pointFrom } from "@excalidraw/math";
|
|
|
|
import {
|
|
FONT_FAMILY,
|
|
ORIG_ID,
|
|
ROUNDNESS,
|
|
isPrimitive,
|
|
} from "@excalidraw/common";
|
|
|
|
import { Excalidraw, mutateElement } 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 { 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, new Map(), {
|
|
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",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
});
|
|
|
|
const arrow2 = API.createElement({
|
|
type: "arrow",
|
|
id: "arrow2",
|
|
endBinding: {
|
|
elementId: "rectangle1",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
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",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
});
|
|
|
|
const text1 = API.createElement({
|
|
type: "text",
|
|
id: "text1",
|
|
containerId: "rectangle-not-exists",
|
|
});
|
|
|
|
const arrow2 = API.createElement({
|
|
type: "arrow",
|
|
id: "arrow2",
|
|
startBinding: {
|
|
elementId: "rectangle1",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
endBinding: {
|
|
elementId: "rectangle-not-exists",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
});
|
|
|
|
const arrow3 = API.createElement({
|
|
type: "arrow",
|
|
id: "arrow3",
|
|
startBinding: {
|
|
elementId: "rectangle-not-exists",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
endBinding: {
|
|
elementId: "rectangle1",
|
|
fixedPoint: [0.5, 1],
|
|
mode: "orbit",
|
|
},
|
|
});
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
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);
|
|
});
|
|
|
|
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 }),
|
|
},
|
|
]);
|
|
});
|
|
});
|