feat: Message copy button (#171)

* Add copy button

* Fix copy button not copying the entire message

* fix style

* remove prewrap

---------

Co-authored-by: Mckay Wrigley <mckaywrigley@gmail.com>
This commit is contained in:
Jack Wu 2023-03-26 00:28:08 -04:00 committed by GitHub
parent fffb729b34
commit 14fe29c03a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 84 additions and 37 deletions

View File

@ -1,10 +1,11 @@
import { Message } from "@/types"; import { Message } from "@/types";
import { IconEdit } from "@tabler/icons-react"; import { IconEdit } from "@tabler/icons-react";
import { FC, useEffect, useRef, useState } from "react";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { FC, useEffect, useRef, useState } from "react";
import ReactMarkdown from "react-markdown"; import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm"; import remarkGfm from "remark-gfm";
import { CodeBlock } from "../Markdown/CodeBlock"; import { CodeBlock } from "../Markdown/CodeBlock";
import { CopyButton } from "./CopyButton";
interface Props { interface Props {
message: Message; message: Message;
@ -14,10 +15,11 @@ interface Props {
} }
export const ChatMessage: FC<Props> = ({ message, messageIndex, lightMode, onEditMessage }) => { export const ChatMessage: FC<Props> = ({ message, messageIndex, lightMode, onEditMessage }) => {
const { t } = useTranslation('chat'); const { t } = useTranslation("chat");
const [isEditing, setIsEditing] = useState<boolean>(false); const [isEditing, setIsEditing] = useState<boolean>(false);
const [isHovering, setIsHovering] = useState<boolean>(false); const [isHovering, setIsHovering] = useState<boolean>(false);
const [messageContent, setMessageContent] = useState(message.content); const [messageContent, setMessageContent] = useState(message.content);
const [messagedCopied, setMessageCopied] = useState(false);
const textareaRef = useRef<HTMLTextAreaElement>(null); const textareaRef = useRef<HTMLTextAreaElement>(null);
@ -47,6 +49,17 @@ export const ChatMessage: FC<Props> = ({ message, messageIndex, lightMode, onEdi
} }
}; };
const copyOnClick = () => {
if (!navigator.clipboard) return;
navigator.clipboard.writeText(message.content).then(() => {
setMessageCopied(true);
setTimeout(() => {
setMessageCopied(false);
}, 2000);
});
};
useEffect(() => { useEffect(() => {
if (textareaRef.current) { if (textareaRef.current) {
textareaRef.current.style.height = "inherit"; textareaRef.current.style.height = "inherit";
@ -119,41 +132,51 @@ export const ChatMessage: FC<Props> = ({ message, messageIndex, lightMode, onEdi
)} )}
</div> </div>
) : ( ) : (
<ReactMarkdown <>
remarkPlugins={[remarkGfm]} <ReactMarkdown
components={{ className="prose dark:prose-invert"
code({ node, inline, className, children, ...props }) { remarkPlugins={[remarkGfm]}
const match = /language-(\w+)/.exec(className || ""); components={{
return !inline && match ? ( code({ node, inline, className, children, ...props }) {
<CodeBlock const match = /language-(\w+)/.exec(className || "");
key={Math.random()} return !inline && match ? (
language={match[1]} <CodeBlock
value={String(children).replace(/\n$/, "")} key={Math.random()}
lightMode={lightMode} language={match[1]}
{...props} value={String(children).replace(/\n$/, "")}
/> lightMode={lightMode}
) : ( {...props}
<code />
className={className} ) : (
{...props} <code
> className={className}
{children} {...props}
</code> >
); {children}
}, </code>
table({ children }) { );
return <table className="border-collapse border border-black dark:border-white py-1 px-3">{children}</table>; },
}, table({ children }) {
th({ children }) { return <table className="border-collapse border border-black dark:border-white py-1 px-3">{children}</table>;
return <th className="border border-black dark:border-white break-words py-1 px-3 bg-gray-500 text-white">{children}</th>; },
}, th({ children }) {
td({ children }) { return <th className="border border-black dark:border-white break-words py-1 px-3 bg-gray-500 text-white">{children}</th>;
return <td className="border border-black dark:border-white break-words py-1 px-3">{children}</td>; },
} td({ children }) {
}} return <td className="border border-black dark:border-white break-words py-1 px-3">{children}</td>;
> }
{message.content} }}
</ReactMarkdown> >
{message.content}
</ReactMarkdown>
{(isHovering || window.innerWidth < 640) && (
<CopyButton
messagedCopied={messagedCopied}
copyOnClick={copyOnClick}
/>
)}
</>
)} )}
</div> </div>
</div> </div>

View File

@ -0,0 +1,24 @@
import { IconCheck, IconCopy } from "@tabler/icons-react";
import { FC } from "react";
type Props = {
messagedCopied: boolean;
copyOnClick: () => void;
};
export const CopyButton: FC<Props> = ({ messagedCopied, copyOnClick }) => (
<button className={`absolute ${window.innerWidth < 640 ? "right-3 bottom-1" : "right-[-20px] top-[26px] m-0"}`}>
{messagedCopied ? (
<IconCheck
size={20}
className="text-green-500 dark:text-green-400"
/>
) : (
<IconCopy
size={20}
className="text-gray-500 dark:text-gray-400 hover:text-gray-700 dark:hover:text-gray-300"
onClick={copyOnClick}
/>
)}
</button>
);