Spaces:
Running
Running
File size: 6,206 Bytes
a733514 8b9b583 a733514 342c541 a733514 752f539 a733514 8b9b583 342c541 8b9b583 a733514 8b9b583 a733514 8b9b583 a733514 8b9b583 342c541 a733514 8b9b583 a733514 8b9b583 a733514 8b9b583 a733514 342c541 a733514 342c541 a733514 342c541 8b9b583 342c541 8b9b583 342c541 8b9b583 342c541 8b9b583 342c541 8b9b583 342c541 8b9b583 a733514 8b9b583 a733514 8b9b583 a733514 8b9b583 a733514 8b9b583 342c541 a733514 8b9b583 a733514 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 | /**
* Module-level store for the customer's session of recorded clips.
*
* Lives in memory only — survives across route navigations within a single tab,
* doesn't survive a hard reload (and shouldn't, because the customer would have
* to re-grant camera permission anyway).
*
* Browser-only. Importing on the server is a no-op.
*/
import { useEffect, useState } from 'react';
import type { UploadedClipRef } from '@/lib/humeoApi';
export type RecordedClip = {
step: number;
takeId: number;
mediaType: 'video' | 'audio';
blob: Blob;
durationSeconds: number;
ext: 'webm' | 'mp4' | 'mov';
needsOptimization?: boolean;
};
export type ClipUploadState =
| { status: 'idle' }
| { status: 'pending'; takeId: number }
| { status: 'uploaded'; takeId: number; ref: UploadedClipRef }
| { status: 'error'; takeId: number; message: string };
type Listener = () => void;
type Snapshot = {
clipsByStep: Record<number, RecordedClip>;
orderedClips: RecordedClip[];
clipUploadsByStep: Record<number, ClipUploadState>;
skippedSteps: Record<number, true>;
socialHandle: string;
tableId: string | null;
slug: string | null;
sessionId: string;
};
let clipsByStep: Record<number, RecordedClip> = {};
let clipUploadsByStep: Record<number, ClipUploadState> = {};
let clipUploadPromises: Record<number, { takeId: number; promise: Promise<UploadedClipRef> }> = {};
let takeIdsByStep: Record<number, number> = {};
let skippedSteps: Record<number, true> = {};
let socialHandle = '';
let tableId: string | null = null;
let slug: string | null = null;
let sessionId = newSessionId();
const listeners = new Set<Listener>();
function newSessionId() {
if (typeof crypto !== 'undefined' && typeof crypto.randomUUID === 'function') {
return crypto.randomUUID();
}
return `sess_${Date.now().toString(36)}_${Math.random().toString(36).slice(2, 10)}`;
}
function emit() {
for (const l of listeners) l();
}
function buildSnapshot(): Snapshot {
return {
clipsByStep,
orderedClips: Object.values(clipsByStep).sort((a, b) => a.step - b.step),
clipUploadsByStep,
skippedSteps,
socialHandle,
tableId,
slug,
sessionId,
};
}
export const recordingStore = {
setClip(clip: Omit<RecordedClip, 'takeId'>) {
const takeId = (takeIdsByStep[clip.step] ?? 0) + 1;
takeIdsByStep = { ...takeIdsByStep, [clip.step]: takeId };
const recordedClip = { ...clip, takeId };
clipsByStep = { ...clipsByStep, [clip.step]: recordedClip };
const nextUploads = { ...clipUploadsByStep };
delete nextUploads[clip.step];
clipUploadsByStep = nextUploads;
const nextPromises = { ...clipUploadPromises };
delete nextPromises[clip.step];
clipUploadPromises = nextPromises;
const nextSkipped = { ...skippedSteps };
delete nextSkipped[clip.step];
skippedSteps = nextSkipped;
emit();
return recordedClip;
},
startClipUpload(step: number, takeId: number, promise: Promise<UploadedClipRef>) {
clipUploadPromises = { ...clipUploadPromises, [step]: { takeId, promise } };
clipUploadsByStep = { ...clipUploadsByStep, [step]: { status: 'pending', takeId } };
emit();
promise
.then((ref) => {
const activeUpload = clipUploadPromises[step];
if (activeUpload?.promise !== promise || activeUpload.takeId !== takeId) return;
clipUploadsByStep = { ...clipUploadsByStep, [step]: { status: 'uploaded', takeId, ref } };
emit();
})
.catch((err) => {
const activeUpload = clipUploadPromises[step];
if (activeUpload?.promise !== promise || activeUpload.takeId !== takeId) return;
clipUploadsByStep = {
...clipUploadsByStep,
[step]: {
status: 'error',
takeId,
message: err instanceof Error ? err.message : 'Clip upload failed',
},
};
emit();
});
},
getClipUploadPromise(step: number, takeId: number) {
const activeUpload = clipUploadPromises[step];
return activeUpload?.takeId === takeId ? activeUpload.promise : null;
},
getClipUploadState(step: number, takeId: number): ClipUploadState {
const state = clipUploadsByStep[step];
if (!state || state.status === 'idle') return { status: 'idle' };
return state.takeId === takeId ? state : { status: 'idle' };
},
removeClip(step: number) {
const next = { ...clipsByStep };
delete next[step];
clipsByStep = next;
const nextUploads = { ...clipUploadsByStep };
delete nextUploads[step];
clipUploadsByStep = nextUploads;
const nextPromises = { ...clipUploadPromises };
delete nextPromises[step];
clipUploadPromises = nextPromises;
emit();
},
skipStep(step: number) {
const nextClips = { ...clipsByStep };
delete nextClips[step];
clipsByStep = nextClips;
const nextUploads = { ...clipUploadsByStep };
delete nextUploads[step];
clipUploadsByStep = nextUploads;
const nextPromises = { ...clipUploadPromises };
delete nextPromises[step];
clipUploadPromises = nextPromises;
skippedSteps = { ...skippedSteps, [step]: true };
emit();
},
setMeta(meta: { slug?: string; tableId?: string | null; socialHandle?: string }) {
if (meta.slug !== undefined) slug = meta.slug;
if (meta.tableId !== undefined) tableId = meta.tableId;
if (meta.socialHandle !== undefined) socialHandle = meta.socialHandle;
emit();
},
reset() {
clipsByStep = {};
clipUploadsByStep = {};
clipUploadPromises = {};
takeIdsByStep = {};
skippedSteps = {};
socialHandle = '';
tableId = null;
slug = null;
sessionId = newSessionId();
emit();
},
snapshot(): Snapshot {
return buildSnapshot();
},
subscribe(listener: Listener) {
listeners.add(listener);
return () => {
listeners.delete(listener);
};
},
};
export function useRecordingStore(): Snapshot {
const [snap, setSnap] = useState<Snapshot>(() => buildSnapshot());
useEffect(() => {
const unsubscribe = recordingStore.subscribe(() => setSnap(buildSnapshot()));
return () => {
unsubscribe();
};
}, []);
return snap;
}
|