mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
fix: copy transcript (#674)
* Copy transcript * Fix share copy transcript * Move copy button above transcript
This commit is contained in:
60
www/app/(app)/transcripts/buildTranscriptWithTopics.ts
Normal file
60
www/app/(app)/transcripts/buildTranscriptWithTopics.ts
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
import type { components } from "../../reflector-api";
|
||||||
|
import { formatTime } from "../../lib/time";
|
||||||
|
|
||||||
|
type GetTranscriptTopic = components["schemas"]["GetTranscriptTopic"];
|
||||||
|
type Participant = components["schemas"]["Participant"];
|
||||||
|
|
||||||
|
function getSpeakerName(
|
||||||
|
speakerNumber: number,
|
||||||
|
participants?: Participant[] | null,
|
||||||
|
): string {
|
||||||
|
const name = participants?.find((p) => p.speaker === speakerNumber)?.name;
|
||||||
|
return name && name.trim().length > 0 ? name : `Speaker ${speakerNumber}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function buildTranscriptWithTopics(
|
||||||
|
topics: GetTranscriptTopic[],
|
||||||
|
participants?: Participant[] | null,
|
||||||
|
transcriptTitle?: string | null,
|
||||||
|
): string {
|
||||||
|
const blocks: string[] = [];
|
||||||
|
|
||||||
|
if (transcriptTitle && transcriptTitle.trim()) {
|
||||||
|
blocks.push(`# ${transcriptTitle.trim()}`);
|
||||||
|
blocks.push("");
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const topic of topics) {
|
||||||
|
// Topic header
|
||||||
|
const topicTime = formatTime(Math.floor(topic.timestamp || 0));
|
||||||
|
const title = topic.title?.trim() || "Untitled Topic";
|
||||||
|
blocks.push(`## ${title} [${topicTime}]`);
|
||||||
|
|
||||||
|
if (topic.segments && topic.segments.length > 0) {
|
||||||
|
for (const seg of topic.segments) {
|
||||||
|
const ts = formatTime(Math.floor(seg.start || 0));
|
||||||
|
const speaker = getSpeakerName(seg.speaker as number, participants);
|
||||||
|
const text = (seg.text || "").replace(/\s+/g, " ").trim();
|
||||||
|
if (text) {
|
||||||
|
blocks.push(`[${ts}] ${speaker}: ${text}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (topic.transcript) {
|
||||||
|
// Fallback: plain transcript when segments are not present
|
||||||
|
const text = topic.transcript.replace(/\s+/g, " ").trim();
|
||||||
|
if (text) {
|
||||||
|
blocks.push(text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Blank line between topics
|
||||||
|
blocks.push("");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Trim trailing blank line
|
||||||
|
while (blocks.length > 0 && blocks[blocks.length - 1] === "") {
|
||||||
|
blocks.pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
return blocks.join("\n");
|
||||||
|
}
|
||||||
@@ -3,6 +3,8 @@ import type { components } from "../../reflector-api";
|
|||||||
type GetTranscript = components["schemas"]["GetTranscript"];
|
type GetTranscript = components["schemas"]["GetTranscript"];
|
||||||
type GetTranscriptTopic = components["schemas"]["GetTranscriptTopic"];
|
type GetTranscriptTopic = components["schemas"]["GetTranscriptTopic"];
|
||||||
import { Button, BoxProps, Box } from "@chakra-ui/react";
|
import { Button, BoxProps, Box } from "@chakra-ui/react";
|
||||||
|
import { buildTranscriptWithTopics } from "./buildTranscriptWithTopics";
|
||||||
|
import { useTranscriptParticipants } from "../../lib/apiHooks";
|
||||||
|
|
||||||
type ShareCopyProps = {
|
type ShareCopyProps = {
|
||||||
finalSummaryElement: HTMLDivElement | null;
|
finalSummaryElement: HTMLDivElement | null;
|
||||||
@@ -18,6 +20,7 @@ export default function ShareCopy({
|
|||||||
}: ShareCopyProps & BoxProps) {
|
}: ShareCopyProps & BoxProps) {
|
||||||
const [isCopiedSummary, setIsCopiedSummary] = useState(false);
|
const [isCopiedSummary, setIsCopiedSummary] = useState(false);
|
||||||
const [isCopiedTranscript, setIsCopiedTranscript] = useState(false);
|
const [isCopiedTranscript, setIsCopiedTranscript] = useState(false);
|
||||||
|
const participantsQuery = useTranscriptParticipants(transcript?.id || null);
|
||||||
|
|
||||||
const onCopySummaryClick = () => {
|
const onCopySummaryClick = () => {
|
||||||
const text_to_copy = finalSummaryElement?.innerText;
|
const text_to_copy = finalSummaryElement?.innerText;
|
||||||
@@ -32,12 +35,12 @@ export default function ShareCopy({
|
|||||||
};
|
};
|
||||||
|
|
||||||
const onCopyTranscriptClick = () => {
|
const onCopyTranscriptClick = () => {
|
||||||
let text_to_copy =
|
const text_to_copy =
|
||||||
topics
|
buildTranscriptWithTopics(
|
||||||
?.map((topic) => topic.transcript)
|
topics || [],
|
||||||
.join("\n\n")
|
participantsQuery?.data || null,
|
||||||
.replace(/ +/g, " ")
|
transcript?.title || null,
|
||||||
.trim() || "";
|
) || "";
|
||||||
|
|
||||||
text_to_copy &&
|
text_to_copy &&
|
||||||
navigator.clipboard.writeText(text_to_copy).then(() => {
|
navigator.clipboard.writeText(text_to_copy).then(() => {
|
||||||
|
|||||||
@@ -4,10 +4,15 @@ import type { components } from "../../reflector-api";
|
|||||||
type UpdateTranscript = components["schemas"]["UpdateTranscript"];
|
type UpdateTranscript = components["schemas"]["UpdateTranscript"];
|
||||||
type GetTranscript = components["schemas"]["GetTranscript"];
|
type GetTranscript = components["schemas"]["GetTranscript"];
|
||||||
type GetTranscriptTopic = components["schemas"]["GetTranscriptTopic"];
|
type GetTranscriptTopic = components["schemas"]["GetTranscriptTopic"];
|
||||||
import { useTranscriptUpdate } from "../../lib/apiHooks";
|
import {
|
||||||
|
useTranscriptUpdate,
|
||||||
|
useTranscriptParticipants,
|
||||||
|
} from "../../lib/apiHooks";
|
||||||
import { Heading, IconButton, Input, Flex, Spacer } from "@chakra-ui/react";
|
import { Heading, IconButton, Input, Flex, Spacer } from "@chakra-ui/react";
|
||||||
import { LuPen } from "react-icons/lu";
|
import { LuPen, LuCopy, LuCheck } from "react-icons/lu";
|
||||||
import ShareAndPrivacy from "./shareAndPrivacy";
|
import ShareAndPrivacy from "./shareAndPrivacy";
|
||||||
|
import { buildTranscriptWithTopics } from "./buildTranscriptWithTopics";
|
||||||
|
import { toaster } from "../../components/ui/toaster";
|
||||||
|
|
||||||
type TranscriptTitle = {
|
type TranscriptTitle = {
|
||||||
title: string;
|
title: string;
|
||||||
@@ -25,6 +30,9 @@ const TranscriptTitle = (props: TranscriptTitle) => {
|
|||||||
const [preEditTitle, setPreEditTitle] = useState(props.title);
|
const [preEditTitle, setPreEditTitle] = useState(props.title);
|
||||||
const [isEditing, setIsEditing] = useState(false);
|
const [isEditing, setIsEditing] = useState(false);
|
||||||
const updateTranscriptMutation = useTranscriptUpdate();
|
const updateTranscriptMutation = useTranscriptUpdate();
|
||||||
|
const participantsQuery = useTranscriptParticipants(
|
||||||
|
props.transcript?.id || null,
|
||||||
|
);
|
||||||
|
|
||||||
const updateTitle = async (newTitle: string, transcriptId: string) => {
|
const updateTitle = async (newTitle: string, transcriptId: string) => {
|
||||||
try {
|
try {
|
||||||
@@ -118,11 +126,57 @@ const TranscriptTitle = (props: TranscriptTitle) => {
|
|||||||
<LuPen />
|
<LuPen />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
{props.transcript && props.topics && (
|
{props.transcript && props.topics && (
|
||||||
<ShareAndPrivacy
|
<>
|
||||||
finalSummaryElement={props.finalSummaryElement}
|
<IconButton
|
||||||
transcript={props.transcript}
|
aria-label="Copy Transcript"
|
||||||
topics={props.topics}
|
size="sm"
|
||||||
/>
|
variant="subtle"
|
||||||
|
onClick={() => {
|
||||||
|
const text = buildTranscriptWithTopics(
|
||||||
|
props.topics || [],
|
||||||
|
participantsQuery?.data || null,
|
||||||
|
props.transcript?.title || null,
|
||||||
|
);
|
||||||
|
if (!text) return;
|
||||||
|
navigator.clipboard
|
||||||
|
.writeText(text)
|
||||||
|
.then(() => {
|
||||||
|
toaster
|
||||||
|
.create({
|
||||||
|
placement: "top",
|
||||||
|
duration: 2500,
|
||||||
|
render: () => (
|
||||||
|
<div className="chakra-ui-light">
|
||||||
|
<div
|
||||||
|
style={{
|
||||||
|
background: "#38A169",
|
||||||
|
color: "white",
|
||||||
|
padding: "8px 12px",
|
||||||
|
borderRadius: 6,
|
||||||
|
display: "flex",
|
||||||
|
alignItems: "center",
|
||||||
|
gap: 8,
|
||||||
|
boxShadow: "rgba(0,0,0,0.25) 0px 4px 12px",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<LuCheck /> Transcript copied
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
),
|
||||||
|
})
|
||||||
|
.then(() => {});
|
||||||
|
})
|
||||||
|
.catch(() => {});
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<LuCopy />
|
||||||
|
</IconButton>
|
||||||
|
<ShareAndPrivacy
|
||||||
|
finalSummaryElement={props.finalSummaryElement}
|
||||||
|
transcript={props.transcript}
|
||||||
|
topics={props.topics}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user