2023-02-21 21:31:36 -05:00
|
|
|
import React, { useState, useEffect } from 'react';
|
2023-02-23 23:56:55 -05:00
|
|
|
import TextWrapper from './TextWrapper';
|
2023-02-07 16:22:35 -05:00
|
|
|
import { useSelector } from 'react-redux';
|
2023-02-08 09:44:10 -05:00
|
|
|
import GPTIcon from '../svg/GPTIcon';
|
2023-02-15 12:29:56 -05:00
|
|
|
import BingIcon from '../svg/BingIcon';
|
2023-03-03 08:51:33 -05:00
|
|
|
import HoverButtons from './HoverButtons';
|
2023-02-05 19:41:24 -05:00
|
|
|
|
2023-02-13 20:13:59 -05:00
|
|
|
export default function Message({
|
|
|
|
|
sender,
|
|
|
|
|
text,
|
|
|
|
|
last = false,
|
|
|
|
|
error = false,
|
|
|
|
|
scrollToBottom
|
|
|
|
|
}) {
|
2023-02-07 16:22:35 -05:00
|
|
|
const { isSubmitting } = useSelector((state) => state.submit);
|
2023-02-21 21:31:36 -05:00
|
|
|
const [abortScroll, setAbort] = useState(false);
|
2023-03-03 08:51:33 -05:00
|
|
|
const [isHovering, setIsHovering] = useState(false);
|
2023-02-23 23:56:55 -05:00
|
|
|
const notUser = sender.toLowerCase() !== 'user';
|
|
|
|
|
const blinker = isSubmitting && last && notUser;
|
2023-02-13 20:13:59 -05:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
2023-02-21 21:31:36 -05:00
|
|
|
if (blinker && !abortScroll) {
|
2023-02-13 20:13:59 -05:00
|
|
|
scrollToBottom();
|
|
|
|
|
}
|
2023-02-21 21:31:36 -05:00
|
|
|
}, [isSubmitting, text, blinker, scrollToBottom, abortScroll]);
|
|
|
|
|
|
|
|
|
|
const handleWheel = () => {
|
|
|
|
|
if (blinker) {
|
|
|
|
|
setAbort(true);
|
|
|
|
|
} else {
|
|
|
|
|
setAbort(false);
|
|
|
|
|
}
|
|
|
|
|
};
|
2023-02-13 20:13:59 -05:00
|
|
|
|
2023-03-03 08:51:33 -05:00
|
|
|
const handleMouseOver = () => {
|
|
|
|
|
setIsHovering(true);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleMouseOut = () => {
|
|
|
|
|
setIsHovering(false);
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-06 18:25:11 -05:00
|
|
|
const props = {
|
|
|
|
|
className:
|
2023-03-04 17:39:06 -05:00
|
|
|
'w-full border-b border-black/10 dark:border-gray-900/50 text-gray-800 bg-white dark:text-gray-100 group dark:bg-gray-800'
|
2023-02-06 18:25:11 -05:00
|
|
|
};
|
|
|
|
|
|
2023-03-01 21:39:57 -05:00
|
|
|
const bgColors = {
|
|
|
|
|
chatgpt: 'rgb(16, 163, 127)',
|
|
|
|
|
chatgptBrowser: 'rgb(25, 207, 207)',
|
2023-03-03 08:51:33 -05:00
|
|
|
bingai: ''
|
2023-03-01 21:39:57 -05:00
|
|
|
};
|
|
|
|
|
|
2023-02-15 12:29:56 -05:00
|
|
|
let icon = `${sender}:`;
|
2023-03-01 21:39:57 -05:00
|
|
|
let backgroundColor = bgColors[sender];
|
2023-02-15 12:29:56 -05:00
|
|
|
|
2023-03-03 21:33:09 -05:00
|
|
|
if (notUser) {
|
2023-02-23 23:56:55 -05:00
|
|
|
props.className =
|
2023-03-06 14:04:06 -05:00
|
|
|
'w-full border-b border-black/10 bg-gray-50 dark:border-gray-900/50 text-gray-800 dark:text-gray-100 group bg-gray-100 dark:bg-[#444654]';
|
2023-03-03 21:33:09 -05:00
|
|
|
}
|
|
|
|
|
|
2023-03-06 14:04:06 -05:00
|
|
|
if ((notUser && backgroundColor) || sender === 'bingai') {
|
2023-02-15 12:29:56 -05:00
|
|
|
icon = (
|
|
|
|
|
<div
|
2023-03-01 21:39:57 -05:00
|
|
|
style={{ backgroundColor }}
|
2023-02-15 12:29:56 -05:00
|
|
|
className="relative flex h-[30px] w-[30px] items-center justify-center rounded-sm p-1 text-white"
|
|
|
|
|
>
|
2023-02-21 21:31:36 -05:00
|
|
|
{sender === 'bingai' ? <BingIcon /> : <GPTIcon />}
|
2023-03-06 14:04:06 -05:00
|
|
|
{error && (
|
|
|
|
|
<span className="absolute right-0 top-[20px] -mr-2 flex h-4 w-4 items-center justify-center rounded-full border border-white bg-red-500 text-[10px] text-white">
|
|
|
|
|
!
|
|
|
|
|
</span>
|
|
|
|
|
)}
|
2023-02-15 12:29:56 -05:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-23 23:56:55 -05:00
|
|
|
const wrapText = (text) => <TextWrapper text={text} />;
|
2023-02-22 22:42:22 -05:00
|
|
|
|
2023-02-05 19:41:24 -05:00
|
|
|
return (
|
2023-02-21 21:31:36 -05:00
|
|
|
<div
|
|
|
|
|
{...props}
|
|
|
|
|
onWheel={handleWheel}
|
2023-03-03 08:51:33 -05:00
|
|
|
onMouseOver={handleMouseOver}
|
|
|
|
|
onMouseOut={handleMouseOut}
|
2023-02-21 21:31:36 -05:00
|
|
|
>
|
2023-02-06 18:25:11 -05:00
|
|
|
<div className="m-auto flex gap-4 p-4 text-base md:max-w-2xl md:gap-6 md:py-6 lg:max-w-2xl lg:px-0 xl:max-w-3xl">
|
2023-03-03 15:52:06 -05:00
|
|
|
<strong className="relative flex w-[30px] flex-col items-end text-right">
|
|
|
|
|
{icon}
|
|
|
|
|
</strong>
|
2023-02-06 18:25:11 -05:00
|
|
|
<div className="relative flex w-[calc(100%-50px)] flex-col gap-1 whitespace-pre-wrap md:gap-3 lg:w-[calc(100%-115px)]">
|
2023-02-08 00:02:29 -05:00
|
|
|
<div className="flex flex-grow flex-col gap-3">
|
2023-02-21 19:40:28 -05:00
|
|
|
{error ? (
|
2023-02-13 20:13:59 -05:00
|
|
|
<div className="flex flex min-h-[20px] flex-row flex-col items-start gap-4 gap-2 whitespace-pre-wrap text-red-500">
|
2023-02-08 00:02:29 -05:00
|
|
|
<div className="rounded-md border border-red-500 bg-red-500/10 py-2 px-3 text-sm text-gray-600 dark:text-gray-100">
|
2023-02-23 23:56:55 -05:00
|
|
|
{text}
|
2023-02-08 00:02:29 -05:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
) : (
|
2023-02-22 22:42:22 -05:00
|
|
|
<div className="flex min-h-[20px] flex-col items-start gap-4 whitespace-pre-wrap">
|
2023-02-26 14:10:44 -05:00
|
|
|
{/* <div className={`${blinker ? 'result-streaming' : ''} markdown prose dark:prose-invert light w-full break-words`}> */}
|
2023-02-22 22:42:22 -05:00
|
|
|
<div className="markdown prose dark:prose-invert light w-full break-words">
|
2023-02-23 23:56:55 -05:00
|
|
|
{notUser ? wrapText(text) : text}
|
2023-02-22 22:42:22 -05:00
|
|
|
{blinker && <span className="result-streaming">█</span>}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-02-08 00:02:29 -05:00
|
|
|
)}
|
|
|
|
|
</div>
|
2023-03-03 08:51:33 -05:00
|
|
|
<div className="flex justify-between">
|
|
|
|
|
{isHovering && <HoverButtons user={!notUser} />}
|
|
|
|
|
</div>
|
2023-02-06 18:25:11 -05:00
|
|
|
</div>
|
2023-02-05 19:41:24 -05:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|