import { useEffect, useState } from "react"; import { V1TranscriptGetRequest } from "../../api/apis/DefaultApi"; import { GetTranscript } from "../../api"; import { useError } from "../../(errors)/errorContext"; import getApi from "../../lib/getApi"; import { shouldShowError } from "../../lib/errorUtils"; type Transcript = { response: GetTranscript | null; loading: boolean; error: Error | null; }; const useTranscript = ( protectedPath: boolean, id: string | null, ): Transcript => { const [response, setResponse] = useState(null); const [loading, setLoading] = useState(true); const [error, setErrorState] = useState(null); const { setError } = useError(); const api = getApi(protectedPath); useEffect(() => { if (!id || !api) return; setLoading(true); const requestParameters: V1TranscriptGetRequest = { transcriptId: id, }; api .v1TranscriptGet(requestParameters) .then((result) => { setResponse(result); setLoading(false); console.debug("Transcript Loaded:", result); }) .catch((error) => { const shouldShowHuman = shouldShowError(error); if (shouldShowHuman) { setError(error, "There was an error loading the transcript"); } else { setError(error); } setErrorState(error); }); }, [id, !api]); return { response, loading, error }; }; export default useTranscript;