Spaces:
Runtime error
Runtime error
File size: 11,719 Bytes
442a1fe | 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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 | import { useMutation, useQueryClient } from '@tanstack/react-query';
import { emit as tauriEmit } from '@tauri-apps/api/event';
import { useCallback, useEffect, useRef, useState } from 'react';
import type { PillState } from '@/components/CapturePill/CapturePill';
import { apiClient } from '@/lib/api/client';
import type {
CaptureListResponse,
CaptureResponse,
CaptureSource,
} from '@/lib/api/types';
import { useAudioRecording } from '@/lib/hooks/useAudioRecording';
/**
* Broadcast to sibling Tauri webviews that the captures list has changed.
* The main CapturesTab listens, seeds its React Query cache, and focuses the
* new row, so uploads from the floating dictate window show up live.
*
* ``capture:created`` carries the full response so the sibling can seed its
* cache before the refetch lands β otherwise the selection-guard effect
* would snap back to ``captures[0]`` in the race window between
* ``setSelectedId(new)`` and the list actually containing the new row.
*
* No-op in web mode β there are no siblings to notify.
*/
function broadcastCreated(capture: CaptureResponse) {
tauriEmit('capture:created', { capture }).catch(() => {
/* not running inside Tauri; nothing to sync to */
});
}
function broadcastUpdated(id: string) {
tauriEmit('capture:updated', { id }).catch(() => {
/* not running inside Tauri; nothing to sync to */
});
}
const REST_FADE_MS = 900;
// How long the green "Done" pill stays visible after refine (or transcribe,
// when auto-refine is off) completes, before the fade-out begins.
const COMPLETED_DWELL_MS = 2000;
// Long enough to read a full backend stack message and click-to-copy.
const ERROR_PILL_VISIBLE_MS = 6000;
// Short self-explanatory notices (e.g. "Recording too short, canceled") β
// there's nothing to read or copy, so clear out quickly.
const BRIEF_NOTICE_MS = 2000;
// MediaRecorder.start(100) emits its first chunk ~100ms in, but the webm
// container header isn't guaranteed to be finalised that quickly β anything
// under half a second tends to produce a blob neither AudioContext.decode
// nor ffmpeg will accept. Caught client-side and surfaced as a friendly
// "Recording too short, canceled" pill instead of bubbling up a 400.
const MIN_RECORDING_DURATION_S = 0.5;
const SHORT_RECORDING_MESSAGE = 'Recording too short, canceled';
export type CapturePillState = PillState | 'hidden';
export interface UseCaptureRecordingSessionOptions {
/**
* Fired after a capture row is created on the server. Callers can use this
* to select the new capture or emit a Tauri event to a sibling window.
*/
onCaptureCreated?: (capture: CaptureResponse) => void;
/**
* Fired with the final delivered text β refined if ``auto_refine`` was on
* for this capture, raw transcript otherwise. Used by the floating
* dictate window to hand the text off to the Rust auto-paste pipeline.
*
* ``allowAutoPaste`` snapshots the setting at chord-start so a refine that
* lands after the user flips the toggle still uses the value the capture
* was created under.
*/
onFinalText?: (
text: string,
capture: CaptureResponse,
allowAutoPaste: boolean,
) => void;
}
export interface UseCaptureRecordingSessionResult {
pillState: CapturePillState;
pillElapsedMs: number;
errorMessage: string | null;
isRecording: boolean;
isUploading: boolean;
isRefining: boolean;
startRecording: () => void;
stopRecording: () => void;
toggleRecording: () => void;
dismissError: () => void;
uploadFile: (file: File, source: CaptureSource) => void;
refine: (captureId: string) => void;
}
/**
* Owns the full record β transcribe β refine β rest lifecycle behind the
* capture pill. The pill component and the Dictate/Stop button are the only
* consumers; everything else (cache seeding, error toasts, settings reads) is
* internal so the hook can be reused from a floating Tauri window without the
* containing tab.
*/
export function useCaptureRecordingSession(
options: UseCaptureRecordingSessionOptions = {},
): UseCaptureRecordingSessionResult {
const queryClient = useQueryClient();
// Every capture setting is resolved server-side. ``stt_model``,
// ``llm_model`` and refine flags are read from the capture_settings table
// inside POST /captures and /captures/*/refine, and ``auto_refine`` comes
// back on the create response so the client decides whether to chain a
// refine call using a value that can't go stale across sibling webviews.
const [pillState, setPillState] = useState<CapturePillState>('hidden');
const [frozenElapsedMs, setFrozenElapsedMs] = useState(0);
const [errorMessage, setErrorMessage] = useState<string | null>(null);
const restTimerRef = useRef<number | null>(null);
const errorTimerRef = useRef<number | null>(null);
// Mutation callbacks close over stale pillState otherwise.
const pillStateRef = useRef<CapturePillState>('hidden');
pillStateRef.current = pillState;
const onCaptureCreatedRef = useRef(options.onCaptureCreated);
onCaptureCreatedRef.current = options.onCaptureCreated;
const onFinalTextRef = useRef(options.onFinalText);
onFinalTextRef.current = options.onFinalText;
// Snapshot of ``allow_auto_paste`` from the capture-create response β
// held so the refine onSuccess (which only sees the plain CaptureResponse)
// can still pass the original setting through to onFinalText.
const allowAutoPasteRef = useRef<boolean>(true);
const clearRestTimer = useCallback(() => {
if (restTimerRef.current !== null) {
window.clearTimeout(restTimerRef.current);
restTimerRef.current = null;
}
}, []);
const clearErrorTimer = useCallback(() => {
if (errorTimerRef.current !== null) {
window.clearTimeout(errorTimerRef.current);
errorTimerRef.current = null;
}
}, []);
const scheduleHidePill = useCallback(() => {
clearRestTimer();
setPillState('completed');
// Two-hop timer: show the green "Done" pill for COMPLETED_DWELL_MS,
// then hand off to the existing rest-fade before unmounting.
restTimerRef.current = window.setTimeout(() => {
setPillState('rest');
restTimerRef.current = window.setTimeout(() => {
setPillState('hidden');
restTimerRef.current = null;
}, REST_FADE_MS);
}, COMPLETED_DWELL_MS);
}, [clearRestTimer]);
const showError = useCallback(
(message: string, durationMs: number = ERROR_PILL_VISIBLE_MS) => {
clearRestTimer();
clearErrorTimer();
setErrorMessage(message || 'Something went wrong');
setPillState('error');
errorTimerRef.current = window.setTimeout(() => {
setPillState('hidden');
setErrorMessage(null);
errorTimerRef.current = null;
}, durationMs);
},
[clearRestTimer, clearErrorTimer],
);
const dismissError = useCallback(() => {
clearErrorTimer();
setPillState('hidden');
setErrorMessage(null);
}, [clearErrorTimer]);
useEffect(
() => () => {
clearRestTimer();
clearErrorTimer();
},
[clearRestTimer, clearErrorTimer],
);
const refineMutation = useMutation({
// Empty body β backend resolves flags and model from capture_settings.
mutationFn: async (captureId: string) => apiClient.refineCapture(captureId, {}),
onSuccess: (data, captureId) => {
queryClient.invalidateQueries({ queryKey: ['captures'] });
broadcastUpdated(captureId);
if (pillStateRef.current === 'refining') scheduleHidePill();
const finalText = data.transcript_refined ?? data.transcript_raw;
if (finalText) {
onFinalTextRef.current?.(finalText, data, allowAutoPasteRef.current);
}
},
onError: (err: Error) => {
showError(err.message || 'Refinement failed');
},
});
const uploadMutation = useMutation({
mutationFn: async ({ file, source }: { file: File; source: CaptureSource }) =>
apiClient.createCapture(file, { source }),
onSuccess: (capture) => {
queryClient.setQueryData<CaptureListResponse>(['captures'], (prev) => {
if (!prev) return prev;
if (prev.items.some((c) => c.id === capture.id)) return prev;
return { ...prev, items: [capture, ...prev.items], total: prev.total + 1 };
});
queryClient.invalidateQueries({ queryKey: ['captures'] });
broadcastCreated(capture);
onCaptureCreatedRef.current?.(capture);
allowAutoPasteRef.current = capture.allow_auto_paste;
if (capture.auto_refine) {
setPillState('refining');
refineMutation.mutate(capture.id);
} else {
if (pillStateRef.current === 'transcribing') scheduleHidePill();
if (capture.transcript_raw) {
onFinalTextRef.current?.(
capture.transcript_raw,
capture,
capture.allow_auto_paste,
);
}
}
},
onError: (err: Error) => {
// Backend's librosa-audioread fallback returns a 400 with this shape
// for tiny/corrupt webm blobs that slip past the client guard β
// translate it to the same friendly message so the user sees one
// consistent cause, not an opaque decode error.
const msg = err.message || '';
if (/could not decode/i.test(msg) || /empty or corrupt/i.test(msg)) {
showError(SHORT_RECORDING_MESSAGE, BRIEF_NOTICE_MS);
} else {
showError(msg || 'Upload failed');
}
},
});
const {
isRecording,
duration,
startRecording: beginAudioRecording,
stopRecording,
error: recordError,
} = useAudioRecording({
onRecordingComplete: (blob, recordedDuration) => {
// Trigger-happy tap β MediaRecorder hasn't emitted a usable chunk yet
// so the blob is empty or unparseable. Surface it as a transient pill
// so the user sees their recording was recognised and canceled.
if (!blob.size || (recordedDuration ?? 0) < MIN_RECORDING_DURATION_S) {
showError(SHORT_RECORDING_MESSAGE, BRIEF_NOTICE_MS);
return;
}
setFrozenElapsedMs(Math.round((recordedDuration ?? 0) * 1000));
setPillState('transcribing');
const extension = blob.type.includes('wav')
? 'wav'
: blob.type.includes('webm')
? 'webm'
: 'bin';
const file = new File([blob], `dictation-${Date.now()}.${extension}`, {
type: blob.type,
});
uploadMutation.mutate({ file, source: 'dictation' });
},
});
useEffect(() => {
if (recordError) {
showError(recordError);
}
}, [recordError, showError]);
const startRecording = useCallback(() => {
if (isRecording) return;
clearRestTimer();
setFrozenElapsedMs(0);
setPillState('recording');
beginAudioRecording();
}, [isRecording, beginAudioRecording, clearRestTimer]);
const toggleRecording = useCallback(() => {
if (isRecording) {
stopRecording();
return;
}
startRecording();
}, [isRecording, startRecording, stopRecording]);
const uploadFile = useCallback(
(file: File, source: CaptureSource) => {
uploadMutation.mutate({ file, source });
},
[uploadMutation],
);
const refine = useCallback(
(captureId: string) => {
refineMutation.mutate(captureId);
},
[refineMutation],
);
const pillElapsedMs =
pillState === 'recording' ? Math.round(duration * 1000) : frozenElapsedMs;
return {
pillState,
pillElapsedMs,
errorMessage,
isRecording,
isUploading: uploadMutation.isPending,
isRefining: refineMutation.isPending,
startRecording,
stopRecording,
toggleRecording,
dismissError,
uploadFile,
refine,
};
}
|