mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-21 04:39:06 +00:00
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import { useRef, useState } from "react";
|
|
|
|
type FinalSummaryProps = {
|
|
summary: string;
|
|
fullTranscript: string;
|
|
};
|
|
|
|
export default function FinalSummary(props: FinalSummaryProps) {
|
|
const finalSummaryRef = useRef<HTMLParagraphElement>(null);
|
|
const [isCopiedSummary, setIsCopiedSummary] = useState(false);
|
|
const [isCopiedTranscript, setIsCopiedTranscript] = useState(false);
|
|
|
|
const handleCopySummaryClick = () => {
|
|
let text_to_copy = finalSummaryRef.current?.innerText;
|
|
|
|
text_to_copy &&
|
|
navigator.clipboard.writeText(text_to_copy).then(() => {
|
|
setIsCopiedSummary(true);
|
|
// Reset the copied state after 2 seconds
|
|
setTimeout(() => setIsCopiedSummary(false), 2000);
|
|
});
|
|
};
|
|
|
|
const handleCopyTranscriptClick = () => {
|
|
let text_to_copy = props.fullTranscript;
|
|
|
|
text_to_copy &&
|
|
navigator.clipboard.writeText(text_to_copy).then(() => {
|
|
setIsCopiedTranscript(true);
|
|
// Reset the copied state after 2 seconds
|
|
setTimeout(() => setIsCopiedTranscript(false), 2000);
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="overflow-y-auto h-auto max-h-full">
|
|
<div className="flex flex-row flex-wrap-reverse justify-between items-center">
|
|
<h2 className="text-lg sm:text-xl md:text-2xl font-bold">
|
|
Final Summary
|
|
</h2>
|
|
<div className="ml-auto flex space-x-2 mb-2">
|
|
<button
|
|
onClick={handleCopyTranscriptClick}
|
|
className={
|
|
(isCopiedTranscript ? "bg-blue-500" : "bg-blue-400") +
|
|
" hover:bg-blue-500 focus-visible:bg-blue-500 text-white rounded p-2"
|
|
}
|
|
style={{ minHeight: "30px" }}
|
|
>
|
|
{isCopiedTranscript ? "Copied!" : "Copy Full Transcript"}
|
|
</button>
|
|
<button
|
|
onClick={handleCopySummaryClick}
|
|
className={
|
|
(isCopiedSummary ? "bg-blue-500" : "bg-blue-400") +
|
|
" hover:bg-blue-500 focus-visible:bg-blue-500 text-white rounded p-2"
|
|
}
|
|
style={{ minHeight: "30px" }}
|
|
>
|
|
{isCopiedSummary ? "Copied!" : "Copy Summary"}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<p ref={finalSummaryRef}>{props.summary}</p>
|
|
</div>
|
|
);
|
|
}
|