mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 14:50:02 +00:00
fix(studio): target colliding keyframes exactly (#2692)
This commit is contained in:
@@ -14,6 +14,7 @@ export type {
|
||||
GsapMethod,
|
||||
GsapKeyframesData,
|
||||
GsapPercentageKeyframe,
|
||||
SourcedGsapPercentageKeyframe,
|
||||
ParsedGsap,
|
||||
ArcPathConfig,
|
||||
ArcPathSegment,
|
||||
|
||||
@@ -94,6 +94,20 @@ export interface WritableGsapPercentageKeyframe extends GsapPercentageKeyframe {
|
||||
auto?: boolean;
|
||||
}
|
||||
|
||||
/**
|
||||
* A keyframe that still knows which tween emitted it, and where inside that
|
||||
* tween it sat. Merging several tweens onto one timeline row drops that
|
||||
* provenance unless it rides along on the keyframe, and an editor needs it to
|
||||
* route an edit back to the animation the user actually clicked. Required, not
|
||||
* optional: a keyframe that reaches a merge without it cannot be attributed at
|
||||
* all, and silently treating that as "no collision" is how an edit lands on the
|
||||
* wrong tween.
|
||||
*/
|
||||
export interface SourcedGsapPercentageKeyframe extends GsapPercentageKeyframe {
|
||||
animationId: string;
|
||||
tweenPercentage: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* Collapse duplicate percentage entries before serializing an object literal.
|
||||
* Matches addKeyframeToScript's merge contract: later properties/ease win while
|
||||
@@ -122,9 +136,9 @@ export function mergePercentageKeyframes(
|
||||
|
||||
export type GsapKeyframeFormat = "percentage" | "object-array" | "simple-array";
|
||||
|
||||
export interface GsapKeyframesData {
|
||||
export interface GsapKeyframesData<K extends GsapPercentageKeyframe = GsapPercentageKeyframe> {
|
||||
format: GsapKeyframeFormat;
|
||||
keyframes: GsapPercentageKeyframe[];
|
||||
keyframes: K[];
|
||||
ease?: string;
|
||||
easeEach?: string;
|
||||
}
|
||||
|
||||
@@ -155,6 +155,44 @@ describe("pruneKeyframeCacheToFiles", () => {
|
||||
});
|
||||
|
||||
describe("updateKeyframeCacheFromParsed", () => {
|
||||
it("records colliding animation targets with their own tween percentages", () => {
|
||||
const animation = (
|
||||
id: string,
|
||||
propertyGroup: string,
|
||||
properties: Record<string, number>,
|
||||
percentage: number,
|
||||
resolvedStart: number,
|
||||
): GsapAnimation => ({
|
||||
...animWithKeyframes(id),
|
||||
targetSelector: "#hero",
|
||||
propertyGroup,
|
||||
resolvedStart,
|
||||
keyframes: { format: "percentage", keyframes: [{ percentage, properties }] },
|
||||
});
|
||||
|
||||
usePlayerStore.setState({
|
||||
elements: [{ id: "hero", domId: "hero", tag: "div", start: 0, duration: 4, track: 0 }],
|
||||
});
|
||||
|
||||
updateKeyframeCacheFromParsed(
|
||||
[
|
||||
animation("hero-position", "position", { x: 100 }, 50, 0.5),
|
||||
animation("hero-visual", "visual", { opacity: 1 }, 80, 0.2),
|
||||
animation("hero-position", "position", { y: 50 }, 25, 0.75),
|
||||
animation("hero-scale", "scale", { scale: 2 }, 60, 0.4),
|
||||
],
|
||||
"scene.html",
|
||||
"hero",
|
||||
{},
|
||||
);
|
||||
|
||||
expect(cache().get("scene.html#hero")?.keyframes[0]?.collidingAnimationTargets).toEqual([
|
||||
{ animationId: "hero-position", tweenPercentage: 50 },
|
||||
{ animationId: "hero-visual", tweenPercentage: 80 },
|
||||
{ animationId: "hero-scale", tweenPercentage: 60 },
|
||||
]);
|
||||
});
|
||||
|
||||
it("serializes a multi-keyframe tween with a stable shape and animation identity", () => {
|
||||
const animation: GsapAnimation = {
|
||||
...animWithKeyframes("hero"),
|
||||
|
||||
@@ -5,7 +5,11 @@
|
||||
import type { GsapAnimation } from "@hyperframes/core/gsap-parser";
|
||||
import { usePlayerStore, type KeyframeCacheEntry } from "../player/store/playerStore";
|
||||
import { resolveClipTimingBasis, resolveSelectorElementIds, toClipKeyframes } from "./gsapShared";
|
||||
import { deduplicateKeyframes, synthesizeFlatTweenKeyframes } from "./gsapTweenSynth";
|
||||
import {
|
||||
deduplicateKeyframes,
|
||||
synthesizeFlatTweenKeyframes,
|
||||
type MergeableKeyframe,
|
||||
} from "./gsapTweenSynth";
|
||||
|
||||
export function updateKeyframeCacheFromParsed(
|
||||
animations: GsapAnimation[],
|
||||
@@ -16,7 +20,11 @@ export function updateKeyframeCacheFromParsed(
|
||||
): void {
|
||||
const { setKeyframeCache, elements, domClipChildren } = usePlayerStore.getState();
|
||||
const idsWithKeyframes = new Set<string>();
|
||||
const merged = new Map<string, KeyframeCacheEntry>();
|
||||
// Attributed keyframes only: everything in here came from a parsed tween via
|
||||
// toClipKeyframes, so the merge can rely on the source identity. It widens
|
||||
// back into KeyframeCacheEntry on the way to the store, which also holds the
|
||||
// runtime scan's unattributed keyframes.
|
||||
const merged = new Map<string, KeyframeCacheEntry & { keyframes: MergeableKeyframe[] }>();
|
||||
const sourceAnimations = new Map<string, GsapAnimation[]>();
|
||||
for (const anim of animations) {
|
||||
const kfSource =
|
||||
@@ -49,9 +57,9 @@ export function updateKeyframeCacheFromParsed(
|
||||
|
||||
const existing = merged.get(id);
|
||||
if (existing) {
|
||||
// deduplicateKeyframes owns the same-% merge (including the easeAmbiguous
|
||||
// flag downstream lanes read); a second copy of that rule here is how the
|
||||
// two writers drift.
|
||||
// deduplicateKeyframes owns the same-% merge (including the colliding
|
||||
// animation targets downstream lanes read); a second copy of that rule
|
||||
// here is how the two writers drift.
|
||||
existing.keyframes = deduplicateKeyframes([...existing.keyframes, ...clipKeyframes]);
|
||||
} else {
|
||||
merged.set(id, {
|
||||
|
||||
@@ -54,31 +54,86 @@ describe("synthesizeFlatTweenKeyframes", () => {
|
||||
});
|
||||
});
|
||||
|
||||
describe("deduplicateKeyframes ease ambiguity", () => {
|
||||
it("flags a same-% collision from different animations (different eases)", () => {
|
||||
describe("deduplicateKeyframes colliding animation targets", () => {
|
||||
it("records each animation's tween percentage in first-seen order", () => {
|
||||
const merged = deduplicateKeyframes([
|
||||
{ percentage: 45, properties: { x: 10 }, ease: "power2.in", animationId: "#a-position" },
|
||||
{ percentage: 45, properties: { opacity: 1 }, ease: "power2.out", animationId: "#a-visual" },
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 20,
|
||||
properties: { x: 10 },
|
||||
ease: "power2.in",
|
||||
animationId: "#a-position",
|
||||
},
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 80,
|
||||
properties: { opacity: 1 },
|
||||
ease: "power2.out",
|
||||
animationId: "#a-visual",
|
||||
},
|
||||
]);
|
||||
const kf = merged.find((k) => k.percentage === 45);
|
||||
expect(kf?.easeAmbiguous).toBe(true);
|
||||
expect(kf?.collidingAnimationTargets).toEqual([
|
||||
{ animationId: "#a-position", tweenPercentage: 20 },
|
||||
{ animationId: "#a-visual", tweenPercentage: 80 },
|
||||
]);
|
||||
});
|
||||
|
||||
it("flags a cross-animation collision even when the raw eases match", () => {
|
||||
// The button can still only target one arbitrary animation, and each may
|
||||
// inherit a different easeEach/animation ease that raw comparison misses.
|
||||
it("deduplicates three colliding animations while preserving first-seen order", () => {
|
||||
const merged = deduplicateKeyframes([
|
||||
{ percentage: 45, properties: { x: 10 }, ease: "power2.in", animationId: "#a-position" },
|
||||
{ percentage: 45, properties: { opacity: 1 }, ease: "power2.in", animationId: "#a-visual" },
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 20,
|
||||
properties: { x: 10 },
|
||||
ease: "power2.in",
|
||||
animationId: "#a-position",
|
||||
},
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 80,
|
||||
properties: { opacity: 1 },
|
||||
ease: "power2.in",
|
||||
animationId: "#a-visual",
|
||||
},
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 40,
|
||||
properties: { y: 20 },
|
||||
ease: "power2.out",
|
||||
animationId: "#a-position",
|
||||
},
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 60,
|
||||
properties: { scale: 2 },
|
||||
ease: "power2.in",
|
||||
animationId: "#a-scale",
|
||||
},
|
||||
]);
|
||||
expect(merged.find((k) => k.percentage === 45)?.collidingAnimationTargets).toEqual([
|
||||
{ animationId: "#a-position", tweenPercentage: 20 },
|
||||
{ animationId: "#a-visual", tweenPercentage: 80 },
|
||||
{ animationId: "#a-scale", tweenPercentage: 60 },
|
||||
]);
|
||||
expect(merged.find((k) => k.percentage === 45)?.easeAmbiguous).toBe(true);
|
||||
});
|
||||
|
||||
it("does not flag a same-% collision within a single animation", () => {
|
||||
it("leaves the collision set undefined within a single animation", () => {
|
||||
const merged = deduplicateKeyframes([
|
||||
{ percentage: 45, properties: { x: 10 }, ease: "power2.in", animationId: "#a-position" },
|
||||
{ percentage: 45, properties: { y: 20 }, ease: "power2.out", animationId: "#a-position" },
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 20,
|
||||
properties: { x: 10 },
|
||||
ease: "power2.in",
|
||||
animationId: "#a-position",
|
||||
},
|
||||
{
|
||||
percentage: 45,
|
||||
tweenPercentage: 80,
|
||||
properties: { y: 20 },
|
||||
ease: "power2.out",
|
||||
animationId: "#a-position",
|
||||
},
|
||||
]);
|
||||
expect(merged.find((k) => k.percentage === 45)?.easeAmbiguous).toBeFalsy();
|
||||
expect(merged.find((k) => k.percentage === 45)?.collidingAnimationTargets).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import type {
|
||||
GsapAnimation,
|
||||
GsapKeyframesData,
|
||||
GsapPercentageKeyframe,
|
||||
SourcedGsapPercentageKeyframe,
|
||||
} from "@hyperframes/core/gsap-parser";
|
||||
import { PROPERTY_DEFAULTS } from "./gsapShared";
|
||||
|
||||
@@ -22,33 +22,60 @@ export function isStaticPositionHold(anim: GsapAnimation): boolean {
|
||||
return propKeys.length > 0 && propKeys.every((k) => k === "x" || k === "y");
|
||||
}
|
||||
|
||||
export function deduplicateKeyframes<
|
||||
T extends GsapPercentageKeyframe & { animationId?: string; easeAmbiguous?: boolean },
|
||||
>(keyframes: T[]): T[] {
|
||||
export interface AnimationKeyframeTarget {
|
||||
animationId: string;
|
||||
tweenPercentage: number;
|
||||
}
|
||||
|
||||
function accumulateCollidingAnimationTargets(
|
||||
keyframe: AnimationKeyframeTarget & {
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
},
|
||||
incoming: AnimationKeyframeTarget,
|
||||
): void {
|
||||
const primaryId = keyframe.animationId;
|
||||
// One tween meeting itself is not a collision. Both identity fields are
|
||||
// required by the parameter types rather than guarded at runtime: a keyframe
|
||||
// that arrives without them cannot be attributed to a tween at all, and an
|
||||
// early return here would silently record no collision and let the inline
|
||||
// ease button edit an arbitrary one of the tweens that met at this
|
||||
// percentage. The compiler now refuses the incomplete keyframe instead.
|
||||
if (primaryId === incoming.animationId) return;
|
||||
const collisionTargets = keyframe.collidingAnimationTargets;
|
||||
if (collisionTargets?.some((target) => target.animationId === incoming.animationId)) return;
|
||||
keyframe.collidingAnimationTargets = [
|
||||
...(collisionTargets === undefined || collisionTargets.length === 0
|
||||
? [{ animationId: primaryId, tweenPercentage: keyframe.tweenPercentage }]
|
||||
: collisionTargets),
|
||||
{ animationId: incoming.animationId, tweenPercentage: incoming.tweenPercentage },
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* What a keyframe looks like once it has been attributed to its source tween
|
||||
* and is ready to be merged with the other tweens landing on the same row. The
|
||||
* runtime scan produces unattributed keyframes and they never reach a merge, so
|
||||
* they are deliberately not this type.
|
||||
*/
|
||||
export type MergeableKeyframe = SourcedGsapPercentageKeyframe & {
|
||||
propertyGroup?: string;
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
};
|
||||
|
||||
export function deduplicateKeyframes<T extends MergeableKeyframe>(keyframes: T[]): T[] {
|
||||
const byPct = new Map<number, T>();
|
||||
for (const kf of keyframes) {
|
||||
const existing = byPct.get(kf.percentage);
|
||||
if (existing) {
|
||||
existing.properties = { ...existing.properties, ...kf.properties };
|
||||
// Two DIFFERENT source animations with a keyframe at the same clip %: a
|
||||
// single inline ease button can only target one of them, and which one is
|
||||
// arbitrary (each may also inherit a different easeEach/animation ease, so
|
||||
// comparing raw keyframe eases isn't enough). Flag it so the collapsed row
|
||||
// hides the button there and the user edits per-lane instead.
|
||||
if (
|
||||
existing.animationId !== undefined &&
|
||||
kf.animationId !== undefined &&
|
||||
existing.animationId !== kf.animationId
|
||||
) {
|
||||
existing.easeAmbiguous = true;
|
||||
}
|
||||
// Whichever tween iterated last used to win `ease`, so the merged
|
||||
// keyframe carried an arbitrary one of the colliding curves. Readers that
|
||||
// do not check easeAmbiguous (drag readouts, lane hints) then showed a
|
||||
// curve belonging to a different animation than the one an edit targets.
|
||||
// Drop it instead: ambiguous means "no single ease", and the flag is the
|
||||
// only honest answer.
|
||||
if (existing.easeAmbiguous) delete existing.ease;
|
||||
accumulateCollidingAnimationTargets(existing, kf);
|
||||
// Whichever tween iterated last used to win `ease`, so the merged keyframe
|
||||
// carried an arbitrary one of the colliding curves. Readers that show a
|
||||
// single curve (drag readouts, lane hints, the inline ease button) then
|
||||
// displayed one belonging to a different animation than the one an edit
|
||||
// targets. A collision means "no single ease", and dropping it is the only
|
||||
// honest answer; collidingAnimationTargets still names every tween there.
|
||||
if ((existing.collidingAnimationTargets?.length ?? 0) > 1) delete existing.ease;
|
||||
else if (kf.ease) existing.ease = kf.ease;
|
||||
} else {
|
||||
byPct.set(kf.percentage, { ...kf, properties: { ...kf.properties } });
|
||||
|
||||
@@ -16,6 +16,7 @@ import {
|
||||
deduplicateKeyframes,
|
||||
isStaticPositionHold,
|
||||
synthesizeFlatTweenKeyframes,
|
||||
type MergeableKeyframe,
|
||||
} from "./gsapTweenSynth";
|
||||
|
||||
export { resolveSelectorElementIds };
|
||||
@@ -83,7 +84,7 @@ export async function populateKeyframeCacheFromAst(
|
||||
const { setKeyframeCache } = usePlayerStore.getState();
|
||||
clearKeyframeCacheForFile(sf);
|
||||
const { elements, domClipChildren } = usePlayerStore.getState();
|
||||
const mergedByElement = new Map<string, GsapKeyframesData>();
|
||||
const mergedByElement = new Map<string, GsapKeyframesData<MergeableKeyframe>>();
|
||||
const sourceByElement = new Map<string, GsapAnimation[]>();
|
||||
for (const anim of parsed.animations) {
|
||||
if (anim.hasUnresolvedKeyframes) continue;
|
||||
|
||||
@@ -12,6 +12,7 @@ import {
|
||||
deduplicateKeyframes,
|
||||
isStaticPositionHold,
|
||||
synthesizeFlatTweenKeyframes,
|
||||
type MergeableKeyframe,
|
||||
} from "./gsapTweenSynth";
|
||||
import { fetchParsedAnimations, populateKeyframeCacheFromAst } from "./keyframeCacheAstLoad";
|
||||
|
||||
@@ -266,13 +267,7 @@ export function useGsapAnimationsForElement(
|
||||
domClipChildren,
|
||||
);
|
||||
|
||||
const allKeyframes: Array<
|
||||
GsapKeyframesData["keyframes"][0] & {
|
||||
tweenPercentage?: number;
|
||||
propertyGroup?: string;
|
||||
animationId?: string;
|
||||
}
|
||||
> = [];
|
||||
const allKeyframes: MergeableKeyframe[] = [];
|
||||
let format: GsapKeyframesData["format"] = "percentage";
|
||||
let ease: string | undefined;
|
||||
let easeEach: string | undefined;
|
||||
|
||||
@@ -658,7 +658,18 @@ describe("TimelineClipDiamonds", () => {
|
||||
<TimelineDiamondLane
|
||||
keyframesData={{
|
||||
format: "percentage",
|
||||
keyframes: [kf(0), kf(50), kf(100, { easeAmbiguous: lastAmbiguous })],
|
||||
keyframes: [
|
||||
kf(0),
|
||||
kf(50),
|
||||
kf(100, {
|
||||
collidingAnimationTargets: lastAmbiguous
|
||||
? [
|
||||
{ animationId: "anim-1", tweenPercentage: 100 },
|
||||
{ animationId: "anim-2", tweenPercentage: 75 },
|
||||
]
|
||||
: undefined,
|
||||
}),
|
||||
],
|
||||
}}
|
||||
clipWidthPx={clipWidthPx}
|
||||
clipHeightPx={48}
|
||||
@@ -675,15 +686,16 @@ describe("TimelineClipDiamonds", () => {
|
||||
return { host, root };
|
||||
};
|
||||
|
||||
it("hides the inline ease button on an ambiguous merged segment", () => {
|
||||
// Segments 0->50 and 50->100; the 50->100 segment ends on the ambiguous
|
||||
// keyframe, so its hover/ease-button area is not rendered.
|
||||
it("hides the inline ease button on a colliding merged segment", () => {
|
||||
// The 50->100 segment ends on a keyframe shared by two animations, so one
|
||||
// button cannot honestly stand for the several curves that meet there. Only
|
||||
// the unambiguous 0->50 segment keeps its button.
|
||||
const { host, root } = renderSegmentLane(true);
|
||||
expect(host.querySelectorAll("[data-keyframe-ease-segment]").length).toBe(1);
|
||||
act(() => root.unmount());
|
||||
});
|
||||
|
||||
it("keeps the inline ease button on unambiguous merged segments", () => {
|
||||
it("shows the inline ease button on single-animation merged segments", () => {
|
||||
const { host, root } = renderSegmentLane(false);
|
||||
expect(host.querySelectorAll("[data-keyframe-ease-segment]").length).toBe(2);
|
||||
act(() => root.unmount());
|
||||
|
||||
@@ -37,13 +37,6 @@ export function TimelineDiamondConnectors({
|
||||
keyframeTarget: (keyframe: TimelineDiamondKeyframe) => TimelineKeyframeTarget;
|
||||
onSelectSegment?: (target: TimelineKeyframeTarget) => void;
|
||||
}) {
|
||||
// The ease button sits dead centre of its segment, which on a two-keyframe clip
|
||||
// is the centre of the clip bar — the natural place to grab a clip and drag it.
|
||||
// Swallowing pointerdown there made that grab a no-op. Instead the press falls
|
||||
// through to the clip (so the drag starts normally) and the button keeps only
|
||||
// the click, which we drop if the pointer actually travelled.
|
||||
const pressXRef = useRef<number | null>(null);
|
||||
|
||||
return (
|
||||
<>
|
||||
{markers.map((marker, i) => {
|
||||
@@ -55,19 +48,6 @@ export function TimelineDiamondConnectors({
|
||||
if (x2 - x1 < 1) return null;
|
||||
const connectorLeft = x1 + previous.visualSize / 2;
|
||||
const connectorWidth = x2 - x1 - previous.visualSize / 2 - marker.visualSize / 2;
|
||||
// The ease button targets one segment, so it needs the keyframe's own
|
||||
// animationId/tweenPercentage. On a merged inline row the button is
|
||||
// hidden where the segment is ambiguous (two source animations collide
|
||||
// at this % with different eases; see easeAmbiguous) or the keyframe has
|
||||
// no source animation id (runtime-scanned) so there is no tween to target.
|
||||
const target = keyframeTarget(kf);
|
||||
const ease = kf.ease ?? globalEase;
|
||||
// connectorWidth is the clear span between the two diamonds' edges, so a
|
||||
// 24x24 target centred in it overhangs a diamond as soon as the span is
|
||||
// narrower than 24. The segment wrapper sits at z-index 3, above the
|
||||
// diamonds, so that overhang would win the hit test and steal their
|
||||
// clicks at fit zoom. Grow the target only where the room exists.
|
||||
const roomForFullTarget = connectorWidth >= 24;
|
||||
return (
|
||||
<Fragment key={`line-${i}-${previous.keyframe.percentage}-${kf.percentage}`}>
|
||||
<div
|
||||
@@ -84,71 +64,22 @@ export function TimelineDiamondConnectors({
|
||||
borderRadius: 1,
|
||||
}}
|
||||
/>
|
||||
{onSelectSegment && !kf.easeAmbiguous && kf.animationId !== undefined && (
|
||||
<div
|
||||
className="group absolute"
|
||||
data-keyframe-ease-segment=""
|
||||
style={{
|
||||
left: x1,
|
||||
top: centerY,
|
||||
width: x2 - x1,
|
||||
height: 18,
|
||||
transform: "translateY(-50%)",
|
||||
// Own a stacking context above the diamond buttons. At fit
|
||||
// zoom the 16px ease control can overlap its neighbouring
|
||||
// diamond; without a z-index here the later diamond wins the
|
||||
// hit test even though the child button has z-index 3.
|
||||
zIndex: 3,
|
||||
// Only the centered control is interactive. The transparent
|
||||
// segment wrapper must not swallow connector/clip gestures.
|
||||
pointerEvents: "none",
|
||||
}}
|
||||
>
|
||||
<button
|
||||
type="button"
|
||||
data-keyframe-ease-button=""
|
||||
aria-label={`Edit ${ease} easing`}
|
||||
title={`Edit ${ease} easing`}
|
||||
// A visible 24x24 badge would collide with the diamonds either
|
||||
// side, so the WCAG 2.2 (2.5.8) target is met with a centered
|
||||
// transparent ::before overlay; the box stays 16x16. Where the
|
||||
// segment is too narrow for that overlay the button keeps its
|
||||
// 16x16 hit area, which is WCAG's target-spacing exception:
|
||||
// the neighbouring diamonds are themselves the reason it
|
||||
// cannot grow, and stealing their clicks is the worse failure.
|
||||
className={`absolute flex items-center justify-center rounded opacity-0 transition-opacity group-hover:opacity-100 focus-visible:opacity-100 ${roomForFullTarget ? "before:absolute before:left-1/2 before:top-1/2 before:h-6 before:w-6 before:-translate-x-1/2 before:-translate-y-1/2 before:content-['']" : ""}`}
|
||||
style={{
|
||||
left: "50%",
|
||||
top: "50%",
|
||||
width: 16,
|
||||
height: 16,
|
||||
transform: "translate(-50%, -50%)",
|
||||
zIndex: 3,
|
||||
pointerEvents: "auto",
|
||||
padding: 0,
|
||||
border: "1px solid rgba(255, 255, 255, 0.14)",
|
||||
background: "#171717",
|
||||
cursor: "pointer",
|
||||
}}
|
||||
onPointerDown={(e) => {
|
||||
pressXRef.current = e.clientX;
|
||||
}}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
const pressX = pressXRef.current;
|
||||
pressXRef.current = null;
|
||||
if (
|
||||
pressX !== null &&
|
||||
Math.abs(e.clientX - pressX) >= KEYFRAME_DRAG_THRESHOLD_PX
|
||||
) {
|
||||
return;
|
||||
}
|
||||
onSelectSegment(target);
|
||||
}}
|
||||
>
|
||||
<MiniCurveSvg ease={ease} active size={12} />
|
||||
</button>
|
||||
</div>
|
||||
{onSelectSegment && showsEaseControl(kf) && (
|
||||
<SegmentEaseControl
|
||||
left={x1}
|
||||
width={x2 - x1}
|
||||
centerY={centerY}
|
||||
ease={kf.ease ?? globalEase}
|
||||
target={keyframeTarget(kf)}
|
||||
// connectorWidth is the clear span between the two diamonds'
|
||||
// edges, so a 24x24 target centred in it overhangs a diamond as
|
||||
// soon as the span is narrower than 24. The segment wrapper sits
|
||||
// at z-index 3, above the diamonds, so that overhang would win
|
||||
// the hit test and steal their clicks at fit zoom. Grow the
|
||||
// target only where the room exists.
|
||||
roomForFullTarget={connectorWidth >= 24}
|
||||
onSelectSegment={onSelectSegment}
|
||||
/>
|
||||
)}
|
||||
</Fragment>
|
||||
);
|
||||
@@ -156,3 +87,105 @@ export function TimelineDiamondConnectors({
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* The ease control targets one segment, so it needs the keyframe's own
|
||||
* animationId/tweenPercentage. On a merged inline row it is hidden where two
|
||||
* source animations collide at this percentage (one button cannot honestly
|
||||
* stand for several curves) or the keyframe has no source animation id
|
||||
* (runtime-scanned) so there is no tween to target.
|
||||
*/
|
||||
function showsEaseControl(kf: TimelineDiamondKeyframe): boolean {
|
||||
return (kf.collidingAnimationTargets?.length ?? 0) <= 1 && kf.animationId !== undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
* The ease button centred on one connector segment, plus the transparent
|
||||
* wrapper that positions it. Split out of the connector map so that map stays a
|
||||
* geometry loop and this keeps the press guard, hit-target sizing and click
|
||||
* filtering together.
|
||||
*/
|
||||
function SegmentEaseControl({
|
||||
left,
|
||||
width,
|
||||
centerY,
|
||||
ease,
|
||||
target,
|
||||
roomForFullTarget,
|
||||
onSelectSegment,
|
||||
}: {
|
||||
left: number;
|
||||
width: number;
|
||||
centerY: number;
|
||||
ease: string;
|
||||
target: TimelineKeyframeTarget;
|
||||
roomForFullTarget: boolean;
|
||||
onSelectSegment: (target: TimelineKeyframeTarget) => void;
|
||||
}) {
|
||||
// The ease button sits dead centre of its segment, which on a two-keyframe clip
|
||||
// is the centre of the clip bar, the natural place to grab a clip and drag it.
|
||||
// Swallowing pointerdown there made that grab a no-op. Instead the press falls
|
||||
// through to the clip (so the drag starts normally) and the button keeps only
|
||||
// the click, which we drop if the pointer actually travelled.
|
||||
const pressXRef = useRef<number | null>(null);
|
||||
return (
|
||||
<div
|
||||
className="group absolute"
|
||||
data-keyframe-ease-segment=""
|
||||
style={{
|
||||
left,
|
||||
top: centerY,
|
||||
width,
|
||||
height: 18,
|
||||
transform: "translateY(-50%)",
|
||||
// Own a stacking context above the diamond buttons. At fit zoom the 16px
|
||||
// ease control can overlap its neighbouring diamond; without a z-index
|
||||
// here the later diamond wins the hit test even though the child button
|
||||
// has z-index 3.
|
||||
zIndex: 3,
|
||||
// Only the centered control is interactive. The transparent segment
|
||||
// wrapper must not swallow connector/clip gestures.
|
||||
pointerEvents: "none",
|
||||
}}
|
||||
>
|
||||
<button
|
||||
type="button"
|
||||
data-keyframe-ease-button=""
|
||||
aria-label={`Edit ${ease} easing`}
|
||||
title={`Edit ${ease} easing`}
|
||||
// A visible 24x24 badge would collide with the diamonds either side, so
|
||||
// the WCAG 2.2 (2.5.8) target is met with a centered transparent
|
||||
// ::before overlay; the box stays 16x16. Where the segment is too narrow
|
||||
// for that overlay the button keeps its 16x16 hit area, which is WCAG's
|
||||
// target-spacing exception: the neighbouring diamonds are themselves the
|
||||
// reason it cannot grow, and stealing their clicks is the worse failure.
|
||||
className={`absolute flex items-center justify-center rounded opacity-0 transition-opacity group-hover:opacity-100 focus-visible:opacity-100 ${roomForFullTarget ? "before:absolute before:left-1/2 before:top-1/2 before:h-6 before:w-6 before:-translate-x-1/2 before:-translate-y-1/2 before:content-['']" : ""}`}
|
||||
style={{
|
||||
left: "50%",
|
||||
top: "50%",
|
||||
width: 16,
|
||||
height: 16,
|
||||
transform: "translate(-50%, -50%)",
|
||||
zIndex: 3,
|
||||
pointerEvents: "auto",
|
||||
padding: 0,
|
||||
border: "1px solid rgba(255, 255, 255, 0.14)",
|
||||
background: "#171717",
|
||||
cursor: "pointer",
|
||||
}}
|
||||
onPointerDown={(e) => {
|
||||
pressXRef.current = e.clientX;
|
||||
}}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
const pressX = pressXRef.current;
|
||||
pressXRef.current = null;
|
||||
if (pressX !== null && Math.abs(e.clientX - pressX) >= KEYFRAME_DRAG_THRESHOLD_PX) return;
|
||||
onSelectSegment(target);
|
||||
}}
|
||||
>
|
||||
<MiniCurveSvg ease={ease} active size={12} />
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
* keyframe-identity helper live here; the rendering lives there.
|
||||
*/
|
||||
import type { TimelineKeyframeTarget } from "./timelineKeyframeIdentity";
|
||||
import type { AnimationKeyframeTarget } from "../../hooks/gsapTweenSynth";
|
||||
|
||||
export interface TimelineDiamondKeyframe {
|
||||
percentage: number;
|
||||
@@ -13,9 +14,8 @@ export interface TimelineDiamondKeyframe {
|
||||
animationId?: string;
|
||||
properties: Record<string, number | string>;
|
||||
ease?: string;
|
||||
/** Set when 2+ source animations collide at this percentage (a single inline
|
||||
* ease button can't target one): the collapsed row hides the button here. */
|
||||
easeAmbiguous?: boolean;
|
||||
/** Source animation/keyframe targets that collide at this clip percentage. */
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
}
|
||||
|
||||
interface KeyframeCacheEntry {
|
||||
@@ -116,5 +116,6 @@ export function keyframeTarget(keyframe: TimelineDiamondKeyframe): TimelineKeyfr
|
||||
tweenPercentage: keyframe.tweenPercentage,
|
||||
propertyGroup: keyframe.propertyGroup,
|
||||
animationId: keyframe.animationId,
|
||||
collidingAnimationTargets: keyframe.collidingAnimationTargets,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import type { AnimationKeyframeTarget } from "../../hooks/gsapTweenSynth";
|
||||
|
||||
export interface TimelineKeyframeTarget {
|
||||
percentage: number;
|
||||
tweenPercentage?: number;
|
||||
propertyGroup?: string;
|
||||
animationId?: string;
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -36,72 +36,92 @@ const FLAT_TWEEN_TARGET: TimelineKeyframeTarget = {
|
||||
animationId: "position-tween",
|
||||
};
|
||||
|
||||
const COLLIDING_TARGET: TimelineKeyframeTarget = {
|
||||
...FLAT_TWEEN_TARGET,
|
||||
collidingAnimationTargets: [
|
||||
{ animationId: "position-tween", tweenPercentage: 100 },
|
||||
{ animationId: "scale-tween", tweenPercentage: 75 },
|
||||
],
|
||||
};
|
||||
|
||||
afterEach(() => {
|
||||
document.body.innerHTML = "";
|
||||
trackStudioSegmentEaseEdit.mockClear();
|
||||
usePlayerStore.setState({ focusedEaseSegment: null });
|
||||
});
|
||||
|
||||
describe("useTimelineKeyframeHandlers", () => {
|
||||
it("tracks opening the segment ease editor when a timeline segment is selected", () => {
|
||||
let onSelectSegment: ((elementId: string, target: TimelineKeyframeTarget) => void) | undefined;
|
||||
/**
|
||||
* Mount the hook on its own and hand back the handlers it returned, with the
|
||||
* options every test shares already filled in. Each test overrides only the
|
||||
* inputs its assertion is about.
|
||||
*/
|
||||
function mountHandlers(options: Partial<Parameters<typeof useTimelineKeyframeHandlers>[0]> = {}) {
|
||||
const handlers: Partial<ReturnType<typeof useTimelineKeyframeHandlers>> = {};
|
||||
|
||||
function Harness() {
|
||||
({ onSelectSegment } = useTimelineKeyframeHandlers({
|
||||
function Harness() {
|
||||
Object.assign(
|
||||
handlers,
|
||||
useTimelineKeyframeHandlers({
|
||||
expandedElements: [ELEMENT],
|
||||
keyframeCache: new Map(),
|
||||
setSelectedElementId: vi.fn(),
|
||||
setKfContextMenu: vi.fn(),
|
||||
toggleSelectedKeyframe: vi.fn(),
|
||||
}));
|
||||
return null;
|
||||
}
|
||||
...options,
|
||||
}),
|
||||
);
|
||||
return null;
|
||||
}
|
||||
|
||||
const root = mountReactHarness(<Harness />);
|
||||
act(() => onSelectSegment?.(ELEMENT.id, TARGET));
|
||||
return { root: mountReactHarness(<Harness />), handlers };
|
||||
}
|
||||
|
||||
describe("useTimelineKeyframeHandlers", () => {
|
||||
it("tracks opening the segment ease editor when a timeline segment is selected", () => {
|
||||
const { root, handlers } = mountHandlers();
|
||||
act(() => handlers.onSelectSegment?.(ELEMENT.id, TARGET));
|
||||
|
||||
expect(trackStudioSegmentEaseEdit).toHaveBeenCalledOnce();
|
||||
expect(trackStudioSegmentEaseEdit).toHaveBeenCalledWith({ action: "open" });
|
||||
act(() => root.unmount());
|
||||
});
|
||||
|
||||
it("focuses a merged segment with its colliding animation targets", () => {
|
||||
const { root, handlers } = mountHandlers();
|
||||
act(() => handlers.onSelectSegment?.(ELEMENT.id, COLLIDING_TARGET));
|
||||
|
||||
expect(usePlayerStore.getState().focusedEaseSegment).toEqual({
|
||||
animationId: "position-tween",
|
||||
collidingAnimationTargets: [
|
||||
{ animationId: "position-tween", tweenPercentage: 100 },
|
||||
{ animationId: "scale-tween", tweenPercentage: 75 },
|
||||
],
|
||||
tweenPercentage: 100,
|
||||
elementId: ELEMENT.id,
|
||||
});
|
||||
act(() => root.unmount());
|
||||
});
|
||||
|
||||
it("focuses a flat tween segment without seeking, while keyframe clicks still seek", () => {
|
||||
const onSeek = vi.fn();
|
||||
const onSelectElement = vi.fn();
|
||||
const setSelectedElementId = vi.fn();
|
||||
let onClickKeyframe:
|
||||
| ((el: TimelineElement, target: TimelineKeyframeTarget) => void)
|
||||
| undefined;
|
||||
let onSelectSegment: ((elementId: string, target: TimelineKeyframeTarget) => void) | undefined;
|
||||
|
||||
function Harness() {
|
||||
({ onClickKeyframe, onSelectSegment } = useTimelineKeyframeHandlers({
|
||||
expandedElements: [ELEMENT],
|
||||
keyframeCache: new Map(),
|
||||
onSelectElement,
|
||||
onSeek,
|
||||
setSelectedElementId,
|
||||
setKfContextMenu: vi.fn(),
|
||||
toggleSelectedKeyframe: vi.fn(),
|
||||
}));
|
||||
return null;
|
||||
}
|
||||
|
||||
const root = mountReactHarness(<Harness />);
|
||||
const { root, handlers } = mountHandlers({ onSelectElement, onSeek, setSelectedElementId });
|
||||
|
||||
// Selecting a segment must NOT move the playhead.
|
||||
act(() => onSelectSegment?.(ELEMENT.id, FLAT_TWEEN_TARGET));
|
||||
act(() => handlers.onSelectSegment?.(ELEMENT.id, FLAT_TWEEN_TARGET));
|
||||
expect(onSeek).not.toHaveBeenCalled();
|
||||
expect(usePlayerStore.getState().focusedEaseSegment).toEqual({
|
||||
animationId: "position-tween",
|
||||
tweenPercentage: 100,
|
||||
elementId: ELEMENT.id,
|
||||
});
|
||||
expect(usePlayerStore.getState().focusedEaseSegment?.collidingAnimationTargets).toBeUndefined();
|
||||
expect(setSelectedElementId).toHaveBeenCalledWith(ELEMENT.id);
|
||||
expect(onSelectElement).toHaveBeenCalledWith(ELEMENT);
|
||||
|
||||
// Clicking the keyframe itself still seeks to it (start 1 + 50% of 2 = 2).
|
||||
act(() => onClickKeyframe?.(ELEMENT, TARGET));
|
||||
act(() => handlers.onClickKeyframe?.(ELEMENT, TARGET));
|
||||
expect(onSeek).toHaveBeenCalledExactlyOnceWith(2);
|
||||
act(() => root.unmount());
|
||||
});
|
||||
|
||||
@@ -65,6 +65,7 @@ export function useTimelineKeyframeHandlers({
|
||||
if (target.animationId !== undefined && target.tweenPercentage !== undefined) {
|
||||
usePlayerStore.getState().setFocusedEaseSegment({
|
||||
animationId: target.animationId,
|
||||
collidingAnimationTargets: target.collidingAnimationTargets,
|
||||
tweenPercentage: target.tweenPercentage,
|
||||
elementId: elId,
|
||||
});
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import type { GsapAnimation } from "@hyperframes/core/gsap-parser";
|
||||
import type { StoreApi } from "zustand";
|
||||
import type { AnimationKeyframeTarget } from "../../hooks/gsapTweenSynth";
|
||||
|
||||
/** Minimal keyframe cache types — mirrors GsapKeyframesData without pulling in Node-only gsap-parser. */
|
||||
export interface KeyframeCacheEntry {
|
||||
@@ -14,9 +15,8 @@ export interface KeyframeCacheEntry {
|
||||
animationId?: string;
|
||||
properties: Record<string, number | string>;
|
||||
ease?: string;
|
||||
/** Set when 2+ source animations collide at this percentage (a single inline
|
||||
* ease button can't target one): the collapsed row hides the button here. */
|
||||
easeAmbiguous?: boolean;
|
||||
/** Source animation/keyframe targets that collide at this clip percentage. */
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
}>;
|
||||
ease?: string;
|
||||
easeEach?: string;
|
||||
@@ -37,9 +37,19 @@ export interface KeyframeSlice {
|
||||
|
||||
/** elementId scopes the request to one element so a shared (class-selector)
|
||||
* animation id can't open the ease editor on the wrong element. */
|
||||
focusedEaseSegment: { animationId: string; tweenPercentage: number; elementId: string } | null;
|
||||
focusedEaseSegment: {
|
||||
animationId: string;
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
tweenPercentage: number;
|
||||
elementId: string;
|
||||
} | null;
|
||||
setFocusedEaseSegment: (
|
||||
target: { animationId: string; tweenPercentage: number; elementId: string } | null,
|
||||
target: {
|
||||
animationId: string;
|
||||
collidingAnimationTargets?: AnimationKeyframeTarget[];
|
||||
tweenPercentage: number;
|
||||
elementId: string;
|
||||
} | null,
|
||||
) => void;
|
||||
|
||||
/** Keyframe data per element id, populated from parsed GSAP animations. */
|
||||
|
||||
Reference in New Issue
Block a user