mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-10-30 19:08:15 +00:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import { Check, ClipboardList } from 'lucide-react';
|
|
import { Message } from '../ChatWindow';
|
|
import { useState } from 'react';
|
|
import { Section } from '@/lib/hooks/useChat';
|
|
|
|
const Copy = ({
|
|
section,
|
|
initialMessage,
|
|
}: {
|
|
section: Section;
|
|
initialMessage: string;
|
|
}) => {
|
|
const [copied, setCopied] = useState(false);
|
|
|
|
return (
|
|
<button
|
|
onClick={() => {
|
|
const contentToCopy = `${initialMessage}${section?.sourceMessage?.sources && section.sourceMessage.sources.length > 0 && `\n\nCitations:\n${section.sourceMessage.sources?.map((source: any, i: any) => `[${i + 1}] ${source.metadata.url}`).join(`\n`)}`}`;
|
|
navigator.clipboard.writeText(contentToCopy);
|
|
setCopied(true);
|
|
setTimeout(() => setCopied(false), 1000);
|
|
}}
|
|
className="p-2 text-black/70 dark:text-white/70 rounded-xl hover:bg-light-secondary dark:hover:bg-dark-secondary transition duration-200 hover:text-black dark:hover:text-white"
|
|
>
|
|
{copied ? <Check size={18} /> : <ClipboardList size={18} />}
|
|
</button>
|
|
);
|
|
};
|
|
|
|
export default Copy;
|