mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-09 20:07:39 +00:00
* fix(studio): guard Zustand no-op setters and fix useConsoleErrorCapture memory leak - Guard setIsPlaying to skip set() when value unchanged (eliminates 60 notifications/sec during reverse playback) - Guard caption store selectGroup to bail before set() when group missing (prevents empty Zustand notifications) - Guard clearSelection to skip when already empty - Fix useConsoleErrorCapture: restore original console.error, remove error event listener, and delete __hfErrorCapture flag on cleanup * fix(studio): delete dead files and unused exports Remove 7 dead files (audioBeatDetection, keyframeSnapping, timelineInspector, DopesheetStrip, StaggerControls, TimelineLayerPanel, TimelineEditorNotice) and their test companions. Delete unused computeFitToChildrenSize export from propertyPanelHelpers. Fix re-export indirection: useDomEditCommits and studioMotionOps.test now import patch builders directly from manualEditsDomPatches instead of the re-export passthrough in manualEditsDom. * fix(studio): eliminate effect-chain state mirroring for lint findings, hover, and GSAP fetch Move lint findingsByElement sync from App.tsx into useLintModal where the value is produced, removing the mirroring useEffect. Consolidate 4 hover-clearing effects in useDomSelection into 2 (one unconditional on context change, one conditional combining caption mode, selection match, and disconnected element checks). Fold the GSAP retry effect into the fetch effect in useGsapTweenCache, scheduling a single retry via setTimeout when the initial fetch returns 0 animations. Eliminates 3 unnecessary render cycles from effect chains. * fix(studio): memoize renderQueue, toolbar, and canvas rect to prevent re-render cascade - Wrap renderQueue object in useMemo so StudioContext consumers don't re-render on every App render - Memoize timelineToolbar JSX so NLELayout memo isn't defeated - Move canvasRect getBoundingClientRect() from render-time IIFE to a useLayoutEffect-backed ref, eliminating layout thrashing - Track and clear setTimeout handles in refreshPreviewDocumentVersion to prevent stale timer accumulation on rapid calls and unmount * refactor(studio): consolidate GSAP shared primitives — defaults, iframe access, keyframe parsing Extract duplicated PROPERTY_DEFAULTS, IframeGsap interface, iframe accessors (getIframeGsap, queryIframeElement), percentage keyframe parsing, and toAbsoluteTime into a single gsapShared.ts module. Removes ~120 lines of copy-pasted logic across 8 hook files, reducing drift risk between the duplicate implementations. * fix(studio): remove dead store fields, dead file, duplicate helper, and unsafe assertions * refactor(studio): deduplicate selector helpers, rounding utils, percentage computation, and iframe access * fix(studio): split StudioContext into Shell + Playback to prevent cascade re-renders * refactor(studio): decompose useGsapScriptCommits into focused mutation hooks * refactor(studio): decompose useFileManager into focused file operation hooks Extract useFileTree (tree loading, refresh, derived assets/compositions) and useEditorSave (debounced save with history tracking) from the 508-LOC useFileManager. The parent hook composes both and retains file I/O, click-to-source, upload/import, and CRUD — preserving the same public interface so no consumers change. * refactor(studio): decompose useDomEditCommits into focused commit hooks Extract geometry (path offset, box size, rotation) and element lifecycle (delete, z-index reorder) into useDomGeometryCommits and useElementLifecycleOps. Parent keeps persistDomEditOperations as core and composes all sub-hooks — public interface unchanged. * refactor(studio): simplify useAppHotkeys with declarative command table * refactor(studio): simplify useAppHotkeys with declarative command table Replace 15 individual useRef callback refs with a single cbRef object. Extract keydown dispatch into pure dispatchModifierKey/dispatchPlainKey functions. Merge duplicate undo/redo logic into shared applyHistory. Extract cross-origin listener boilerplate into safeAddListener/safeRemoveListener. Hook body: 204 LOC (down from 445). Public API unchanged. * fix(studio): remove unused getDomEditTargetKey import * refactor(studio): decompose useDomEditSession into focused editing hooks Extract GSAP-aware geometry intercepts (move/resize/rotation) and animated property commit into useGsapAwareEditing, and selection wiring, GSAP cache management, preview sync, and selection handlers into useDomEditWiring. The parent remains a pure composition shell. * style(studio): fix formatting in 5 files * fix(studio): trim App.tsx to 598 lines (under 600 limit) --------- Co-authored-by: Miguel Ángel <miguel07alm@protonmail.com>
154 lines
5.0 KiB
TypeScript
154 lines
5.0 KiB
TypeScript
import { useCallback, type RefObject } from "react";
|
|
import { SourceEditor } from "./editor/SourceEditor";
|
|
import { LeftSidebar, type LeftSidebarHandle } from "./sidebar/LeftSidebar";
|
|
import { MediaPreview } from "./MediaPreview";
|
|
import { isMediaFile } from "../utils/mediaTypes";
|
|
import { usePanelLayoutContext } from "../contexts/PanelLayoutContext";
|
|
import { useStudioShellContext } from "../contexts/StudioContext";
|
|
import { useFileManagerContext } from "../contexts/FileManagerContext";
|
|
import { getPersistedRenderSettings } from "./renders/renderSettings";
|
|
import type { BlockPreviewInfo } from "./sidebar/BlocksTab";
|
|
|
|
export interface StudioLeftSidebarProps {
|
|
leftSidebarRef: RefObject<LeftSidebarHandle | null>;
|
|
onSelectComposition: (comp: string) => void;
|
|
onAddBlock: (blockName: string) => void;
|
|
onPreviewBlock?: (preview: BlockPreviewInfo | null) => void;
|
|
onLint: () => void;
|
|
linting: boolean;
|
|
lintFindingCount?: number;
|
|
lintFindingsByFile?: Map<string, { count: number; messages: string[] }>;
|
|
}
|
|
|
|
// fallow-ignore-next-line complexity
|
|
export function StudioLeftSidebar({
|
|
leftSidebarRef,
|
|
onSelectComposition,
|
|
onAddBlock,
|
|
onPreviewBlock,
|
|
onLint,
|
|
linting,
|
|
lintFindingCount,
|
|
lintFindingsByFile,
|
|
}: StudioLeftSidebarProps) {
|
|
const {
|
|
leftCollapsed,
|
|
leftWidth,
|
|
toggleLeftSidebar,
|
|
handlePanelResizeStart,
|
|
handlePanelResizeMove,
|
|
handlePanelResizeEnd,
|
|
} = usePanelLayoutContext();
|
|
const { projectId, renderQueue, waitForPendingDomEditSaves } = useStudioShellContext();
|
|
const {
|
|
compositions,
|
|
assets,
|
|
editingFile,
|
|
fileTree,
|
|
revealSourceOffset,
|
|
handleFileSelect,
|
|
handleCreateFile,
|
|
handleCreateFolder,
|
|
handleDeleteFile,
|
|
handleRenameFile,
|
|
handleDuplicateFile,
|
|
handleMoveFile,
|
|
handleImportFiles,
|
|
handleContentChange,
|
|
} = useFileManagerContext();
|
|
|
|
const handleRenderComposition = useCallback(
|
|
async (comp: string) => {
|
|
await waitForPendingDomEditSaves();
|
|
const { format, quality, fps } = getPersistedRenderSettings();
|
|
await renderQueue.startRender({ composition: comp, format, quality, fps });
|
|
},
|
|
[renderQueue, waitForPendingDomEditSaves],
|
|
);
|
|
|
|
if (leftCollapsed) {
|
|
return (
|
|
<div className="flex w-10 flex-shrink-0 flex-col items-center border-r border-neutral-800/50 bg-neutral-950 pt-1">
|
|
<button
|
|
type="button"
|
|
onClick={toggleLeftSidebar}
|
|
className="flex h-8 w-8 items-center justify-center rounded-md border border-transparent text-neutral-500 transition-colors hover:border-neutral-800 hover:bg-neutral-900 hover:text-neutral-300"
|
|
title="Show sidebar"
|
|
aria-label="Show sidebar"
|
|
>
|
|
<svg
|
|
width="14"
|
|
height="14"
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
aria-hidden="true"
|
|
>
|
|
<path d="M5 4v16" />
|
|
<path d="m10 7 5 5-5 5" />
|
|
</svg>
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<LeftSidebar
|
|
ref={leftSidebarRef}
|
|
width={leftWidth}
|
|
projectId={projectId}
|
|
compositions={compositions}
|
|
assets={assets}
|
|
activeComposition={editingFile?.path ?? null}
|
|
onSelectComposition={onSelectComposition}
|
|
fileTree={fileTree}
|
|
editingFile={editingFile}
|
|
onSelectFile={handleFileSelect}
|
|
onCreateFile={handleCreateFile}
|
|
onCreateFolder={handleCreateFolder}
|
|
onDeleteFile={handleDeleteFile}
|
|
onRenameFile={handleRenameFile}
|
|
onDuplicateFile={handleDuplicateFile}
|
|
onMoveFile={handleMoveFile}
|
|
onImportFiles={handleImportFiles}
|
|
codeChildren={
|
|
editingFile ? (
|
|
isMediaFile(editingFile.path) ? (
|
|
<MediaPreview projectId={projectId} filePath={editingFile.path} />
|
|
) : (
|
|
<SourceEditor
|
|
content={editingFile.content ?? ""}
|
|
filePath={editingFile.path}
|
|
onChange={handleContentChange}
|
|
revealOffset={revealSourceOffset}
|
|
/>
|
|
)
|
|
) : undefined
|
|
}
|
|
onRenderComposition={handleRenderComposition}
|
|
isRendering={renderQueue.isRendering}
|
|
onLint={onLint}
|
|
linting={linting}
|
|
lintFindingCount={lintFindingCount}
|
|
lintFindingsByFile={lintFindingsByFile}
|
|
onToggleCollapse={toggleLeftSidebar}
|
|
onAddBlock={onAddBlock}
|
|
onPreviewBlock={onPreviewBlock}
|
|
/>
|
|
<div
|
|
className="group w-2 flex-shrink-0 cursor-col-resize flex items-center justify-center"
|
|
style={{ touchAction: "none" }}
|
|
onPointerDown={(e) => handlePanelResizeStart("left", e)}
|
|
onPointerMove={handlePanelResizeMove}
|
|
onPointerUp={handlePanelResizeEnd}
|
|
>
|
|
<div className="h-[52px] w-px bg-white/12 transition-colors group-hover:bg-white/18 group-active:bg-white/24" />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|