mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
* fix: public transcript visibility * fix: transcript permissions frontend * dead code removal * chore: remove unused code * fix search tests * fix search tests --------- Co-authored-by: Igor Loskutov <igor.loskutoff@gmail.com>
117 lines
3.6 KiB
TypeScript
117 lines
3.6 KiB
TypeScript
"use client";
|
|
import { useEffect, useState } from "react";
|
|
import { useWebSockets } from "../../useWebSockets";
|
|
import { lockWakeState, releaseWakeState } from "../../../../lib/wakeLock";
|
|
import { useRouter } from "next/navigation";
|
|
import useMp3 from "../../useMp3";
|
|
import { Center, VStack, Text, Heading, Button } from "@chakra-ui/react";
|
|
import FileUploadButton from "../../fileUploadButton";
|
|
import { useTranscriptGet } from "../../../../lib/apiHooks";
|
|
|
|
type TranscriptUpload = {
|
|
params: {
|
|
transcriptId: string;
|
|
};
|
|
};
|
|
|
|
const TranscriptUpload = (details: TranscriptUpload) => {
|
|
const transcript = useTranscriptGet(details.params.transcriptId);
|
|
const [transcriptStarted, setTranscriptStarted] = useState(false);
|
|
|
|
const webSockets = useWebSockets(details.params.transcriptId);
|
|
|
|
const mp3 = useMp3(details.params.transcriptId, true);
|
|
|
|
const router = useRouter();
|
|
|
|
const [status_, setStatus] = useState(
|
|
webSockets.status?.value || transcript.data?.status || "idle",
|
|
);
|
|
|
|
// status is obviously done if we have transcript
|
|
const status =
|
|
!transcript.isLoading && transcript.data?.status === "ended"
|
|
? transcript.data?.status
|
|
: status_;
|
|
|
|
useEffect(() => {
|
|
if (!transcriptStarted && webSockets.transcriptTextLive.length !== 0)
|
|
setTranscriptStarted(true);
|
|
}, [webSockets.transcriptTextLive]);
|
|
|
|
useEffect(() => {
|
|
//TODO HANDLE ERROR STATUS BETTER
|
|
// TODO deprecate webSockets.status.value / depend on transcript.response?.status from query lib
|
|
const newStatus =
|
|
transcript.data?.status === "ended"
|
|
? "ended"
|
|
: webSockets.status?.value || transcript.data?.status || "idle";
|
|
setStatus(newStatus);
|
|
if (newStatus && (newStatus == "ended" || newStatus == "error")) {
|
|
console.log(newStatus, "redirecting");
|
|
|
|
const newUrl = "/transcripts/" + details.params.transcriptId;
|
|
router.replace(newUrl);
|
|
}
|
|
}, [webSockets.status?.value, transcript.data?.status]);
|
|
|
|
useEffect(() => {
|
|
if (webSockets.waveform && webSockets.waveform) mp3.getNow();
|
|
}, [webSockets.waveform, webSockets.duration]);
|
|
|
|
useEffect(() => {
|
|
lockWakeState();
|
|
return () => {
|
|
releaseWakeState();
|
|
};
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<VStack
|
|
align={"left"}
|
|
h="full"
|
|
pt={4}
|
|
mx="auto"
|
|
w={{ base: "full", md: "container.xl" }}
|
|
>
|
|
<Heading size={"lg"}>Upload meeting</Heading>
|
|
<Center h={"full"} w="full">
|
|
<VStack gap={10} bg="gray.100" p={10} borderRadius="md" maxW="500px">
|
|
{status && status == "idle" && (
|
|
<>
|
|
<Text>
|
|
Please select the file, supported formats: .mp3, m4a, .wav,
|
|
.mp4, .mov or .webm
|
|
</Text>
|
|
<FileUploadButton transcriptId={details.params.transcriptId} />
|
|
</>
|
|
)}
|
|
{status && status == "uploaded" && (
|
|
<Text>File is uploaded, processing...</Text>
|
|
)}
|
|
{(status == "recording" || status == "processing") && (
|
|
<>
|
|
<Heading size={"lg"}>Processing your recording...</Heading>
|
|
<Text>
|
|
You can safely return to the library while your file is being
|
|
processed.
|
|
</Text>
|
|
<Button
|
|
onClick={() => {
|
|
router.push("/browse");
|
|
}}
|
|
>
|
|
Browse
|
|
</Button>
|
|
</>
|
|
)}
|
|
</VStack>
|
|
</Center>
|
|
</VStack>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TranscriptUpload;
|