feat(commands): add selection commands

This commit is contained in:
syntaxbullet
2026-07-03 09:51:26 +02:00
parent d77bdc22a9
commit ca9e265614
5 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,25 @@
import { describe, expect, test } from "bun:test";
import { createInitialAppState } from "@editor/initial-state";
import { selectionAddLayerCommand, selectionClearCommand, selectionSetCommand } from "./selection";
describe("selection commands", () => {
test("sets selection", () => {
const next = selectionSetCommand.execute({ state: createInitialAppState("Test") }, { artboardId: "a1", layerIds: ["l1"] });
expect(next.editor.selection).toEqual({ artboardId: "a1", layerIds: ["l1"] });
});
test("adds unique layer selection", () => {
const selected = selectionSetCommand.execute({ state: createInitialAppState("Test") }, { layerIds: ["l1"] });
const next = selectionAddLayerCommand.execute({ state: selected }, { layerId: "l2" });
const same = selectionAddLayerCommand.execute({ state: next }, { layerId: "l2" });
expect(next.editor.selection.layerIds).toEqual(["l1", "l2"]);
expect(same).toBe(next);
});
test("clears selection", () => {
const selected = selectionSetCommand.execute({ state: createInitialAppState("Test") }, { artboardId: "a1", layerIds: ["l1"] });
const next = selectionClearCommand.execute({ state: selected }, undefined);
expect(next.editor.selection).toEqual({ layerIds: [] });
});
});