Files
hyperframes/packages/studio/src/utils/keyframeSelection.test.ts
T
Carlos Alcaraz GregorandCarlos Alcaraz f1a50e03ea fix(studio): delete only the active element's selected keyframes (#1453)
Pressing Delete with keyframes multi-selected removed keyframes from the
wrong element. selectedKeyframes holds "<elementId>:<percentage>" keys and
can outlive the element it was built on (a clip click, keyframe click, layers
selection, or keyframe context menu changes the active element without clearing
it, and a shift-selection can span elements). deleteSelectedKeyframes parsed
only the percentage from each key and applied it to the active animation,
ignoring which element each selected keyframe belonged to, so a stale selection
deleted keyframes the user never targeted on the active element.

Extract selectedKeyframePercentagesForElement, which keeps only the percentages
whose key matches the active element id, and route the delete through it. The
common case (all selected keyframes on the active element) is unchanged; stale
cross-element keys are skipped instead of mis-applied.

Co-authored-by: Carlos Alcaraz <193642530+calcarazgre646@users.noreply.github.com>
2026-06-14 23:19:28 -04:00

46 lines
1.9 KiB
TypeScript

import { describe, it, expect } from "vitest";
import { selectedKeyframePercentagesForElement } from "./keyframeSelection";
describe("selectedKeyframePercentagesForElement", () => {
it("returns the percentages of keyframes on the active element", () => {
const selected = new Set(["comp#a:25", "comp#a:75"]);
expect(selectedKeyframePercentagesForElement(selected, "comp#a")).toEqual([25, 75]);
});
it("drops keyframes that belong to other elements", () => {
// The bug: a stale shift-selection on `comp#b` would otherwise have its
// percentages applied to the now-active `comp#a`, deleting the wrong keyframes.
const selected = new Set(["comp#a:25", "comp#b:50", "comp#b:80"]);
expect(selectedKeyframePercentagesForElement(selected, "comp#a")).toEqual([25]);
});
it("returns nothing when no key belongs to the active element", () => {
const selected = new Set(["comp#b:50"]);
expect(selectedKeyframePercentagesForElement(selected, "comp#a")).toEqual([]);
});
it("returns nothing when there is no active element", () => {
const selected = new Set(["comp#a:25"]);
expect(selectedKeyframePercentagesForElement(selected, null)).toEqual([]);
});
it("returns nothing for an empty selection", () => {
expect(selectedKeyframePercentagesForElement(new Set(), "comp#a")).toEqual([]);
});
it("splits on the final colon so element ids containing ':' still match", () => {
const selected = new Set(["a:b:40"]);
expect(selectedKeyframePercentagesForElement(selected, "a:b")).toEqual([40]);
});
it("skips keys without a percentage separator", () => {
const selected = new Set(["comp#a"]);
expect(selectedKeyframePercentagesForElement(selected, "comp#a")).toEqual([]);
});
it("skips keys whose percentage is not a finite number", () => {
const selected = new Set(["comp#a:abc", "comp#a:NaN", "comp#a:30"]);
expect(selectedKeyframePercentagesForElement(selected, "comp#a")).toEqual([30]);
});
});