mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
"use client";
|
|
import Modal from "../modal";
|
|
import getApi from "../../lib/getApi";
|
|
import useTranscript from "../useTranscript";
|
|
import useTopics from "../useTopics";
|
|
import useWaveform from "../useWaveform";
|
|
import { TopicList } from "../topicList";
|
|
import Recorder from "../recorder";
|
|
import { Topic } from "../webSocketTypes";
|
|
import React, { useEffect, useState } from "react";
|
|
import "../../styles/button.css";
|
|
import FinalSummary from "../finalSummary";
|
|
|
|
type TranscriptDetails = {
|
|
params: {
|
|
transcriptId: string;
|
|
};
|
|
};
|
|
|
|
export default function TranscriptDetails(details: TranscriptDetails) {
|
|
const api = getApi();
|
|
const transcript = useTranscript(null, api, details.params.transcriptId);
|
|
const topics = useTopics(api, details.params.transcriptId);
|
|
const waveform = useWaveform(api, details.params.transcriptId);
|
|
const useActiveTopic = useState<Topic | null>(null);
|
|
|
|
if (transcript?.error || topics?.error || waveform?.error) {
|
|
return (
|
|
<Modal
|
|
title="Transcription Not Found"
|
|
text="A trascription with this ID does not exist."
|
|
/>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<>
|
|
{transcript?.loading === true ||
|
|
waveform?.loading == true ||
|
|
topics?.loading == true ? (
|
|
<Modal title="Loading" text={"Loading transcript..."} />
|
|
) : (
|
|
<>
|
|
<Recorder
|
|
topics={topics?.topics || []}
|
|
useActiveTopic={useActiveTopic}
|
|
waveform={waveform?.waveform}
|
|
isPastMeeting={true}
|
|
transcriptId={transcript?.response?.id}
|
|
/>
|
|
<div className="grid grid-cols-1 lg:grid-cols-2 grid-rows-2 lg:grid-rows-1 gap-2 lg:gap-4 h-full">
|
|
<TopicList
|
|
topics={topics?.topics || []}
|
|
useActiveTopic={useActiveTopic}
|
|
/>
|
|
<section className="relative w-full h-auto max-h-full bg-blue-400/20 rounded-lg md:rounded-xl px-2 md:px-4 flex flex-col justify-center align-center">
|
|
<div className="py-2 h-full">
|
|
{transcript?.response?.longSummary && (
|
|
<FinalSummary text={transcript?.response?.longSummary} />
|
|
)}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</>
|
|
)}
|
|
</>
|
|
);
|
|
}
|