mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-02-04 18:06:48 +00:00
Compare commits
4 Commits
main
...
transcript
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
23b6f5f5a1 | ||
|
|
95e58b943f | ||
|
|
13a3ec6148 | ||
|
|
807b954340 |
@@ -1,12 +1,12 @@
|
|||||||
import React, { useState, useEffect } from "react";
|
import React, { useState, useEffect } from "react";
|
||||||
import ScrollToBottom from "../../scrollToBottom";
|
import ScrollToBottom from "../../scrollToBottom";
|
||||||
import { Topic } from "../../webSocketTypes";
|
import { Topic } from "../../webSocketTypes";
|
||||||
import useParticipants from "../../useParticipants";
|
import { Box, Flex, Text } from "@chakra-ui/react";
|
||||||
import { Box, Flex, Text, Accordion } from "@chakra-ui/react";
|
import { formatTime } from "../../../../lib/time";
|
||||||
import { TopicItem } from "./TopicItem";
|
import { getTopicColor } from "../../../../lib/topicColors";
|
||||||
import { TranscriptStatus } from "../../../../lib/transcript";
|
import { TranscriptStatus } from "../../../../lib/transcript";
|
||||||
|
|
||||||
import { featureEnabled } from "../../../../lib/features";
|
import { featureEnabled } from "../../../../lib/features";
|
||||||
|
import { TOPICS_SCROLL_DIV_ID } from "./constants";
|
||||||
|
|
||||||
type TopicListProps = {
|
type TopicListProps = {
|
||||||
topics: Topic[];
|
topics: Topic[];
|
||||||
@@ -18,6 +18,7 @@ type TopicListProps = {
|
|||||||
transcriptId: string;
|
transcriptId: string;
|
||||||
status: TranscriptStatus | null;
|
status: TranscriptStatus | null;
|
||||||
currentTranscriptText: any;
|
currentTranscriptText: any;
|
||||||
|
onTopicClick?: (topicId: string) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
export function TopicList({
|
export function TopicList({
|
||||||
@@ -27,30 +28,13 @@ export function TopicList({
|
|||||||
transcriptId,
|
transcriptId,
|
||||||
status,
|
status,
|
||||||
currentTranscriptText,
|
currentTranscriptText,
|
||||||
|
onTopicClick,
|
||||||
}: TopicListProps) {
|
}: TopicListProps) {
|
||||||
const [activeTopic, setActiveTopic] = useActiveTopic;
|
const [activeTopic, setActiveTopic] = useActiveTopic;
|
||||||
|
const [hoveredTopicId, setHoveredTopicId] = useState<string | null>(null);
|
||||||
const [autoscrollEnabled, setAutoscrollEnabled] = useState<boolean>(true);
|
const [autoscrollEnabled, setAutoscrollEnabled] = useState<boolean>(true);
|
||||||
const participants = useParticipants(transcriptId);
|
|
||||||
|
|
||||||
const scrollToTopic = () => {
|
const toggleScroll = (element: HTMLElement) => {
|
||||||
const topicDiv = document.getElementById(`topic-${activeTopic?.id}`);
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
topicDiv?.scrollIntoView({
|
|
||||||
behavior: "smooth",
|
|
||||||
block: "start",
|
|
||||||
inline: "nearest",
|
|
||||||
});
|
|
||||||
}, 200);
|
|
||||||
};
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (activeTopic && autoscroll) scrollToTopic();
|
|
||||||
}, [activeTopic, autoscroll]);
|
|
||||||
|
|
||||||
// scroll top is not rounded, heights are, so exact match won't work.
|
|
||||||
// https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollHeight#determine_if_an_element_has_been_totally_scrolled
|
|
||||||
const toggleScroll = (element) => {
|
|
||||||
const bottom =
|
const bottom =
|
||||||
Math.abs(
|
Math.abs(
|
||||||
element.scrollHeight - element.clientHeight - element.scrollTop,
|
element.scrollHeight - element.clientHeight - element.scrollTop,
|
||||||
@@ -61,14 +45,19 @@ export function TopicList({
|
|||||||
setAutoscrollEnabled(true);
|
setAutoscrollEnabled(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const handleScroll = (e) => {
|
|
||||||
toggleScroll(e.target);
|
const handleScroll = (e: React.UIEvent<HTMLDivElement>) => {
|
||||||
|
toggleScroll(e.target as HTMLElement);
|
||||||
|
};
|
||||||
|
|
||||||
|
const scrollToBottom = () => {
|
||||||
|
const topicsDiv = document.getElementById(TOPICS_SCROLL_DIV_ID);
|
||||||
|
if (topicsDiv) topicsDiv.scrollTop = topicsDiv.scrollHeight;
|
||||||
};
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (autoscroll) {
|
if (autoscroll) {
|
||||||
const topicsDiv = document.getElementById("scroll-div");
|
const topicsDiv = document.getElementById(TOPICS_SCROLL_DIV_ID);
|
||||||
|
|
||||||
topicsDiv && toggleScroll(topicsDiv);
|
topicsDiv && toggleScroll(topicsDiv);
|
||||||
}
|
}
|
||||||
}, [activeTopic, autoscroll]);
|
}, [activeTopic, autoscroll]);
|
||||||
@@ -77,37 +66,41 @@ export function TopicList({
|
|||||||
if (autoscroll && autoscrollEnabled) scrollToBottom();
|
if (autoscroll && autoscrollEnabled) scrollToBottom();
|
||||||
}, [topics.length, currentTranscriptText]);
|
}, [topics.length, currentTranscriptText]);
|
||||||
|
|
||||||
const scrollToBottom = () => {
|
|
||||||
const topicsDiv = document.getElementById("scroll-div");
|
|
||||||
|
|
||||||
if (topicsDiv) topicsDiv.scrollTop = topicsDiv.scrollHeight;
|
|
||||||
};
|
|
||||||
|
|
||||||
const getSpeakerName = (speakerNumber: number) => {
|
|
||||||
if (!participants.response) return;
|
|
||||||
return (
|
|
||||||
participants.response.find(
|
|
||||||
(participant) => participant.speaker == speakerNumber,
|
|
||||||
)?.name || `Speaker ${speakerNumber}`
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const requireLogin = featureEnabled("requireLogin");
|
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (autoscroll) {
|
if (autoscroll) {
|
||||||
setActiveTopic(topics[topics.length - 1]);
|
setActiveTopic(topics[topics.length - 1]);
|
||||||
}
|
}
|
||||||
}, [topics, autoscroll]);
|
}, [topics, autoscroll]);
|
||||||
|
|
||||||
|
const handleTopicClick = (topic: Topic) => {
|
||||||
|
setActiveTopic(topic);
|
||||||
|
if (onTopicClick) {
|
||||||
|
onTopicClick(topic.id);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleTopicMouseEnter = (topic: Topic) => {
|
||||||
|
setHoveredTopicId(topic.id);
|
||||||
|
// If already active, toggle off when mousing over
|
||||||
|
if (activeTopic?.id === topic.id) {
|
||||||
|
setActiveTopic(null);
|
||||||
|
} else {
|
||||||
|
setActiveTopic(topic);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleTopicMouseLeave = () => {
|
||||||
|
setHoveredTopicId(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const requireLogin = featureEnabled("requireLogin");
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Flex
|
<Flex
|
||||||
position={"relative"}
|
position="relative"
|
||||||
w={"100%"}
|
w="full"
|
||||||
h={"95%"}
|
h="200px"
|
||||||
flexDirection={"column"}
|
flexDirection="column"
|
||||||
justify={"center"}
|
|
||||||
align={"center"}
|
|
||||||
flexShrink={0}
|
flexShrink={0}
|
||||||
>
|
>
|
||||||
{autoscroll && (
|
{autoscroll && (
|
||||||
@@ -118,45 +111,71 @@ export function TopicList({
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
<Box
|
<Box
|
||||||
id="scroll-div"
|
id={TOPICS_SCROLL_DIV_ID}
|
||||||
overflowY={"auto"}
|
overflowY="auto"
|
||||||
h={"100%"}
|
h="full"
|
||||||
onScroll={handleScroll}
|
onScroll={handleScroll}
|
||||||
width="full"
|
width="full"
|
||||||
>
|
>
|
||||||
{topics.length > 0 && (
|
{topics.length > 0 && (
|
||||||
<Accordion.Root
|
<Flex direction="column" gap={1} p={2}>
|
||||||
multiple={false}
|
{topics.map((topic, index) => {
|
||||||
collapsible={true}
|
const color = getTopicColor(index);
|
||||||
value={activeTopic ? [activeTopic.id] : []}
|
const isActive = activeTopic?.id === topic.id;
|
||||||
onValueChange={(details) => {
|
const isHovered = hoveredTopicId === topic.id;
|
||||||
const selectedTopicId = details.value[0];
|
|
||||||
const selectedTopic = selectedTopicId
|
return (
|
||||||
? topics.find((t) => t.id === selectedTopicId)
|
<Flex
|
||||||
: null;
|
key={topic.id}
|
||||||
setActiveTopic(selectedTopic || null);
|
id={`topic-${topic.id}`}
|
||||||
}}
|
gap={2}
|
||||||
>
|
align="center"
|
||||||
{topics.map((topic) => (
|
py={1}
|
||||||
<TopicItem
|
px={2}
|
||||||
key={topic.id}
|
cursor="pointer"
|
||||||
topic={topic}
|
bg={isActive || isHovered ? "gray.100" : "transparent"}
|
||||||
isActive={activeTopic?.id === topic.id}
|
_hover={{ bg: "gray.50" }}
|
||||||
getSpeakerName={getSpeakerName}
|
onClick={() => handleTopicClick(topic)}
|
||||||
/>
|
onMouseEnter={() => handleTopicMouseEnter(topic)}
|
||||||
))}
|
onMouseLeave={handleTopicMouseLeave}
|
||||||
</Accordion.Root>
|
>
|
||||||
|
{/* Color indicator */}
|
||||||
|
<Box
|
||||||
|
w="12px"
|
||||||
|
h="12px"
|
||||||
|
borderRadius="full"
|
||||||
|
bg={color}
|
||||||
|
flexShrink={0}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Topic title */}
|
||||||
|
<Text
|
||||||
|
flex={1}
|
||||||
|
fontSize="sm"
|
||||||
|
fontWeight={isActive ? "semibold" : "normal"}
|
||||||
|
>
|
||||||
|
{topic.title}
|
||||||
|
</Text>
|
||||||
|
|
||||||
|
{/* Timestamp */}
|
||||||
|
<Text as="span" color="gray.500" fontSize="xs" flexShrink={0}>
|
||||||
|
{formatTime(topic.timestamp)}
|
||||||
|
</Text>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Flex>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{status == "recording" && (
|
{status == "recording" && (
|
||||||
<Box textAlign={"center"}>
|
<Box textAlign="center">
|
||||||
<Text>{currentTranscriptText}</Text>
|
<Text>{currentTranscriptText}</Text>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{(status == "recording" || status == "idle") &&
|
{(status == "recording" || status == "idle") &&
|
||||||
currentTranscriptText.length == 0 &&
|
currentTranscriptText.length == 0 &&
|
||||||
topics.length == 0 && (
|
topics.length == 0 && (
|
||||||
<Box textAlign={"center"} color="gray">
|
<Box textAlign="center" color="gray">
|
||||||
<Text>
|
<Text>
|
||||||
Full discussion transcript will appear here after you start
|
Full discussion transcript will appear here after you start
|
||||||
recording.
|
recording.
|
||||||
@@ -167,7 +186,7 @@ export function TopicList({
|
|||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{status == "processing" && (
|
{status == "processing" && (
|
||||||
<Box textAlign={"center"} color="gray">
|
<Box textAlign="center" color="gray">
|
||||||
<Text>We are processing the recording, please wait.</Text>
|
<Text>We are processing the recording, please wait.</Text>
|
||||||
{!requireLogin && (
|
{!requireLogin && (
|
||||||
<span>
|
<span>
|
||||||
@@ -177,12 +196,12 @@ export function TopicList({
|
|||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{status == "ended" && topics.length == 0 && (
|
{status == "ended" && topics.length == 0 && (
|
||||||
<Box textAlign={"center"} color="gray">
|
<Box textAlign="center" color="gray">
|
||||||
<Text>Recording has ended without topics being found.</Text>
|
<Text>Recording has ended without topics being found.</Text>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
{status == "error" && (
|
{status == "error" && (
|
||||||
<Box textAlign={"center"} color="gray">
|
<Box textAlign="center" color="gray">
|
||||||
<Text>There was an error processing your recording</Text>
|
<Text>There was an error processing your recording</Text>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -0,0 +1,106 @@
|
|||||||
|
import { Box, Text, IconButton } from "@chakra-ui/react";
|
||||||
|
import { ChevronUp } from "lucide-react";
|
||||||
|
import { Topic } from "../../webSocketTypes";
|
||||||
|
import { getTopicColor } from "../../../../lib/topicColors";
|
||||||
|
import { TOPICS_SCROLL_DIV_ID } from "./constants";
|
||||||
|
|
||||||
|
interface TranscriptWithGutterProps {
|
||||||
|
topics: Topic[];
|
||||||
|
getSpeakerName: (speakerNumber: number) => string | undefined;
|
||||||
|
onGutterClick: (topicId: string) => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function TranscriptWithGutter({
|
||||||
|
topics,
|
||||||
|
getSpeakerName,
|
||||||
|
onGutterClick,
|
||||||
|
}: TranscriptWithGutterProps) {
|
||||||
|
const scrollToTopics = () => {
|
||||||
|
// Scroll to the topic list at the top
|
||||||
|
const topicList = document.getElementById(TOPICS_SCROLL_DIV_ID);
|
||||||
|
if (topicList) {
|
||||||
|
topicList.scrollIntoView({
|
||||||
|
behavior: "smooth",
|
||||||
|
block: "start",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box>
|
||||||
|
{topics.map((topic, topicIndex) => {
|
||||||
|
const color = getTopicColor(topicIndex);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box key={topic.id} position="relative">
|
||||||
|
{/* Topic Header with Up Button */}
|
||||||
|
<Box
|
||||||
|
py={3}
|
||||||
|
px={4}
|
||||||
|
fontWeight="semibold"
|
||||||
|
fontSize="lg"
|
||||||
|
display="flex"
|
||||||
|
alignItems="center"
|
||||||
|
justifyContent="space-between"
|
||||||
|
>
|
||||||
|
<Text>{topic.title}</Text>
|
||||||
|
<IconButton
|
||||||
|
aria-label="Scroll to topics"
|
||||||
|
size="sm"
|
||||||
|
variant="ghost"
|
||||||
|
onClick={scrollToTopics}
|
||||||
|
>
|
||||||
|
<ChevronUp size={16} />
|
||||||
|
</IconButton>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{/* Segments container with single gutter */}
|
||||||
|
<Box position="relative">
|
||||||
|
{/* Single continuous gutter for entire topic */}
|
||||||
|
<Box
|
||||||
|
className="topic-gutter"
|
||||||
|
position="absolute"
|
||||||
|
left={0}
|
||||||
|
top={0}
|
||||||
|
bottom={0}
|
||||||
|
width="4px"
|
||||||
|
bg={color}
|
||||||
|
cursor="pointer"
|
||||||
|
transition="all 0.2s"
|
||||||
|
_hover={{
|
||||||
|
filter: "brightness(1.2)",
|
||||||
|
width: "6px",
|
||||||
|
}}
|
||||||
|
onClick={() => onGutterClick(topic.id)}
|
||||||
|
/>
|
||||||
|
|
||||||
|
{/* Segments */}
|
||||||
|
{topic.segments?.map((segment, segmentIndex) => (
|
||||||
|
<Box
|
||||||
|
key={segmentIndex}
|
||||||
|
id={`segment-${topic.id}-${segmentIndex}`}
|
||||||
|
py={2}
|
||||||
|
px={4}
|
||||||
|
pl={12}
|
||||||
|
_hover={{
|
||||||
|
bg: "gray.50",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* Segment Content */}
|
||||||
|
<Text fontSize="sm">
|
||||||
|
<Text as="span" fontWeight="semibold" color="gray.700">
|
||||||
|
{getSpeakerName(segment.speaker) ||
|
||||||
|
`Speaker ${segment.speaker}`}
|
||||||
|
:
|
||||||
|
</Text>{" "}
|
||||||
|
{segment.text}
|
||||||
|
</Text>
|
||||||
|
</Box>
|
||||||
|
))}
|
||||||
|
</Box>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
export const TOPICS_SCROLL_DIV_ID = "topics-scroll-div";
|
||||||
@@ -3,7 +3,9 @@ import Modal from "../modal";
|
|||||||
import useTopics from "../useTopics";
|
import useTopics from "../useTopics";
|
||||||
import useWaveform from "../useWaveform";
|
import useWaveform from "../useWaveform";
|
||||||
import useMp3 from "../useMp3";
|
import useMp3 from "../useMp3";
|
||||||
|
import useParticipants from "../useParticipants";
|
||||||
import { TopicList } from "./_components/TopicList";
|
import { TopicList } from "./_components/TopicList";
|
||||||
|
import { TranscriptWithGutter } from "./_components/TranscriptWithGutter";
|
||||||
import { Topic } from "../webSocketTypes";
|
import { Topic } from "../webSocketTypes";
|
||||||
import React, { useEffect, useState, use } from "react";
|
import React, { useEffect, useState, use } from "react";
|
||||||
import FinalSummary from "./finalSummary";
|
import FinalSummary from "./finalSummary";
|
||||||
@@ -45,14 +47,91 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
|||||||
|
|
||||||
const mp3 = useMp3(transcriptId, waiting);
|
const mp3 = useMp3(transcriptId, waiting);
|
||||||
const topics = useTopics(transcriptId);
|
const topics = useTopics(transcriptId);
|
||||||
|
const participants = useParticipants(transcriptId);
|
||||||
const waveform = useWaveform(
|
const waveform = useWaveform(
|
||||||
transcriptId,
|
transcriptId,
|
||||||
waiting || mp3.audioDeleted === true,
|
waiting || mp3.audioDeleted === true,
|
||||||
);
|
);
|
||||||
const useActiveTopic = useState<Topic | null>(null);
|
const useActiveTopic = useState<Topic | null>(null);
|
||||||
|
const [activeTopic, setActiveTopic] = useActiveTopic;
|
||||||
const [finalSummaryElement, setFinalSummaryElement] =
|
const [finalSummaryElement, setFinalSummaryElement] =
|
||||||
useState<HTMLDivElement | null>(null);
|
useState<HTMLDivElement | null>(null);
|
||||||
|
|
||||||
|
// IntersectionObserver for active topic detection based on scroll position
|
||||||
|
useEffect(() => {
|
||||||
|
if (!topics.topics || topics.topics.length === 0) return;
|
||||||
|
|
||||||
|
const observer = new IntersectionObserver(
|
||||||
|
(entries) => {
|
||||||
|
// Find the most visible segment
|
||||||
|
let mostVisibleEntry: IntersectionObserverEntry | null = null;
|
||||||
|
let maxRatio = 0;
|
||||||
|
|
||||||
|
entries.forEach((entry) => {
|
||||||
|
if (entry.isIntersecting && entry.intersectionRatio > maxRatio) {
|
||||||
|
maxRatio = entry.intersectionRatio;
|
||||||
|
mostVisibleEntry = entry;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (mostVisibleEntry) {
|
||||||
|
// Extract topicId from segment id (format: "segment-{topicId}-{idx}")
|
||||||
|
const segmentId = mostVisibleEntry.target.id;
|
||||||
|
const match = segmentId.match(/^segment-([^-]+)-/);
|
||||||
|
if (match) {
|
||||||
|
const topicId = match[1];
|
||||||
|
const topic = topics.topics?.find((t) => t.id === topicId);
|
||||||
|
if (topic && activeTopic?.id !== topic.id) {
|
||||||
|
setActiveTopic(topic);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
threshold: [0, 0.25, 0.5, 0.75, 1],
|
||||||
|
rootMargin: "-20% 0px -20% 0px",
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
// Observe all segment elements
|
||||||
|
const segments = document.querySelectorAll('[id^="segment-"]');
|
||||||
|
segments.forEach((segment) => observer.observe(segment));
|
||||||
|
|
||||||
|
return () => observer.disconnect();
|
||||||
|
}, [topics.topics, activeTopic?.id, setActiveTopic]);
|
||||||
|
|
||||||
|
// Scroll handlers for bidirectional navigation
|
||||||
|
const handleTopicClick = (topicId: string) => {
|
||||||
|
// Scroll to first segment of this topic in transcript
|
||||||
|
const firstSegment = document.querySelector(`[id^="segment-${topicId}-"]`);
|
||||||
|
if (firstSegment) {
|
||||||
|
firstSegment.scrollIntoView({
|
||||||
|
behavior: "smooth",
|
||||||
|
block: "center",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleGutterClick = (topicId: string) => {
|
||||||
|
// Scroll to topic in list
|
||||||
|
const topicChip = document.getElementById(`topic-${topicId}`);
|
||||||
|
if (topicChip) {
|
||||||
|
topicChip.scrollIntoView({
|
||||||
|
behavior: "smooth",
|
||||||
|
block: "center",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getSpeakerName = (speakerNumber: number) => {
|
||||||
|
if (!participants.response) return `Speaker ${speakerNumber}`;
|
||||||
|
return (
|
||||||
|
participants.response.find(
|
||||||
|
(participant) => participant.speaker == speakerNumber,
|
||||||
|
)?.name || `Speaker ${speakerNumber}`
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!waiting || !transcript.data) return;
|
if (!waiting || !transcript.data) return;
|
||||||
|
|
||||||
@@ -121,7 +200,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
|||||||
<>
|
<>
|
||||||
<Grid
|
<Grid
|
||||||
templateColumns="1fr"
|
templateColumns="1fr"
|
||||||
templateRows="auto minmax(0, 1fr)"
|
templateRows="auto auto"
|
||||||
gap={4}
|
gap={4}
|
||||||
mt={4}
|
mt={4}
|
||||||
mb={4}
|
mb={4}
|
||||||
@@ -153,18 +232,18 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
|||||||
<Grid
|
<Grid
|
||||||
templateColumns={{ base: "minmax(0, 1fr)", md: "repeat(2, 1fr)" }}
|
templateColumns={{ base: "minmax(0, 1fr)", md: "repeat(2, 1fr)" }}
|
||||||
templateRows={{
|
templateRows={{
|
||||||
base: "auto minmax(0, 1fr) minmax(0, 1fr)",
|
base: "auto auto auto",
|
||||||
md: "auto minmax(0, 1fr)",
|
md: "auto auto",
|
||||||
}}
|
}}
|
||||||
gap={4}
|
gap={4}
|
||||||
gridRowGap={2}
|
gridRowGap={2}
|
||||||
padding={4}
|
padding={4}
|
||||||
paddingBottom={0}
|
|
||||||
background="gray.bg"
|
background="gray.bg"
|
||||||
border={"2px solid"}
|
border={"2px solid"}
|
||||||
borderColor={"gray.bg"}
|
borderColor={"gray.bg"}
|
||||||
borderRadius={8}
|
borderRadius={8}
|
||||||
>
|
>
|
||||||
|
{/* Title */}
|
||||||
<GridItem colSpan={{ base: 1, md: 2 }}>
|
<GridItem colSpan={{ base: 1, md: 2 }}>
|
||||||
<Flex direction="column" gap={0}>
|
<Flex direction="column" gap={0}>
|
||||||
<Flex alignItems="center" gap={2}>
|
<Flex alignItems="center" gap={2}>
|
||||||
@@ -187,28 +266,64 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
|||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
</GridItem>
|
</GridItem>
|
||||||
<TopicList
|
|
||||||
topics={topics.topics || []}
|
{/* Left column: Topics List */}
|
||||||
useActiveTopic={useActiveTopic}
|
<GridItem display="flex" flexDirection="column" gap={4} h="100%">
|
||||||
autoscroll={false}
|
<TopicList
|
||||||
transcriptId={transcriptId}
|
topics={topics.topics || []}
|
||||||
status={transcript.data?.status || null}
|
useActiveTopic={useActiveTopic}
|
||||||
currentTranscriptText=""
|
autoscroll={false}
|
||||||
/>
|
transcriptId={transcriptId}
|
||||||
{transcript.data && topics.topics ? (
|
status={transcript.data?.status || null}
|
||||||
<>
|
currentTranscriptText=""
|
||||||
<FinalSummary
|
onTopicClick={handleTopicClick}
|
||||||
transcript={transcript.data}
|
/>
|
||||||
topics={topics.topics}
|
|
||||||
onUpdate={() => {
|
{/* Transcript with colored gutter (scrollable) */}
|
||||||
transcript.refetch().then(() => {});
|
{topics.topics && topics.topics.length > 0 && (
|
||||||
|
<Box
|
||||||
|
overflowY="auto"
|
||||||
|
flex={1}
|
||||||
|
minH="0"
|
||||||
|
pr={2}
|
||||||
|
css={{
|
||||||
|
"&::-webkit-scrollbar": {
|
||||||
|
width: "8px",
|
||||||
|
},
|
||||||
|
"&::-webkit-scrollbar-track": {
|
||||||
|
background: "transparent",
|
||||||
|
},
|
||||||
|
"&::-webkit-scrollbar-thumb": {
|
||||||
|
background: "#CBD5E0",
|
||||||
|
borderRadius: "4px",
|
||||||
|
},
|
||||||
|
"&::-webkit-scrollbar-thumb:hover": {
|
||||||
|
background: "#A0AEC0",
|
||||||
|
},
|
||||||
}}
|
}}
|
||||||
finalSummaryRef={setFinalSummaryElement}
|
>
|
||||||
/>
|
<TranscriptWithGutter
|
||||||
</>
|
topics={topics.topics}
|
||||||
|
getSpeakerName={getSpeakerName}
|
||||||
|
onGutterClick={handleGutterClick}
|
||||||
|
/>
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
|
</GridItem>
|
||||||
|
|
||||||
|
{/* Right column: Final Summary */}
|
||||||
|
{transcript.data && topics.topics ? (
|
||||||
|
<FinalSummary
|
||||||
|
transcript={transcript.data}
|
||||||
|
topics={topics.topics}
|
||||||
|
onUpdate={() => {
|
||||||
|
transcript.refetch().then(() => {});
|
||||||
|
}}
|
||||||
|
finalSummaryRef={setFinalSummaryElement}
|
||||||
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Flex justify={"center"} alignItems={"center"} h={"100%"}>
|
<Flex justify="center" alignItems="center" h="100%">
|
||||||
<div className="flex flex-col h-full justify-center content-center">
|
<Flex direction="column" h="full" justify="center" align="center">
|
||||||
{transcript?.data?.status == "processing" ? (
|
{transcript?.data?.status == "processing" ? (
|
||||||
<Text>Loading Transcript</Text>
|
<Text>Loading Transcript</Text>
|
||||||
) : (
|
) : (
|
||||||
@@ -217,7 +332,7 @@ export default function TranscriptDetails(details: TranscriptDetails) {
|
|||||||
back later
|
back later
|
||||||
</Text>
|
</Text>
|
||||||
)}
|
)}
|
||||||
</div>
|
</Flex>
|
||||||
</Flex>
|
</Flex>
|
||||||
)}
|
)}
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
18
www/app/lib/topicColors.ts
Normal file
18
www/app/lib/topicColors.ts
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
// Predefined color palette for topics
|
||||||
|
// Colors chosen for good contrast and visual distinction
|
||||||
|
export const TOPIC_COLORS = [
|
||||||
|
"#3B82F6", // blue
|
||||||
|
"#10B981", // green
|
||||||
|
"#F59E0B", // amber
|
||||||
|
"#EF4444", // red
|
||||||
|
"#8B5CF6", // violet
|
||||||
|
"#EC4899", // pink
|
||||||
|
"#14B8A6", // teal
|
||||||
|
"#F97316", // orange
|
||||||
|
"#6366F1", // indigo
|
||||||
|
"#84CC16", // lime
|
||||||
|
] as const;
|
||||||
|
|
||||||
|
export function getTopicColor(topicIndex: number): string {
|
||||||
|
return TOPIC_COLORS[topicIndex % TOPIC_COLORS.length];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user