diff --git a/frontend/src/conversation/ConversationBubble.tsx b/frontend/src/conversation/ConversationBubble.tsx index bce831f7..c0f6cd70 100644 --- a/frontend/src/conversation/ConversationBubble.tsx +++ b/frontend/src/conversation/ConversationBubble.tsx @@ -1,15 +1,14 @@ import { forwardRef, useState } from 'react'; import Avatar from '../components/Avatar'; +import CoppyButton from '../components/CopyButton'; import remarkGfm from 'remark-gfm'; import { FEEDBACK, MESSAGE_TYPE } from './conversationModels'; import classes from './ConversationBubble.module.css'; import Alert from './../assets/alert.svg'; import Like from './../assets/like.svg?react'; import Dislike from './../assets/dislike.svg?react'; -import Copy from './../assets/copy.svg?react'; -import CheckMark from './../assets/checkmark.svg?react'; + import ReactMarkdown from 'react-markdown'; -import copy from 'copy-to-clipboard'; import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter'; import { vscDarkPlus } from 'react-syntax-highlighter/dist/cjs/styles/prism'; import DocsGPT3 from '../assets/cute_docsgpt3.svg'; @@ -30,29 +29,19 @@ const ConversationBubble = forwardRef< ref, ) { const [openSource, setOpenSource] = useState(null); - const [copied, setCopied] = useState(false); - const handleCopyClick = (text: string) => { - copy(text); - setCopied(true); - // Reset copied to false after a few seconds - setTimeout(() => { - setCopied(false); - }, 3000); - }; - const [isCopyHovered, setIsCopyHovered] = useState(false); const [isLikeHovered, setIsLikeHovered] = useState(false); const [isDislikeHovered, setIsDislikeHovered] = useState(false); const [isLikeClicked, setIsLikeClicked] = useState(false); const [isDislikeClicked, setIsDislikeClicked] = useState(false); let bubble; - + if (type === 'QUESTION') { bubble = (
-
+
{message} @@ -94,19 +83,28 @@ const ConversationBubble = forwardRef< code({ node, inline, className, children, ...props }) { const match = /language-(\w+)/.exec(className || ''); - return !inline && match ? ( - - {String(children).replace(/\n$/, '')} - - ) : ( - - {children} - + return ( +
+ {!inline && match ? ( + + {String(children).replace(/\n$/, '')} + + ) : ( + + {children} + + )} +
+ +
+
); }, ul({ children }) { @@ -172,7 +170,7 @@ const ConversationBubble = forwardRef< {sources?.map((source, index) => (
-
- {copied ? ( - setIsCopyHovered(true)} - onMouseLeave={() => setIsCopyHovered(false)} - /> - ) : ( - { - handleCopyClick(message); - }} - onMouseEnter={() => setIsCopyHovered(true)} - onMouseLeave={() => setIsCopyHovered(false)} - > - )} -
+