2023-03-13 05:26:17 +08:00
|
|
|
import React, { useState, useEffect, useRef } from 'react';
|
2023-02-23 23:56:55 -05:00
|
|
|
import TextWrapper from './TextWrapper';
|
2023-03-15 10:42:45 -04:00
|
|
|
import MultiMessage from './MultiMessage';
|
2023-03-13 05:26:17 +08:00
|
|
|
import { useSelector, useDispatch } from 'react-redux';
|
2023-03-03 08:51:33 -05:00
|
|
|
import HoverButtons from './HoverButtons';
|
2023-03-13 21:44:30 +08:00
|
|
|
import SiblingSwitch from './SiblingSwitch';
|
2023-03-11 18:39:46 -05:00
|
|
|
import Spinner from '../svg/Spinner';
|
2023-03-13 05:26:17 +08:00
|
|
|
import { setError } from '~/store/convoSlice';
|
|
|
|
|
import { setMessages } from '~/store/messageSlice';
|
|
|
|
|
import { setSubmitState, setSubmission } from '~/store/submitSlice';
|
|
|
|
|
import { setText } from '~/store/textSlice';
|
2023-03-13 21:44:30 +08:00
|
|
|
import { setConversation } from '../../store/convoSlice';
|
2023-03-15 14:21:08 +08:00
|
|
|
import { getIconOfModel } from '../../utils';
|
2023-03-13 21:44:30 +08:00
|
|
|
|
2023-02-13 20:13:59 -05:00
|
|
|
export default function Message({
|
2023-03-13 05:26:17 +08:00
|
|
|
message,
|
|
|
|
|
messages,
|
|
|
|
|
scrollToBottom,
|
2023-03-13 21:44:30 +08:00
|
|
|
currentEditId,
|
|
|
|
|
setCurrentEditId,
|
|
|
|
|
siblingIdx,
|
|
|
|
|
siblingCount,
|
|
|
|
|
setSiblingIdx
|
2023-02-13 20:13:59 -05:00
|
|
|
}) {
|
2023-03-13 05:26:17 +08:00
|
|
|
const { isSubmitting, model, chatGptLabel, promptPrefix } = useSelector((state) => state.submit);
|
2023-02-21 21:31:36 -05:00
|
|
|
const [abortScroll, setAbort] = useState(false);
|
2023-03-13 22:20:50 +08:00
|
|
|
const { sender, text, isCreatedByUser, error, submitting } = message
|
2023-03-13 05:26:17 +08:00
|
|
|
const textEditor = useRef(null)
|
|
|
|
|
const convo = useSelector((state) => state.convo);
|
|
|
|
|
const { initial } = useSelector((state) => state.models);
|
|
|
|
|
const { error: convoError } = convo;
|
2023-03-13 21:44:30 +08:00
|
|
|
const last = !message?.children?.length
|
|
|
|
|
|
|
|
|
|
const edit = message.messageId == currentEditId;
|
2023-03-13 05:26:17 +08:00
|
|
|
|
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
|
|
|
|
|
|
// const notUser = !isCreatedByUser; // sender.toLowerCase() !== 'user';
|
2023-03-13 22:20:50 +08:00
|
|
|
const blinker = submitting && isSubmitting && last && !isCreatedByUser;
|
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]);
|
2023-03-13 21:44:30 +08:00
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (last)
|
|
|
|
|
dispatch(setConversation({parentMessageId: message?.messageId}))
|
|
|
|
|
}, [last, ])
|
|
|
|
|
|
2023-03-15 10:42:45 -04:00
|
|
|
// if (sender === '') {
|
|
|
|
|
// return <Spinner />;
|
|
|
|
|
// }
|
2023-02-21 21:31:36 -05:00
|
|
|
|
2023-03-13 21:44:30 +08:00
|
|
|
const enterEdit = (cancel) => setCurrentEditId(cancel?-1:message.messageId)
|
|
|
|
|
|
2023-02-21 21:31:36 -05:00
|
|
|
const handleWheel = () => {
|
|
|
|
|
if (blinker) {
|
|
|
|
|
setAbort(true);
|
|
|
|
|
} else {
|
|
|
|
|
setAbort(false);
|
|
|
|
|
}
|
|
|
|
|
};
|
2023-02-13 20:13:59 -05:00
|
|
|
|
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-15 14:21:08 +08:00
|
|
|
|
|
|
|
|
const icon = getIconOfModel({ sender, isCreatedByUser, model, chatGptLabel, promptPrefix, error });
|
|
|
|
|
|
|
|
|
|
if (!isCreatedByUser)
|
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-02-15 12:29:56 -05:00
|
|
|
|
2023-02-23 23:56:55 -05:00
|
|
|
const wrapText = (text) => <TextWrapper text={text} />;
|
2023-02-22 22:42:22 -05:00
|
|
|
|
2023-03-13 05:26:17 +08:00
|
|
|
const resubmitMessage = () => {
|
2023-03-13 12:36:00 +08:00
|
|
|
const text = textEditor.current.innerText
|
2023-03-13 05:26:17 +08:00
|
|
|
|
|
|
|
|
if (convoError) {
|
|
|
|
|
dispatch(setError(false));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!!isSubmitting || text.trim() === '') {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-13 21:44:30 +08:00
|
|
|
// this is not a real messageId, it is used as placeholder before real messageId returned
|
|
|
|
|
const fakeMessageId = crypto.randomUUID();
|
2023-03-13 05:26:17 +08:00
|
|
|
const isCustomModel = model === 'chatgptCustom' || !initial[model];
|
2023-03-14 03:38:47 +08:00
|
|
|
const currentMsg = {
|
|
|
|
|
sender: 'User', text: text.trim(), current: true, isCreatedByUser: true,
|
|
|
|
|
parentMessageId: message?.parentMessageId,
|
|
|
|
|
conversationId: message?.conversationId,
|
|
|
|
|
messageId: fakeMessageId };
|
2023-03-13 05:26:17 +08:00
|
|
|
const sender = model === 'chatgptCustom' ? chatGptLabel : model;
|
|
|
|
|
|
2023-03-13 22:20:50 +08:00
|
|
|
const initialResponse = { sender, text: '', parentMessageId: fakeMessageId, submitting: true };
|
2023-03-13 05:26:17 +08:00
|
|
|
|
|
|
|
|
dispatch(setSubmitState(true));
|
2023-03-13 21:44:30 +08:00
|
|
|
dispatch(setMessages([...messages, currentMsg, initialResponse]));
|
2023-03-13 05:26:17 +08:00
|
|
|
dispatch(setText(''));
|
|
|
|
|
|
|
|
|
|
const submission = {
|
|
|
|
|
isCustomModel,
|
|
|
|
|
message: {
|
2023-03-13 21:44:30 +08:00
|
|
|
...currentMsg,
|
2023-03-13 05:26:17 +08:00
|
|
|
model,
|
|
|
|
|
chatGptLabel,
|
|
|
|
|
promptPrefix,
|
|
|
|
|
},
|
2023-03-13 21:44:30 +08:00
|
|
|
messages: messages,
|
2023-03-13 05:26:17 +08:00
|
|
|
currentMsg,
|
|
|
|
|
initialResponse,
|
|
|
|
|
sender,
|
|
|
|
|
};
|
2023-03-13 21:44:30 +08:00
|
|
|
console.log('User Input:', currentMsg?.text);
|
2023-03-13 05:26:17 +08:00
|
|
|
// handleSubmit(submission);
|
|
|
|
|
dispatch(setSubmission(submission));
|
|
|
|
|
|
2023-03-13 21:44:30 +08:00
|
|
|
setSiblingIdx(siblingCount - 1)
|
2023-03-13 05:26:17 +08:00
|
|
|
enterEdit(true);
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-05 19:41:24 -05:00
|
|
|
return (
|
2023-03-13 21:44:30 +08:00
|
|
|
<>
|
|
|
|
|
<div
|
|
|
|
|
{...props}
|
|
|
|
|
onWheel={handleWheel}
|
|
|
|
|
>
|
|
|
|
|
<div className="relative 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-15 10:42:45 -04:00
|
|
|
<div className="relative flex h-[30px] w-[30px] flex-col items-end text-right text-xs md:text-sm">
|
2023-03-13 21:44:30 +08:00
|
|
|
{typeof icon === 'string' && icon.match(/[^\u0000-\u007F]+/) ? (
|
|
|
|
|
<span className=" direction-rtl w-40 overflow-x-scroll">{icon}</span>
|
|
|
|
|
) : (
|
|
|
|
|
icon
|
|
|
|
|
)}
|
|
|
|
|
<SiblingSwitch siblingIdx={siblingIdx} siblingCount={siblingCount} setSiblingIdx={setSiblingIdx} />
|
|
|
|
|
</div>
|
|
|
|
|
<div className="relative flex w-[calc(100%-50px)] flex-col gap-1 whitespace-pre-wrap md:gap-3 lg:w-[calc(100%-115px)]">
|
|
|
|
|
<div className="flex flex-grow flex-col gap-3">
|
|
|
|
|
{error ? (
|
|
|
|
|
<div className="flex flex min-h-[20px] flex-col flex-grow items-start gap-4 gap-2 whitespace-pre-wrap text-red-500">
|
|
|
|
|
<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-03-14 03:38:47 +08:00
|
|
|
{`An error occurred. Please try again in a few moments.\n\nError message: ${text}`}
|
2023-03-13 05:26:17 +08:00
|
|
|
</div>
|
2023-02-22 22:42:22 -05:00
|
|
|
</div>
|
2023-03-13 21:44:30 +08:00
|
|
|
) :
|
|
|
|
|
edit ? (
|
|
|
|
|
<div className="flex min-h-[20px] flex-col flex-grow items-start gap-4 whitespace-pre-wrap">
|
|
|
|
|
{/* <div className={`${blinker ? 'result-streaming' : ''} markdown prose dark:prose-invert light w-full break-words`}> */}
|
|
|
|
|
|
|
|
|
|
<div className="markdown prose dark:prose-invert light w-full break-words border-none focus:outline-none"
|
|
|
|
|
contentEditable={true} ref={textEditor} suppressContentEditableWarning={true}>
|
|
|
|
|
{text}
|
|
|
|
|
</div>
|
|
|
|
|
<div className="text-center mt-2 flex w-full justify-center">
|
|
|
|
|
<button
|
|
|
|
|
className="btn relative btn-primary mr-2"
|
|
|
|
|
disabled={isSubmitting}
|
|
|
|
|
onClick={resubmitMessage}
|
|
|
|
|
>
|
|
|
|
|
Save & Submit
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
className="btn relative btn-neutral"
|
|
|
|
|
onClick={() => enterEdit(true)}
|
|
|
|
|
>
|
|
|
|
|
Cancel
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2023-03-13 05:26:17 +08:00
|
|
|
</div>
|
2023-03-13 21:44:30 +08:00
|
|
|
) : (
|
|
|
|
|
<div className="flex min-h-[20px] flex-col flex-grow items-start gap-4 whitespace-pre-wrap">
|
|
|
|
|
{/* <div className={`${blinker ? 'result-streaming' : ''} markdown prose dark:prose-invert light w-full break-words`}> */}
|
|
|
|
|
<div className="markdown prose dark:prose-invert light w-full break-words">
|
|
|
|
|
{!isCreatedByUser ? wrapText(text) : text}
|
|
|
|
|
{blinker && <span className="result-streaming">█</span>}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
2023-03-15 02:33:08 +08:00
|
|
|
<HoverButtons model={model} visible={!error && isCreatedByUser && !edit} onClick={() => enterEdit()}/>
|
2023-02-08 00:02:29 -05:00
|
|
|
</div>
|
2023-02-06 18:25:11 -05:00
|
|
|
</div>
|
2023-02-05 19:41:24 -05:00
|
|
|
</div>
|
2023-03-13 21:44:30 +08:00
|
|
|
<MultiMessage
|
|
|
|
|
messageList={message.children}
|
|
|
|
|
messages={messages}
|
|
|
|
|
scrollToBottom={scrollToBottom}
|
|
|
|
|
currentEditId={currentEditId}
|
|
|
|
|
setCurrentEditId={setCurrentEditId}
|
|
|
|
|
/>
|
|
|
|
|
</>
|
2023-02-05 19:41:24 -05:00
|
|
|
);
|
|
|
|
|
}
|