import React, { useState, useEffect } from "react"; import { formatTime } from "../../lib/time"; import ScrollToBottom from "./scrollToBottom"; import { Topic } from "./webSocketTypes"; import { generateHighContrastColor } from "../../lib/utils"; import useParticipants from "./useParticipants"; import { Accordion, AccordionButton, AccordionIcon, AccordionItem, AccordionPanel, Box, Flex, Text, } from "@chakra-ui/react"; type TopicListProps = { topics: Topic[]; useActiveTopic: [ Topic | null, React.Dispatch>, ]; autoscroll: boolean; transcriptId: string; }; export function TopicList({ topics, useActiveTopic, autoscroll, transcriptId, }: TopicListProps) { const [activeTopic, setActiveTopic] = useActiveTopic; const [autoscrollEnabled, setAutoscrollEnabled] = useState(true); const participants = useParticipants(transcriptId); useEffect(() => { if (autoscroll && autoscrollEnabled) scrollToBottom(); }, [topics.length]); const scrollToBottom = () => { const topicsDiv = document.getElementById("topics-div"); if (topicsDiv) topicsDiv.scrollTop = topicsDiv.scrollHeight; }; // 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 = Math.abs( element.scrollHeight - element.clientHeight - element.scrollTop, ) < 2 || element.scrollHeight == element.clientHeight; if (!bottom && autoscrollEnabled) { setAutoscrollEnabled(false); } else if (bottom && !autoscrollEnabled) { setAutoscrollEnabled(true); } }; const handleScroll = (e) => { toggleScroll(e.target); }; useEffect(() => { if (autoscroll) { const topicsDiv = document.getElementById("topics-div"); topicsDiv && toggleScroll(topicsDiv); } }, [activeTopic, autoscroll]); const getSpeakerName = (speakerNumber: number) => { if (!participants.response) return; return ( participants.response.find( (participant) => participant.speaker == speakerNumber, )?.name || `Speaker ${speakerNumber}` ); }; return ( {topics.length > 0 ? ( <> {autoscroll && ( )} topic.id == activeTopic?.id), ]} variant="custom" allowToggle > {topics.map((topic, index) => ( { setActiveTopic(activeTopic?.id == topic.id ? null : topic); }} > {topic.title}{" "}  [{formatTime(topic.timestamp)}] - [ {formatTime(topic.timestamp + (topic.duration || 0))}] {topic.segments ? ( <> {topic.segments.map((segment, index: number) => ( [{formatTime(segment.start)}] {" "} {getSpeakerName(segment.speaker)}: {" "} {segment.text} ))} ) : ( <>{topic.transcript} )} ))} ) : ( Discussion topics will appear here after you start recording. It may take up to 5 minutes of conversation for the first topic to appear. )} ); }