@hyperframes/studio 0.7.58 → 0.7.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{hyperframes-player-CtTDO63S.js → hyperframes-player-Bm07FLkl.js} +1 -1
- package/dist/assets/{index-C47jAC3Q.js → index-B995FG46.js} +1 -1
- package/dist/assets/index-CrkAdJkb.js +426 -0
- package/dist/assets/index-Dj5p8U_A.css +1 -0
- package/dist/assets/{index-DeQPzqwH.js → index-FvzmPhfG.js} +1 -1
- package/dist/index.d.ts +12 -3
- package/dist/index.html +2 -2
- package/dist/index.js +13514 -8528
- package/dist/index.js.map +1 -1
- package/dist/styles/tailwind-preset.d.ts +5 -0
- package/dist/styles/tailwind-preset.js +8 -1
- package/dist/styles/tailwind-preset.js.map +1 -1
- package/package.json +7 -7
- package/src/App.tsx +3 -3
- package/src/components/DesignPanelPromoteProvider.tsx +15 -2
- package/src/components/StudioRightPanel.tsx +29 -51
- package/src/components/editor/AnimationCard.test.tsx +134 -0
- package/src/components/editor/AnimationCard.tsx +19 -4
- package/src/components/editor/ArcPathControls.tsx +1 -0
- package/src/components/editor/GestureRecordControl.tsx +7 -1
- package/src/components/editor/GsapAnimationSection.tsx +109 -14
- package/src/components/editor/InspectorHeaderActions.tsx +42 -4
- package/src/components/editor/PropertyPanel.test.tsx +948 -0
- package/src/components/editor/PropertyPanel.tsx +144 -148
- package/src/components/editor/PropertyPanelEmptyState.test.tsx +74 -0
- package/src/components/editor/PropertyPanelEmptyState.tsx +179 -1
- package/src/components/editor/PropertyPanelFlat.tsx +580 -0
- package/src/components/editor/PropertyPanelFlatFooter.test.tsx +83 -0
- package/src/components/editor/PropertyPanelFlatFooter.tsx +73 -0
- package/src/components/editor/PropertyPanelFlatHeader.test.tsx +79 -0
- package/src/components/editor/PropertyPanelFlatHeader.tsx +112 -0
- package/src/components/editor/gsapAnimationCallbacks.ts +27 -0
- package/src/components/editor/gsapLivePreview.ts +34 -0
- package/src/components/editor/manualEditingAvailability.test.ts +10 -0
- package/src/components/editor/manualEditingAvailability.ts +9 -0
- package/src/components/editor/propertyPanel3dTransform.tsx +5 -0
- package/src/components/editor/propertyPanelColor.test.tsx +28 -0
- package/src/components/editor/propertyPanelColor.tsx +31 -1
- package/src/components/editor/propertyPanelColorGradingControls.tsx +11 -2
- package/src/components/editor/propertyPanelColorGradingSection.tsx +45 -365
- package/src/components/editor/propertyPanelColorGradingSlider.tsx +19 -5
- package/src/components/editor/propertyPanelFill.tsx +22 -5
- package/src/components/editor/propertyPanelFlatColorGradingSection.test.tsx +622 -0
- package/src/components/editor/propertyPanelFlatColorGradingSection.tsx +570 -0
- package/src/components/editor/propertyPanelFlatLayoutSection.test.tsx +293 -0
- package/src/components/editor/propertyPanelFlatLayoutSection.tsx +383 -0
- package/src/components/editor/propertyPanelFlatMaskInsetRows.tsx +102 -0
- package/src/components/editor/propertyPanelFlatMediaSection.test.tsx +436 -0
- package/src/components/editor/propertyPanelFlatMediaSection.tsx +286 -0
- package/src/components/editor/propertyPanelFlatMotionSection.test.tsx +272 -0
- package/src/components/editor/propertyPanelFlatMotionSection.tsx +315 -0
- package/src/components/editor/propertyPanelFlatPrimitives.test.tsx +1174 -0
- package/src/components/editor/propertyPanelFlatPrimitives.tsx +563 -0
- package/src/components/editor/propertyPanelFlatSelectRow.tsx +101 -0
- package/src/components/editor/propertyPanelFlatStyleHelpers.test.ts +23 -0
- package/src/components/editor/propertyPanelFlatStyleHelpers.ts +27 -0
- package/src/components/editor/propertyPanelFlatStyleSections.test.tsx +598 -0
- package/src/components/editor/propertyPanelFlatStyleSections.tsx +516 -0
- package/src/components/editor/propertyPanelFlatTextSection.test.tsx +465 -0
- package/src/components/editor/propertyPanelFlatTextSection.tsx +407 -0
- package/src/components/editor/propertyPanelFlatTimingDerivation.test.ts +71 -0
- package/src/components/editor/propertyPanelFlatTimingDerivation.ts +59 -0
- package/src/components/editor/propertyPanelFlatToggle.test.tsx +63 -0
- package/src/components/editor/propertyPanelFlatToggle.tsx +53 -0
- package/src/components/editor/propertyPanelFont.test.tsx +30 -0
- package/src/components/editor/propertyPanelFont.tsx +136 -95
- package/src/components/editor/propertyPanelHelpers.ts +73 -0
- package/src/components/editor/propertyPanelInputCoverage.test.tsx +587 -0
- package/src/components/editor/propertyPanelMediaSection.tsx +10 -0
- package/src/components/editor/propertyPanelPrimitives.tsx +60 -29
- package/src/components/editor/propertyPanelSections.test.tsx +161 -0
- package/src/components/editor/propertyPanelSections.tsx +154 -90
- package/src/components/editor/propertyPanelStyleSections.tsx +12 -1
- package/src/components/editor/propertyPanelTimingSection.tsx +1 -1
- package/src/components/editor/propertyPanelTypes.ts +14 -1
- package/src/components/editor/propertyPanelValueTier.test.ts +32 -0
- package/src/components/editor/propertyPanelValueTier.ts +28 -0
- package/src/components/editor/useColorGradingController.test.ts +418 -0
- package/src/components/editor/useColorGradingController.ts +596 -0
- package/src/components/panels/VariablesPanel.tsx +4 -0
- package/src/components/sidebar/CompositionsTab.test.ts +28 -2
- package/src/components/sidebar/CompositionsTab.tsx +3 -1
- package/src/components/storyboard/FramePoster.tsx +24 -4
- package/src/components/storyboard/StoryboardFrameFocus.tsx +4 -0
- package/src/components/storyboard/StoryboardFrameTile.tsx +30 -1
- package/src/components/storyboard/StoryboardGrid.tsx +23 -1
- package/src/components/storyboard/StoryboardLoaded.tsx +58 -2
- package/src/components/storyboard/StoryboardView.tsx +9 -2
- package/src/components/storyboard/frameComments.test.ts +95 -0
- package/src/components/storyboard/frameComments.ts +115 -0
- package/src/components/storyboard/useFrameComments.ts +82 -0
- package/src/contexts/DesignPanelInputContext.test.tsx +81 -0
- package/src/contexts/DesignPanelInputContext.tsx +48 -0
- package/src/contexts/DomEditContext.tsx +4 -0
- package/src/contexts/VariablePromoteContext.test.tsx +67 -0
- package/src/contexts/VariablePromoteContext.tsx +10 -5
- package/src/hooks/domEditCommitRunner.ts +11 -0
- package/src/hooks/gsapScriptCommitTypes.ts +6 -4
- package/src/hooks/timelineTrackVisibility.test.ts +52 -0
- package/src/hooks/timelineTrackVisibility.ts +27 -10
- package/src/hooks/useAppHotkeys.ts +9 -0
- package/src/hooks/useDomEditAttributeCommits.ts +123 -1
- package/src/hooks/useDomEditCommits.ts +29 -175
- package/src/hooks/useDomEditCommitsHelpers.ts +158 -0
- package/src/hooks/useDomEditSession.ts +17 -5
- package/src/hooks/useDomEditTextCommits.ts +14 -9
- package/src/hooks/useDomEditWiring.ts +10 -9
- package/src/hooks/useElementLifecycleOps.ts +8 -3
- package/src/hooks/useFileManager.projectOwnership.test.tsx +98 -0
- package/src/hooks/useFileManager.ts +82 -60
- package/src/hooks/useGsapAnimationOps.ts +7 -6
- package/src/hooks/useGsapKeyframeOps.ts +6 -5
- package/src/hooks/useGsapPropertyDebounce.ts +43 -28
- package/src/hooks/useGsapPropertyDebounceFlush.test.ts +35 -0
- package/src/hooks/useGsapScriptCommits.test.tsx +48 -2
- package/src/hooks/useGsapScriptCommits.ts +150 -50
- package/src/hooks/useGsapSelectionHandlers.test.tsx +116 -0
- package/src/hooks/useGsapSelectionHandlers.ts +94 -31
- package/src/hooks/useInspectorSplitResize.ts +51 -0
- package/src/hooks/usePersistentEditHistory.projectOwnership.test.tsx +60 -0
- package/src/hooks/usePersistentEditHistory.test.ts +49 -1
- package/src/hooks/usePersistentEditHistory.ts +71 -31
- package/src/hooks/useProjectCompositionVariables.ts +10 -10
- package/src/hooks/useProjectSignaturePoll.test.tsx +135 -0
- package/src/hooks/useProjectSignaturePoll.ts +68 -0
- package/src/hooks/useSdkSession.lifecycle.test.tsx +137 -0
- package/src/hooks/useSdkSession.ts +155 -14
- package/src/hooks/useSlideshowPersist.ts +7 -1
- package/src/hooks/useStoryboard.ts +23 -4
- package/src/hooks/useTimelineEditing.test.tsx +4 -1
- package/src/hooks/useTimelineEditing.ts +16 -10
- package/src/hooks/useTimelineEditingTypes.ts +3 -0
- package/src/hooks/useTimelineGroupEditing.ts +16 -2
- package/src/hooks/useVariablesPersist.ts +9 -7
- package/src/icons/SystemIcons.tsx +2 -0
- package/src/styles/studio.css +22 -0
- package/src/styles/tailwind-preset.shared.js +7 -0
- package/src/utils/designInputTracking.test.ts +97 -0
- package/src/utils/designInputTracking.ts +80 -0
- package/src/utils/sdkCutover.gate.test.ts +7 -7
- package/src/utils/sdkCutover.test.ts +490 -57
- package/src/utils/sdkCutover.ts +181 -219
- package/src/utils/sdkEditTransaction.ts +292 -0
- package/src/utils/sdkResolverAttempts.ts +94 -0
- package/src/utils/sdkResolverShadow.test.ts +148 -0
- package/src/utils/sdkResolverShadow.ts +139 -106
- package/src/utils/setSlideshowManifest.test.ts +0 -9
- package/src/utils/setSlideshowManifest.ts +20 -27
- package/src/utils/studioFileHistory.test.ts +41 -0
- package/src/utils/studioFileHistory.ts +30 -27
- package/src/utils/studioFileMutationCoordinator.ts +45 -0
- package/src/utils/studioHelpers.test.ts +45 -0
- package/src/utils/studioHelpers.ts +45 -14
- package/src/utils/studioSaveDiagnostics.ts +17 -0
- package/dist/assets/index-B_UvTX3E.js +0 -423
- package/dist/assets/index-uahwWkgw.css +0 -1
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
// @vitest-environment happy-dom
|
|
2
|
+
|
|
3
|
+
import React, { act } from "react";
|
|
4
|
+
import { createRoot, type Root } from "react-dom/client";
|
|
5
|
+
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
6
|
+
import { useProjectSignaturePoll } from "./useProjectSignaturePoll";
|
|
7
|
+
|
|
8
|
+
Reflect.set(globalThis, "IS_REACT_ACT_ENVIRONMENT", true);
|
|
9
|
+
|
|
10
|
+
function HookHost({
|
|
11
|
+
signature,
|
|
12
|
+
onChange,
|
|
13
|
+
}: {
|
|
14
|
+
signature: string | undefined;
|
|
15
|
+
onChange: () => void;
|
|
16
|
+
}) {
|
|
17
|
+
useProjectSignaturePoll("demo", signature, onChange);
|
|
18
|
+
return null;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
let root: Root | null = null;
|
|
22
|
+
let container: HTMLElement | null = null;
|
|
23
|
+
|
|
24
|
+
function mount(signature: string | undefined, onChange: () => void): void {
|
|
25
|
+
act(() => {
|
|
26
|
+
if (!root) {
|
|
27
|
+
container = document.createElement("div");
|
|
28
|
+
document.body.appendChild(container);
|
|
29
|
+
root = createRoot(container);
|
|
30
|
+
}
|
|
31
|
+
root.render(<HookHost signature={signature} onChange={onChange} />);
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function unmount(): void {
|
|
36
|
+
if (root) {
|
|
37
|
+
act(() => root?.unmount());
|
|
38
|
+
root = null;
|
|
39
|
+
}
|
|
40
|
+
container?.remove();
|
|
41
|
+
container = null;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
function mockSignatureResponse(signature: string): ReturnType<typeof vi.fn> {
|
|
45
|
+
const fetchMock = vi.fn(async () => ({ ok: true, json: async () => ({ signature }) }));
|
|
46
|
+
vi.stubGlobal("fetch", fetchMock);
|
|
47
|
+
return fetchMock;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
describe("useProjectSignaturePoll", () => {
|
|
51
|
+
beforeEach(() => {
|
|
52
|
+
vi.useFakeTimers();
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
afterEach(() => {
|
|
56
|
+
unmount();
|
|
57
|
+
vi.useRealTimers();
|
|
58
|
+
vi.unstubAllGlobals();
|
|
59
|
+
vi.restoreAllMocks();
|
|
60
|
+
});
|
|
61
|
+
|
|
62
|
+
it("fires onChange when the polled signature moves past the loaded one", async () => {
|
|
63
|
+
const fetchMock = mockSignatureResponse("sig-b");
|
|
64
|
+
const onChange = vi.fn();
|
|
65
|
+
mount("sig-a", onChange);
|
|
66
|
+
|
|
67
|
+
await vi.advanceTimersByTimeAsync(2000);
|
|
68
|
+
expect(fetchMock).toHaveBeenCalledWith("/api/projects/demo/signature");
|
|
69
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
it("stays quiet while the polled signature matches", async () => {
|
|
73
|
+
mockSignatureResponse("sig-a");
|
|
74
|
+
const onChange = vi.fn();
|
|
75
|
+
mount("sig-a", onChange);
|
|
76
|
+
|
|
77
|
+
await vi.advanceTimersByTimeAsync(6000);
|
|
78
|
+
expect(onChange).not.toHaveBeenCalled();
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
it("does not poll before a baseline signature exists", async () => {
|
|
82
|
+
const fetchMock = mockSignatureResponse("sig-a");
|
|
83
|
+
const onChange = vi.fn();
|
|
84
|
+
mount(undefined, onChange);
|
|
85
|
+
|
|
86
|
+
await vi.advanceTimersByTimeAsync(6000);
|
|
87
|
+
expect(fetchMock).not.toHaveBeenCalled();
|
|
88
|
+
expect(onChange).not.toHaveBeenCalled();
|
|
89
|
+
});
|
|
90
|
+
|
|
91
|
+
it("re-arms against the caller's refreshed signature without re-mounting", async () => {
|
|
92
|
+
mockSignatureResponse("sig-b");
|
|
93
|
+
const onChange = vi.fn();
|
|
94
|
+
mount("sig-a", onChange);
|
|
95
|
+
|
|
96
|
+
await vi.advanceTimersByTimeAsync(2000);
|
|
97
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
98
|
+
|
|
99
|
+
// The caller refetched and now holds the polled signature — no more firing.
|
|
100
|
+
mount("sig-b", onChange);
|
|
101
|
+
await vi.advanceTimersByTimeAsync(6000);
|
|
102
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
103
|
+
});
|
|
104
|
+
|
|
105
|
+
it("skips ticks while the tab is hidden and re-checks on visibility", async () => {
|
|
106
|
+
const fetchMock = mockSignatureResponse("sig-b");
|
|
107
|
+
const onChange = vi.fn();
|
|
108
|
+
let hidden = true;
|
|
109
|
+
vi.spyOn(document, "hidden", "get").mockImplementation(() => hidden);
|
|
110
|
+
mount("sig-a", onChange);
|
|
111
|
+
|
|
112
|
+
await vi.advanceTimersByTimeAsync(6000);
|
|
113
|
+
expect(fetchMock).not.toHaveBeenCalled();
|
|
114
|
+
|
|
115
|
+
hidden = false;
|
|
116
|
+
await act(async () => {
|
|
117
|
+
document.dispatchEvent(new Event("visibilitychange"));
|
|
118
|
+
await vi.advanceTimersByTimeAsync(0);
|
|
119
|
+
});
|
|
120
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
it("stops polling after unmount", async () => {
|
|
124
|
+
mockSignatureResponse("sig-b");
|
|
125
|
+
const onChange = vi.fn();
|
|
126
|
+
mount("sig-a", onChange);
|
|
127
|
+
|
|
128
|
+
await vi.advanceTimersByTimeAsync(2000);
|
|
129
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
130
|
+
|
|
131
|
+
unmount();
|
|
132
|
+
await vi.advanceTimersByTimeAsync(10_000);
|
|
133
|
+
expect(onChange).toHaveBeenCalledTimes(1);
|
|
134
|
+
});
|
|
135
|
+
});
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { useEffect, useRef } from "react";
|
|
2
|
+
import { buildProjectApiPath } from "../utils/projectRouting";
|
|
3
|
+
|
|
4
|
+
const POLL_INTERVAL_MS = 2000;
|
|
5
|
+
|
|
6
|
+
/** One poll: the current signature, or null on any failure (skip this tick). */
|
|
7
|
+
async function fetchProjectSignature(projectId: string): Promise<string | null> {
|
|
8
|
+
try {
|
|
9
|
+
const res = await fetch(buildProjectApiPath(projectId, "/signature"));
|
|
10
|
+
if (!res.ok) return null;
|
|
11
|
+
const body = (await res.json()) as { signature?: string };
|
|
12
|
+
return typeof body.signature === "string" ? body.signature : null;
|
|
13
|
+
} catch {
|
|
14
|
+
return null;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Poll the project's content signature and fire `onChange` when it no longer
|
|
20
|
+
* matches `currentSignature` — the storyboard board uses this to refresh itself
|
|
21
|
+
* while an agent writes sketch frames to disk.
|
|
22
|
+
*
|
|
23
|
+
* The comparison baseline is the signature the caller's data was loaded with,
|
|
24
|
+
* so a refetch triggered by `onChange` naturally re-arms the poll with the new
|
|
25
|
+
* value. Ticks are skipped while the tab is hidden (a visibility flip re-checks
|
|
26
|
+
* immediately) and while a previous request is still in flight; request
|
|
27
|
+
* failures are ignored — polling degrades to today's manual-reload behavior.
|
|
28
|
+
*/
|
|
29
|
+
export function useProjectSignaturePoll(
|
|
30
|
+
projectId: string | null,
|
|
31
|
+
currentSignature: string | undefined,
|
|
32
|
+
onChange: () => void,
|
|
33
|
+
): void {
|
|
34
|
+
const signatureRef = useRef(currentSignature);
|
|
35
|
+
const onChangeRef = useRef(onChange);
|
|
36
|
+
signatureRef.current = currentSignature;
|
|
37
|
+
onChangeRef.current = onChange;
|
|
38
|
+
|
|
39
|
+
useEffect(() => {
|
|
40
|
+
if (!projectId) return;
|
|
41
|
+
let disposed = false;
|
|
42
|
+
let inFlight = false;
|
|
43
|
+
|
|
44
|
+
const tick = async () => {
|
|
45
|
+
if (disposed || inFlight || document.hidden) return;
|
|
46
|
+
// No baseline yet (initial storyboard fetch still loading, or an older
|
|
47
|
+
// server without the signature field) — nothing to compare against.
|
|
48
|
+
if (signatureRef.current === undefined) return;
|
|
49
|
+
inFlight = true;
|
|
50
|
+
const latest = await fetchProjectSignature(projectId);
|
|
51
|
+
inFlight = false;
|
|
52
|
+
if (disposed || latest === null) return;
|
|
53
|
+
if (latest !== signatureRef.current) onChangeRef.current();
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
const interval = window.setInterval(() => void tick(), POLL_INTERVAL_MS);
|
|
57
|
+
const onVisibilityChange = () => {
|
|
58
|
+
if (!document.hidden) void tick();
|
|
59
|
+
};
|
|
60
|
+
document.addEventListener("visibilitychange", onVisibilityChange);
|
|
61
|
+
|
|
62
|
+
return () => {
|
|
63
|
+
disposed = true;
|
|
64
|
+
window.clearInterval(interval);
|
|
65
|
+
document.removeEventListener("visibilitychange", onVisibilityChange);
|
|
66
|
+
};
|
|
67
|
+
}, [projectId]);
|
|
68
|
+
}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
// @vitest-environment happy-dom
|
|
2
|
+
import { act } from "react";
|
|
3
|
+
import { createRoot } from "react-dom/client";
|
|
4
|
+
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
5
|
+
|
|
6
|
+
const openComposition = vi.fn();
|
|
7
|
+
|
|
8
|
+
vi.mock("@hyperframes/sdk", () => ({
|
|
9
|
+
openComposition: (...args: unknown[]) => openComposition(...args),
|
|
10
|
+
}));
|
|
11
|
+
|
|
12
|
+
import type { Composition } from "@hyperframes/sdk";
|
|
13
|
+
import { useSdkSession, type SdkSessionHandle } from "./useSdkSession";
|
|
14
|
+
|
|
15
|
+
(globalThis as unknown as { IS_REACT_ACT_ENVIRONMENT: boolean }).IS_REACT_ACT_ENVIRONMENT = true;
|
|
16
|
+
|
|
17
|
+
function fakeSession(): Composition {
|
|
18
|
+
return { dispose: vi.fn() } as unknown as Composition;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
function response(content: string): Response {
|
|
22
|
+
return { ok: true, json: async () => ({ content }) } as Response;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
async function flushAsyncEffects(): Promise<void> {
|
|
26
|
+
await act(async () => {
|
|
27
|
+
await new Promise((resolve) => setTimeout(resolve, 0));
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
describe("useSdkSession ownership", () => {
|
|
32
|
+
beforeEach(() => {
|
|
33
|
+
openComposition.mockReset();
|
|
34
|
+
class FakeEventSource {
|
|
35
|
+
addEventListener(): void {}
|
|
36
|
+
close(): void {}
|
|
37
|
+
}
|
|
38
|
+
vi.stubGlobal("EventSource", FakeEventSource);
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
afterEach(() => {
|
|
42
|
+
vi.unstubAllGlobals();
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
it("hides project A immediately while project B with the same path is still opening", async () => {
|
|
46
|
+
const sessionA = fakeSession();
|
|
47
|
+
const publishedA = fakeSession();
|
|
48
|
+
const sessionB = fakeSession();
|
|
49
|
+
let resolveProjectB: ((value: Response) => void) | undefined;
|
|
50
|
+
const projectBResponse = new Promise<Response>((resolve) => {
|
|
51
|
+
resolveProjectB = resolve;
|
|
52
|
+
});
|
|
53
|
+
vi.stubGlobal(
|
|
54
|
+
"fetch",
|
|
55
|
+
vi.fn((url: string) =>
|
|
56
|
+
url.includes("project-b") ? projectBResponse : Promise.resolve(response("PROJECT_A")),
|
|
57
|
+
),
|
|
58
|
+
);
|
|
59
|
+
openComposition.mockImplementation(async (content: string) =>
|
|
60
|
+
content === "PROJECT_A" ? sessionA : sessionB,
|
|
61
|
+
);
|
|
62
|
+
|
|
63
|
+
const captured: { handle: SdkSessionHandle | null } = { handle: null };
|
|
64
|
+
function Probe({ projectId }: { projectId: string }) {
|
|
65
|
+
captured.handle = useSdkSession(projectId, "index.html");
|
|
66
|
+
return null;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
const root = createRoot(document.createElement("div"));
|
|
70
|
+
await act(async () => root.render(<Probe projectId="project-a" />));
|
|
71
|
+
await flushAsyncEffects();
|
|
72
|
+
expect(captured.handle?.session).toBe(sessionA);
|
|
73
|
+
|
|
74
|
+
let publication: ReturnType<SdkSessionHandle["publish"]> | undefined;
|
|
75
|
+
await act(async () => {
|
|
76
|
+
publication = captured.handle?.publish({
|
|
77
|
+
candidate: publishedA,
|
|
78
|
+
expectedSession: sessionA,
|
|
79
|
+
targetPath: "index.html",
|
|
80
|
+
});
|
|
81
|
+
});
|
|
82
|
+
expect(publication).toBe("published");
|
|
83
|
+
expect(captured.handle?.session).toBe(publishedA);
|
|
84
|
+
|
|
85
|
+
await act(async () => root.render(<Probe projectId="project-b" />));
|
|
86
|
+
expect(captured.handle?.session).toBeNull();
|
|
87
|
+
expect(publishedA.dispose).toHaveBeenCalledOnce();
|
|
88
|
+
expect(
|
|
89
|
+
captured.handle?.publish({
|
|
90
|
+
candidate: fakeSession(),
|
|
91
|
+
expectedSession: publishedA,
|
|
92
|
+
targetPath: "index.html",
|
|
93
|
+
}),
|
|
94
|
+
).toBe("rejected-inactive-target");
|
|
95
|
+
|
|
96
|
+
resolveProjectB?.(response("PROJECT_B"));
|
|
97
|
+
await flushAsyncEffects();
|
|
98
|
+
expect(captured.handle?.session).toBe(sessionB);
|
|
99
|
+
|
|
100
|
+
await act(async () => root.unmount());
|
|
101
|
+
expect(sessionB.dispose).toHaveBeenCalledOnce();
|
|
102
|
+
});
|
|
103
|
+
|
|
104
|
+
it("disposes the currently published candidate when its owner unmounts", async () => {
|
|
105
|
+
const opened = fakeSession();
|
|
106
|
+
const published = fakeSession();
|
|
107
|
+
vi.stubGlobal(
|
|
108
|
+
"fetch",
|
|
109
|
+
vi.fn(async () => response("PROJECT_A")),
|
|
110
|
+
);
|
|
111
|
+
openComposition.mockResolvedValue(opened);
|
|
112
|
+
|
|
113
|
+
const captured: { handle: SdkSessionHandle | null } = { handle: null };
|
|
114
|
+
function Probe() {
|
|
115
|
+
captured.handle = useSdkSession("project-a", "index.html");
|
|
116
|
+
return null;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
const root = createRoot(document.createElement("div"));
|
|
120
|
+
await act(async () => root.render(<Probe />));
|
|
121
|
+
await flushAsyncEffects();
|
|
122
|
+
expect(captured.handle?.session).toBe(opened);
|
|
123
|
+
let publication: ReturnType<SdkSessionHandle["publish"]> | undefined;
|
|
124
|
+
await act(async () => {
|
|
125
|
+
publication = captured.handle?.publish({
|
|
126
|
+
candidate: published,
|
|
127
|
+
expectedSession: opened,
|
|
128
|
+
targetPath: "index.html",
|
|
129
|
+
});
|
|
130
|
+
});
|
|
131
|
+
expect(publication).toBe("published");
|
|
132
|
+
expect(opened.dispose).toHaveBeenCalledOnce();
|
|
133
|
+
|
|
134
|
+
await act(async () => root.unmount());
|
|
135
|
+
expect(published.dispose).toHaveBeenCalledOnce();
|
|
136
|
+
});
|
|
137
|
+
});
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { useState, useEffect, useCallback } from "react";
|
|
1
|
+
import { useState, useEffect, useCallback, useRef } from "react";
|
|
2
2
|
import type { MutableRefObject } from "react";
|
|
3
3
|
import { openComposition } from "@hyperframes/sdk";
|
|
4
4
|
import type { Composition } from "@hyperframes/sdk";
|
|
5
5
|
import { readStudioFileChangePath } from "../components/editor/manualEdits";
|
|
6
6
|
import { isSelfWriteEcho } from "./sdkSelfWriteRegistry";
|
|
7
|
+
import { trackStudioEvent } from "../utils/studioTelemetry";
|
|
8
|
+
import type { PublishSdkSession } from "../utils/sdkCutover";
|
|
7
9
|
|
|
8
10
|
/**
|
|
9
11
|
* Read a project file's content, or undefined on a non-2xx (optional read).
|
|
@@ -82,6 +84,8 @@ export function shouldReloadOnFileChange(
|
|
|
82
84
|
|
|
83
85
|
export interface SdkSessionHandle {
|
|
84
86
|
session: Composition | null;
|
|
87
|
+
/** Atomically publish a fully persisted candidate session. */
|
|
88
|
+
publish: PublishSdkSession;
|
|
85
89
|
/**
|
|
86
90
|
* Force a session reload immediately, bypassing the self-write suppress
|
|
87
91
|
* window. Call after undo/redo writes the active composition file so the
|
|
@@ -90,13 +94,82 @@ export interface SdkSessionHandle {
|
|
|
90
94
|
forceReload: () => void;
|
|
91
95
|
}
|
|
92
96
|
|
|
97
|
+
interface SdkSessionOwner {
|
|
98
|
+
projectId: string;
|
|
99
|
+
path: string;
|
|
100
|
+
reloadToken: number;
|
|
101
|
+
generation: number;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
interface OwnedSdkSession extends SdkSessionOwner {
|
|
105
|
+
session: Composition;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
function isSessionOwnerActive(
|
|
109
|
+
owner: SdkSessionOwner | undefined,
|
|
110
|
+
projectId: string | null,
|
|
111
|
+
path: string | null,
|
|
112
|
+
targetPath: string,
|
|
113
|
+
): owner is SdkSessionOwner {
|
|
114
|
+
if (!owner) return false;
|
|
115
|
+
return owner.projectId === projectId && owner.path === path && owner.path === targetPath;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
function isSessionOwnerCurrent(
|
|
119
|
+
owner: SdkSessionOwner,
|
|
120
|
+
generation: number,
|
|
121
|
+
projectId: string | null,
|
|
122
|
+
path: string | null,
|
|
123
|
+
reloadToken: number,
|
|
124
|
+
): boolean {
|
|
125
|
+
return (
|
|
126
|
+
owner.generation === generation &&
|
|
127
|
+
owner.projectId === projectId &&
|
|
128
|
+
owner.path === path &&
|
|
129
|
+
owner.reloadToken === reloadToken
|
|
130
|
+
);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
function ownsExpectedSession(
|
|
134
|
+
current: OwnedSdkSession | null,
|
|
135
|
+
expectedOwner: SdkSessionOwner,
|
|
136
|
+
expectedSession: Composition,
|
|
137
|
+
reloadToken: number,
|
|
138
|
+
): current is OwnedSdkSession {
|
|
139
|
+
if (!current) return false;
|
|
140
|
+
return (
|
|
141
|
+
current.session === expectedSession &&
|
|
142
|
+
current.generation === expectedOwner.generation &&
|
|
143
|
+
current.reloadToken === reloadToken
|
|
144
|
+
);
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
function disposeSdkSession(session: Composition): void {
|
|
148
|
+
try {
|
|
149
|
+
session.dispose();
|
|
150
|
+
} catch (error) {
|
|
151
|
+
trackStudioEvent("sdk_session_dispose_failed", {
|
|
152
|
+
error: error instanceof Error ? error.message : String(error),
|
|
153
|
+
});
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
93
157
|
export function useSdkSession(
|
|
94
158
|
projectId: string | null,
|
|
95
159
|
activeCompPath: string | null,
|
|
96
160
|
domEditSaveTimestampRef?: MutableRefObject<number>,
|
|
97
161
|
): SdkSessionHandle {
|
|
98
|
-
const [
|
|
162
|
+
const [ownedSession, setOwnedSession] = useState<OwnedSdkSession | null>(null);
|
|
163
|
+
const ownedSessionRef = useRef<OwnedSdkSession | null>(null);
|
|
164
|
+
const sessionOwnersRef = useRef(new WeakMap<Composition, SdkSessionOwner>());
|
|
165
|
+
const generationRef = useRef(0);
|
|
166
|
+
const projectIdRef = useRef(projectId);
|
|
167
|
+
projectIdRef.current = projectId;
|
|
168
|
+
const activeCompPathRef = useRef(activeCompPath);
|
|
169
|
+
activeCompPathRef.current = activeCompPath;
|
|
99
170
|
const [reloadToken, setReloadToken] = useState(0);
|
|
171
|
+
const reloadTokenRef = useRef(reloadToken);
|
|
172
|
+
reloadTokenRef.current = reloadToken;
|
|
100
173
|
|
|
101
174
|
// ── Re-open on external change to the active composition ──
|
|
102
175
|
useEffect(() => {
|
|
@@ -135,13 +208,28 @@ export function useSdkSession(
|
|
|
135
208
|
|
|
136
209
|
// ── Open / re-open the session ──
|
|
137
210
|
useEffect(() => {
|
|
211
|
+
const generation = ++generationRef.current;
|
|
212
|
+
let cancelled = false;
|
|
213
|
+
|
|
214
|
+
// The preceding effect normally released its generation first. Clear any
|
|
215
|
+
// remaining owner defensively so an invalid project/path cannot retain it.
|
|
216
|
+
const previous = ownedSessionRef.current;
|
|
217
|
+
ownedSessionRef.current = null;
|
|
218
|
+
setOwnedSession(null);
|
|
219
|
+
if (previous) disposeSdkSession(previous.session);
|
|
220
|
+
|
|
138
221
|
if (!projectId || !activeCompPath) {
|
|
139
|
-
|
|
140
|
-
|
|
222
|
+
return () => {
|
|
223
|
+
cancelled = true;
|
|
224
|
+
};
|
|
141
225
|
}
|
|
142
226
|
|
|
143
|
-
|
|
144
|
-
|
|
227
|
+
const owner: SdkSessionOwner = {
|
|
228
|
+
projectId,
|
|
229
|
+
path: activeCompPath,
|
|
230
|
+
reloadToken,
|
|
231
|
+
generation,
|
|
232
|
+
};
|
|
145
233
|
|
|
146
234
|
readProjectFileOptional(projectId, activeCompPath)
|
|
147
235
|
.then(async (content) => {
|
|
@@ -157,24 +245,77 @@ export function useSdkSession(
|
|
|
157
245
|
const comp = await openComposition(content, { history: false });
|
|
158
246
|
// Cleanup may have fired while openComposition was awaited; dispose immediately.
|
|
159
247
|
if (cancelled) {
|
|
160
|
-
comp
|
|
248
|
+
disposeSdkSession(comp);
|
|
249
|
+
return;
|
|
250
|
+
}
|
|
251
|
+
if (
|
|
252
|
+
!isSessionOwnerCurrent(
|
|
253
|
+
owner,
|
|
254
|
+
generationRef.current,
|
|
255
|
+
projectIdRef.current,
|
|
256
|
+
activeCompPathRef.current,
|
|
257
|
+
reloadTokenRef.current,
|
|
258
|
+
)
|
|
259
|
+
) {
|
|
260
|
+
disposeSdkSession(comp);
|
|
161
261
|
return;
|
|
162
262
|
}
|
|
163
|
-
|
|
164
|
-
|
|
263
|
+
const displaced = ownedSessionRef.current;
|
|
264
|
+
const installed = { ...owner, session: comp };
|
|
265
|
+
sessionOwnersRef.current.set(comp, owner);
|
|
266
|
+
ownedSessionRef.current = installed;
|
|
267
|
+
setOwnedSession(installed);
|
|
268
|
+
if (displaced && displaced.session !== comp) disposeSdkSession(displaced.session);
|
|
165
269
|
})
|
|
166
270
|
.catch(() => {
|
|
167
|
-
if (!cancelled)
|
|
271
|
+
if (!cancelled && generationRef.current === generation) setOwnedSession(null);
|
|
168
272
|
});
|
|
169
273
|
|
|
170
274
|
return () => {
|
|
171
275
|
cancelled = true;
|
|
172
|
-
//
|
|
173
|
-
//
|
|
174
|
-
|
|
276
|
+
// Publication preserves this generation, so cleanup releases whichever
|
|
277
|
+
// session it currently owns (the initially opened one or its candidate).
|
|
278
|
+
const owned = ownedSessionRef.current;
|
|
279
|
+
if (owned?.generation === generation) {
|
|
280
|
+
ownedSessionRef.current = null;
|
|
281
|
+
disposeSdkSession(owned.session);
|
|
282
|
+
}
|
|
175
283
|
};
|
|
176
284
|
}, [projectId, activeCompPath, reloadToken]);
|
|
177
285
|
|
|
178
286
|
const forceReload = useCallback(() => setReloadToken((t) => t + 1), []);
|
|
179
|
-
|
|
287
|
+
const publish = useCallback<PublishSdkSession>(({ candidate, expectedSession, targetPath }) => {
|
|
288
|
+
const expectedOwner = sessionOwnersRef.current.get(expectedSession);
|
|
289
|
+
const current = ownedSessionRef.current;
|
|
290
|
+
if (
|
|
291
|
+
!isSessionOwnerActive(
|
|
292
|
+
expectedOwner,
|
|
293
|
+
projectIdRef.current,
|
|
294
|
+
activeCompPathRef.current,
|
|
295
|
+
targetPath,
|
|
296
|
+
)
|
|
297
|
+
) {
|
|
298
|
+
return "rejected-inactive-target";
|
|
299
|
+
}
|
|
300
|
+
if (!ownsExpectedSession(current, expectedOwner, expectedSession, reloadTokenRef.current)) {
|
|
301
|
+
// The durable write won, but another session was installed for this same
|
|
302
|
+
// path before publication. Its self-write echo will be suppressed, so
|
|
303
|
+
// explicitly re-open it from disk instead of leaving it stale.
|
|
304
|
+
setReloadToken((t) => t + 1);
|
|
305
|
+
return "rejected-active-target";
|
|
306
|
+
}
|
|
307
|
+
const next: OwnedSdkSession = { ...current, session: candidate };
|
|
308
|
+
sessionOwnersRef.current.set(candidate, current);
|
|
309
|
+
ownedSessionRef.current = next;
|
|
310
|
+
setOwnedSession(next);
|
|
311
|
+
if (current.session !== candidate) disposeSdkSession(current.session);
|
|
312
|
+
return "published";
|
|
313
|
+
}, []);
|
|
314
|
+
const session =
|
|
315
|
+
ownedSession?.projectId === projectId &&
|
|
316
|
+
ownedSession.path === activeCompPath &&
|
|
317
|
+
ownedSession.reloadToken === reloadToken
|
|
318
|
+
? ownedSession.session
|
|
319
|
+
: null;
|
|
320
|
+
return { session, publish, forceReload };
|
|
180
321
|
}
|
|
@@ -2,6 +2,7 @@ import { useCallback, type MutableRefObject } from "react";
|
|
|
2
2
|
import type { Composition } from "@hyperframes/sdk";
|
|
3
3
|
import type { SlideshowManifest } from "@hyperframes/core/slideshow";
|
|
4
4
|
import type { EditHistoryKind } from "../utils/editHistory";
|
|
5
|
+
import type { PublishSdkSession } from "../utils/sdkCutover";
|
|
5
6
|
import { persistSlideshowManifest } from "../utils/setSlideshowManifest";
|
|
6
7
|
|
|
7
8
|
export interface UseSlideshowPersistParams {
|
|
@@ -16,6 +17,8 @@ export interface UseSlideshowPersistParams {
|
|
|
16
17
|
}) => Promise<void>;
|
|
17
18
|
reloadPreview: () => void;
|
|
18
19
|
domEditSaveTimestampRef: MutableRefObject<number>;
|
|
20
|
+
/** Publish a fully persisted candidate SDK session. */
|
|
21
|
+
publishSdkSession?: PublishSdkSession;
|
|
19
22
|
/**
|
|
20
23
|
* When provided, rapid writes with the same key coalesce through the
|
|
21
24
|
* save-queue infra (via recordEdit's coalesceKey) so back-to-back persists
|
|
@@ -33,6 +36,7 @@ export function useSlideshowPersist({
|
|
|
33
36
|
recordEdit,
|
|
34
37
|
reloadPreview,
|
|
35
38
|
domEditSaveTimestampRef,
|
|
39
|
+
publishSdkSession,
|
|
36
40
|
coalesceKey,
|
|
37
41
|
}: UseSlideshowPersistParams): (manifest: SlideshowManifest) => Promise<void> {
|
|
38
42
|
return useCallback(
|
|
@@ -42,7 +46,6 @@ export function useSlideshowPersist({
|
|
|
42
46
|
const originalContent = await readProjectFile(path);
|
|
43
47
|
await persistSlideshowManifest({
|
|
44
48
|
manifest,
|
|
45
|
-
sdkSession,
|
|
46
49
|
originalContent,
|
|
47
50
|
targetPath: path,
|
|
48
51
|
deps: {
|
|
@@ -50,6 +53,8 @@ export function useSlideshowPersist({
|
|
|
50
53
|
writeProjectFile,
|
|
51
54
|
reloadPreview,
|
|
52
55
|
domEditSaveTimestampRef,
|
|
56
|
+
readProjectFile,
|
|
57
|
+
publishSession: publishSdkSession,
|
|
53
58
|
},
|
|
54
59
|
coalesceKey,
|
|
55
60
|
});
|
|
@@ -62,6 +67,7 @@ export function useSlideshowPersist({
|
|
|
62
67
|
recordEdit,
|
|
63
68
|
reloadPreview,
|
|
64
69
|
domEditSaveTimestampRef,
|
|
70
|
+
publishSdkSession,
|
|
65
71
|
coalesceKey,
|
|
66
72
|
],
|
|
67
73
|
);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { useCallback, useEffect, useState } from "react";
|
|
1
|
+
import { useCallback, useEffect, useRef, useState } from "react";
|
|
2
2
|
import type {
|
|
3
3
|
StoryboardFrame,
|
|
4
4
|
StoryboardGlobals,
|
|
@@ -27,6 +27,8 @@ export interface StoryboardResponse {
|
|
|
27
27
|
frames: StoryboardFrameView[];
|
|
28
28
|
warnings: StoryboardWarning[];
|
|
29
29
|
script?: StoryboardScript;
|
|
30
|
+
/** Project content signature this payload was derived from (poster cache-bust + change poll). */
|
|
31
|
+
signature?: string;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
export interface UseStoryboardResult {
|
|
@@ -39,19 +41,30 @@ export interface UseStoryboardResult {
|
|
|
39
41
|
/**
|
|
40
42
|
* Load the parsed storyboard manifest for a project. Markdown stays canonical on
|
|
41
43
|
* disk; this fetches the server-derived JSON the storyboard view renders.
|
|
44
|
+
*
|
|
45
|
+
* `reload()` refetches in place: the blocking spinner only shows on first load
|
|
46
|
+
* and project switches, so background refreshes (file-change polling, post-save
|
|
47
|
+
* reloads) swap data without flashing the board.
|
|
42
48
|
*/
|
|
43
49
|
export function useStoryboard(projectId: string | null): UseStoryboardResult {
|
|
44
50
|
const [data, setData] = useState<StoryboardResponse | null>(null);
|
|
45
51
|
const [loading, setLoading] = useState(true);
|
|
46
52
|
const [error, setError] = useState<string | null>(null);
|
|
47
53
|
const [reloadKey, setReloadKey] = useState(0);
|
|
54
|
+
const hasDataRef = useRef(false);
|
|
55
|
+
const lastProjectRef = useRef<string | null>(null);
|
|
48
56
|
|
|
49
57
|
const reload = useCallback(() => setReloadKey((k) => k + 1), []);
|
|
50
58
|
|
|
51
59
|
useEffect(() => {
|
|
52
60
|
if (!projectId) return;
|
|
53
61
|
let cancelled = false;
|
|
54
|
-
|
|
62
|
+
if (lastProjectRef.current !== projectId) {
|
|
63
|
+
lastProjectRef.current = projectId;
|
|
64
|
+
hasDataRef.current = false;
|
|
65
|
+
setData(null);
|
|
66
|
+
}
|
|
67
|
+
if (!hasDataRef.current) setLoading(true);
|
|
55
68
|
setError(null);
|
|
56
69
|
|
|
57
70
|
// Route through buildProjectApiPath so the (URL-derived) projectId is encoded
|
|
@@ -62,10 +75,16 @@ export function useStoryboard(projectId: string | null): UseStoryboardResult {
|
|
|
62
75
|
return res.json() as Promise<StoryboardResponse>;
|
|
63
76
|
})
|
|
64
77
|
.then((json) => {
|
|
65
|
-
if (
|
|
78
|
+
if (cancelled) return;
|
|
79
|
+
hasDataRef.current = true;
|
|
80
|
+
setData(json);
|
|
66
81
|
})
|
|
67
82
|
.catch((err: unknown) => {
|
|
68
|
-
if (
|
|
83
|
+
if (cancelled) return;
|
|
84
|
+
// A failed background refresh keeps the last good board on screen;
|
|
85
|
+
// the blocking error state is only for loads with nothing to show.
|
|
86
|
+
if (hasDataRef.current) return;
|
|
87
|
+
setError(err instanceof Error ? err.message : "failed to load storyboard");
|
|
69
88
|
})
|
|
70
89
|
.finally(() => {
|
|
71
90
|
if (!cancelled) setLoading(false);
|