mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
833 lines
24 KiB
TypeScript
833 lines
24 KiB
TypeScript
import React, { useCallback, useState, useRef, useMemo, useEffect } from 'react';
|
||
import { useRouter } from 'next/router';
|
||
import {
|
||
getInitChatSiteInfo,
|
||
delChatRecordByIndex,
|
||
postSaveChat,
|
||
delChatHistoryById
|
||
} from '@/api/chat';
|
||
import type { ChatSiteItemType, ExportChatType } from '@/types/chat';
|
||
import {
|
||
Textarea,
|
||
Box,
|
||
Flex,
|
||
useColorModeValue,
|
||
Menu,
|
||
MenuButton,
|
||
MenuList,
|
||
MenuItem,
|
||
Image,
|
||
Button,
|
||
Modal,
|
||
ModalOverlay,
|
||
ModalContent,
|
||
ModalBody,
|
||
ModalCloseButton,
|
||
useDisclosure,
|
||
Drawer,
|
||
DrawerOverlay,
|
||
DrawerContent
|
||
} from '@chakra-ui/react';
|
||
import { useToast } from '@/hooks/useToast';
|
||
import { useScreen } from '@/hooks/useScreen';
|
||
import { useQuery } from '@tanstack/react-query';
|
||
import dynamic from 'next/dynamic';
|
||
import { useCopyData } from '@/utils/tools';
|
||
import { streamFetch } from '@/api/fetch';
|
||
import MyIcon from '@/components/Icon';
|
||
import { throttle } from 'lodash';
|
||
import { Types } from 'mongoose';
|
||
import Markdown from '@/components/Markdown';
|
||
import { LOGO_ICON } from '@/constants/chat';
|
||
import { useChatStore } from '@/store/chat';
|
||
import { useLoading } from '@/hooks/useLoading';
|
||
import { fileDownload } from '@/utils/file';
|
||
import { htmlTemplate } from '@/constants/common';
|
||
import { useUserStore } from '@/store/user';
|
||
import Loading from '@/components/Loading';
|
||
|
||
const PhoneSliderBar = dynamic(() => import('./components/PhoneSliderBar'), {
|
||
loading: () => <Loading fixed={false} />,
|
||
ssr: false
|
||
});
|
||
const History = dynamic(() => import('./components/History'), {
|
||
loading: () => <Loading fixed={false} />,
|
||
ssr: false
|
||
});
|
||
const Empty = dynamic(() => import('./components/Empty'), {
|
||
loading: () => <Loading fixed={false} />,
|
||
ssr: false
|
||
});
|
||
|
||
import styles from './index.module.scss';
|
||
|
||
const textareaMinH = '22px';
|
||
|
||
const Chat = ({
|
||
modelId,
|
||
chatId,
|
||
isPcDevice
|
||
}: {
|
||
modelId: string;
|
||
chatId: string;
|
||
isPcDevice: boolean;
|
||
}) => {
|
||
const router = useRouter();
|
||
|
||
const ChatBox = useRef<HTMLDivElement>(null);
|
||
const TextareaDom = useRef<HTMLTextAreaElement>(null);
|
||
|
||
// 中断请求
|
||
const controller = useRef(new AbortController());
|
||
const isLeavePage = useRef(false);
|
||
|
||
const [inputVal, setInputVal] = useState(''); // user input prompt
|
||
const [showSystemPrompt, setShowSystemPrompt] = useState('');
|
||
|
||
const {
|
||
lastChatModelId,
|
||
setLastChatModelId,
|
||
lastChatId,
|
||
setLastChatId,
|
||
loadHistory,
|
||
chatData,
|
||
setChatData,
|
||
forbidLoadChatData,
|
||
setForbidLoadChatData
|
||
} = useChatStore();
|
||
|
||
const isChatting = useMemo(
|
||
() => chatData.history[chatData.history.length - 1]?.status === 'loading',
|
||
[chatData.history]
|
||
);
|
||
|
||
const { toast } = useToast();
|
||
const { copyData } = useCopyData();
|
||
const { isPc } = useScreen({ defaultIsPc: isPcDevice });
|
||
const { Loading, setIsLoading } = useLoading();
|
||
const { userInfo } = useUserStore();
|
||
const { isOpen: isOpenSlider, onClose: onCloseSlider, onOpen: onOpenSlider } = useDisclosure();
|
||
|
||
// 滚动到底部
|
||
const scrollToBottom = useCallback((behavior: 'smooth' | 'auto' = 'smooth') => {
|
||
if (!ChatBox.current) return;
|
||
ChatBox.current.scrollTo({
|
||
top: ChatBox.current.scrollHeight,
|
||
behavior
|
||
});
|
||
}, []);
|
||
|
||
// 聊天信息生成中……获取当前滚动条位置,判断是否需要滚动到底部
|
||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
const generatingMessage = useCallback(
|
||
throttle(() => {
|
||
if (!ChatBox.current) return;
|
||
const isBottom =
|
||
ChatBox.current.scrollTop + ChatBox.current.clientHeight + 150 >=
|
||
ChatBox.current.scrollHeight;
|
||
|
||
isBottom && scrollToBottom('auto');
|
||
}, 100),
|
||
[]
|
||
);
|
||
|
||
// 重置输入内容
|
||
const resetInputVal = useCallback((val: string) => {
|
||
setInputVal(val);
|
||
setTimeout(() => {
|
||
/* 回到最小高度 */
|
||
if (TextareaDom.current) {
|
||
TextareaDom.current.style.height =
|
||
val === '' ? textareaMinH : `${TextareaDom.current.scrollHeight}px`;
|
||
}
|
||
}, 100);
|
||
}, []);
|
||
|
||
// gpt 对话
|
||
const gptChatPrompt = useCallback(
|
||
async (prompts: ChatSiteItemType[]) => {
|
||
// create abort obj
|
||
const abortSignal = new AbortController();
|
||
controller.current = abortSignal;
|
||
isLeavePage.current = false;
|
||
|
||
const prompt = {
|
||
obj: prompts[0].obj,
|
||
value: prompts[0].value
|
||
};
|
||
|
||
// 流请求,获取数据
|
||
let { responseText, systemPrompt, newChatId } = await streamFetch({
|
||
url: '/api/chat/chat',
|
||
data: {
|
||
prompt,
|
||
chatId,
|
||
modelId
|
||
},
|
||
onMessage: (text: string) => {
|
||
setChatData((state) => ({
|
||
...state,
|
||
history: state.history.map((item, index) => {
|
||
if (index !== state.history.length - 1) return item;
|
||
return {
|
||
...item,
|
||
value: item.value + text
|
||
};
|
||
})
|
||
}));
|
||
generatingMessage();
|
||
},
|
||
abortSignal
|
||
});
|
||
|
||
// 重置了页面,说明退出了当前聊天, 不缓存任何内容
|
||
if (isLeavePage.current) {
|
||
return;
|
||
}
|
||
|
||
// save chat record
|
||
try {
|
||
newChatId = await postSaveChat({
|
||
newChatId, // 如果有newChatId,会自动以这个Id创建对话框
|
||
modelId,
|
||
chatId,
|
||
prompts: [
|
||
{
|
||
_id: prompts[0]._id,
|
||
obj: 'Human',
|
||
value: prompt.value
|
||
},
|
||
{
|
||
_id: prompts[1]._id,
|
||
obj: 'AI',
|
||
value: responseText,
|
||
systemPrompt
|
||
}
|
||
]
|
||
});
|
||
if (newChatId) {
|
||
setForbidLoadChatData(true);
|
||
router.replace(`/chat?modelId=${modelId}&chatId=${newChatId}`);
|
||
}
|
||
} catch (err) {
|
||
toast({
|
||
title: '对话出现异常, 继续对话会导致上下文丢失,请刷新页面',
|
||
status: 'warning',
|
||
duration: 3000,
|
||
isClosable: true
|
||
});
|
||
}
|
||
|
||
// 设置聊天内容为完成状态
|
||
setChatData((state) => ({
|
||
...state,
|
||
chatId: newChatId || state.chatId, // 如果有 Id,说明是新创建的对话
|
||
history: state.history.map((item, index) => {
|
||
if (index !== state.history.length - 1) return item;
|
||
return {
|
||
...item,
|
||
status: 'finish',
|
||
systemPrompt
|
||
};
|
||
})
|
||
}));
|
||
|
||
// refresh history
|
||
loadHistory({ pageNum: 1, init: true });
|
||
},
|
||
[
|
||
chatId,
|
||
setForbidLoadChatData,
|
||
generatingMessage,
|
||
loadHistory,
|
||
modelId,
|
||
router,
|
||
setChatData,
|
||
toast
|
||
]
|
||
);
|
||
|
||
/**
|
||
* 发送一个内容
|
||
*/
|
||
const sendPrompt = useCallback(async () => {
|
||
if (isChatting) {
|
||
toast({
|
||
title: '正在聊天中...请等待结束',
|
||
status: 'warning'
|
||
});
|
||
return;
|
||
}
|
||
const storeInput = inputVal;
|
||
// 去除空行
|
||
const val = inputVal.trim().replace(/\n\s*/g, '\n');
|
||
|
||
if (!val) {
|
||
toast({
|
||
title: '内容为空',
|
||
status: 'warning'
|
||
});
|
||
return;
|
||
}
|
||
|
||
const newChatList: ChatSiteItemType[] = [
|
||
...chatData.history,
|
||
{
|
||
_id: String(new Types.ObjectId()),
|
||
obj: 'Human',
|
||
value: val,
|
||
status: 'finish'
|
||
},
|
||
{
|
||
_id: String(new Types.ObjectId()),
|
||
obj: 'AI',
|
||
value: '',
|
||
status: 'loading'
|
||
}
|
||
];
|
||
|
||
// 插入内容
|
||
setChatData((state) => ({
|
||
...state,
|
||
history: newChatList
|
||
}));
|
||
|
||
// 清空输入内容
|
||
resetInputVal('');
|
||
setTimeout(() => {
|
||
scrollToBottom();
|
||
}, 100);
|
||
|
||
try {
|
||
await gptChatPrompt(newChatList.slice(-2));
|
||
} catch (err: any) {
|
||
toast({
|
||
title: typeof err === 'string' ? err : err?.message || '聊天出错了~',
|
||
status: 'warning',
|
||
duration: 5000,
|
||
isClosable: true
|
||
});
|
||
|
||
resetInputVal(storeInput);
|
||
|
||
setChatData((state) => ({
|
||
...state,
|
||
history: newChatList.slice(0, newChatList.length - 2)
|
||
}));
|
||
}
|
||
}, [
|
||
isChatting,
|
||
inputVal,
|
||
chatData.history,
|
||
setChatData,
|
||
resetInputVal,
|
||
toast,
|
||
scrollToBottom,
|
||
gptChatPrompt
|
||
]);
|
||
|
||
// 删除一句话
|
||
const delChatRecord = useCallback(
|
||
async (index: number, id: string) => {
|
||
setIsLoading(true);
|
||
try {
|
||
// 删除数据库最后一句
|
||
await delChatRecordByIndex(chatId, id);
|
||
|
||
setChatData((state) => ({
|
||
...state,
|
||
history: state.history.filter((_, i) => i !== index)
|
||
}));
|
||
} catch (err) {
|
||
console.log(err);
|
||
}
|
||
setIsLoading(false);
|
||
},
|
||
[chatId, setChatData, setIsLoading]
|
||
);
|
||
|
||
// 复制内容
|
||
const onclickCopy = useCallback(
|
||
(value: string) => {
|
||
const val = value.replace(/\n+/g, '\n');
|
||
copyData(val);
|
||
},
|
||
[copyData]
|
||
);
|
||
|
||
// export chat data
|
||
const onclickExportChat = useCallback(
|
||
(type: ExportChatType) => {
|
||
const getHistoryHtml = () => {
|
||
const historyDom = document.getElementById('history');
|
||
if (!historyDom) return;
|
||
|
||
const dom = Array.from(historyDom.children).map((child, i) => {
|
||
const avatar = `<img src="${
|
||
child.querySelector<HTMLImageElement>('.avatar')?.src
|
||
}" alt="" />`;
|
||
|
||
const chatContent = child.querySelector<HTMLDivElement>('.markdown');
|
||
|
||
if (!chatContent) {
|
||
return '';
|
||
}
|
||
|
||
const chatContentClone = chatContent.cloneNode(true) as HTMLDivElement;
|
||
|
||
const codeHeader = chatContentClone.querySelectorAll('.code-header');
|
||
codeHeader.forEach((childElement: any) => {
|
||
childElement.remove();
|
||
});
|
||
|
||
return `<div class="chat-item">
|
||
${avatar}
|
||
${chatContentClone.outerHTML}
|
||
</div>`;
|
||
});
|
||
|
||
const html = htmlTemplate.replace('{{CHAT_CONTENT}}', dom.join('\n'));
|
||
return html;
|
||
};
|
||
|
||
const map: Record<ExportChatType, () => void> = {
|
||
md: () => {
|
||
fileDownload({
|
||
text: chatData.history.map((item) => item.value).join('\n\n'),
|
||
type: 'text/markdown',
|
||
filename: 'chat.md'
|
||
});
|
||
},
|
||
html: () => {
|
||
const html = getHistoryHtml();
|
||
html &&
|
||
fileDownload({
|
||
text: html,
|
||
type: 'text/html',
|
||
filename: '聊天记录.html'
|
||
});
|
||
},
|
||
pdf: () => {
|
||
const html = getHistoryHtml();
|
||
|
||
html &&
|
||
// @ts-ignore
|
||
html2pdf(html, {
|
||
margin: 0,
|
||
filename: `聊天记录.pdf`
|
||
});
|
||
}
|
||
};
|
||
|
||
map[type]();
|
||
},
|
||
[chatData.history]
|
||
);
|
||
|
||
// delete history and reload history
|
||
const onclickDelHistory = useCallback(
|
||
async (historyId: string) => {
|
||
await delChatHistoryById(historyId);
|
||
loadHistory({ pageNum: 1, init: true });
|
||
},
|
||
[loadHistory]
|
||
);
|
||
|
||
// 获取对话信息
|
||
const loadChatInfo = useCallback(
|
||
async ({
|
||
modelId,
|
||
chatId,
|
||
isLoading = false
|
||
}: {
|
||
modelId: string;
|
||
chatId: string;
|
||
isLoading?: boolean;
|
||
}) => {
|
||
isLoading && setIsLoading(true);
|
||
try {
|
||
const res = await getInitChatSiteInfo(modelId, chatId);
|
||
|
||
setChatData({
|
||
...res,
|
||
history: res.history.map((item) => ({
|
||
...item,
|
||
status: 'finish'
|
||
}))
|
||
});
|
||
if (res.history.length > 0) {
|
||
setTimeout(() => {
|
||
scrollToBottom('auto');
|
||
}, 300);
|
||
}
|
||
|
||
// 空 modelId 请求, 重定向到新的 model 聊天
|
||
if (res.modelId !== modelId) {
|
||
setForbidLoadChatData(true);
|
||
router.replace(`/chat?modelId=${res.modelId}`);
|
||
}
|
||
} catch (e: any) {
|
||
// reset all chat tore
|
||
setLastChatModelId('');
|
||
setLastChatId('');
|
||
setChatData();
|
||
loadHistory({ pageNum: 1, init: true });
|
||
router.replace('/chat');
|
||
}
|
||
setIsLoading(false);
|
||
return null;
|
||
},
|
||
[
|
||
router,
|
||
loadHistory,
|
||
setForbidLoadChatData,
|
||
scrollToBottom,
|
||
setChatData,
|
||
setIsLoading,
|
||
setLastChatId,
|
||
setLastChatModelId
|
||
]
|
||
);
|
||
// 初始化聊天框
|
||
const { isLoading } = useQuery(['init', modelId, chatId], () => {
|
||
// pc: redirect to latest model chat
|
||
if (!modelId && lastChatModelId) {
|
||
router.replace(`/chat?modelId=${lastChatModelId}&chatId=${lastChatId}`);
|
||
return null;
|
||
}
|
||
|
||
// store id
|
||
modelId && setLastChatModelId(modelId);
|
||
setLastChatId(chatId);
|
||
|
||
if (forbidLoadChatData) {
|
||
setForbidLoadChatData(false);
|
||
return null;
|
||
}
|
||
|
||
return loadChatInfo({
|
||
modelId,
|
||
chatId
|
||
});
|
||
});
|
||
|
||
useEffect(() => {
|
||
return () => {
|
||
isLeavePage.current = true;
|
||
controller.current?.abort();
|
||
};
|
||
}, [modelId, chatId]);
|
||
|
||
return (
|
||
<Flex
|
||
h={'100%'}
|
||
flexDirection={['column', 'row']}
|
||
backgroundColor={useColorModeValue('white', '')}
|
||
>
|
||
{/* pc always show history. phone is only show when modelId is present */}
|
||
{isPc || !modelId ? (
|
||
<Box flex={[1, '0 0 250px']} w={['100%', 0]} h={'100%'}>
|
||
<History
|
||
onclickDelHistory={onclickDelHistory}
|
||
onclickExportChat={onclickExportChat}
|
||
isPcDevice={isPcDevice}
|
||
/>
|
||
</Box>
|
||
) : (
|
||
<Box
|
||
h={'44px'}
|
||
borderBottom={'1px solid '}
|
||
borderBottomColor={useColorModeValue('gray.200', 'gray.700')}
|
||
>
|
||
<Flex
|
||
alignItems={'center'}
|
||
h={'100%'}
|
||
justifyContent={'space-between'}
|
||
backgroundColor={useColorModeValue('white', 'gray.700')}
|
||
color={useColorModeValue('blackAlpha.700', 'white')}
|
||
px={5}
|
||
>
|
||
<MyIcon
|
||
name={'tabbarMore'}
|
||
w={'14px'}
|
||
h={'14px'}
|
||
color={useColorModeValue('blackAlpha.700', 'white')}
|
||
onClick={onOpenSlider}
|
||
/>
|
||
<Box>{chatData.model.name}</Box>
|
||
{chatId && (
|
||
<Menu autoSelect={false}>
|
||
<MenuButton lineHeight={1}>
|
||
<MyIcon
|
||
name={'more'}
|
||
w={'16px'}
|
||
h={'16px'}
|
||
color={useColorModeValue('blackAlpha.700', 'white')}
|
||
/>
|
||
</MenuButton>
|
||
<MenuList minW={`90px !important`}>
|
||
<MenuItem onClick={() => router.replace(`/chat?modelId=${modelId}`)}>
|
||
新对话
|
||
</MenuItem>
|
||
<MenuItem
|
||
onClick={async () => {
|
||
try {
|
||
setIsLoading(true);
|
||
await onclickDelHistory(chatData.chatId);
|
||
router.replace(`/chat?modelId=${modelId}`);
|
||
} catch (err) {
|
||
console.log(err);
|
||
}
|
||
setIsLoading(false);
|
||
}}
|
||
>
|
||
删除记录
|
||
</MenuItem>
|
||
<MenuItem onClick={() => onclickExportChat('html')}>导出HTML格式</MenuItem>
|
||
<MenuItem onClick={() => onclickExportChat('pdf')}>导出PDF格式</MenuItem>
|
||
<MenuItem onClick={() => onclickExportChat('md')}>导出Markdown格式</MenuItem>
|
||
</MenuList>
|
||
</Menu>
|
||
)}
|
||
</Flex>
|
||
<Drawer isOpen={isOpenSlider} placement="left" size={'xs'} onClose={onCloseSlider}>
|
||
<DrawerOverlay backgroundColor={'rgba(255,255,255,0.5)'} />
|
||
<DrawerContent maxWidth={'250px'}>
|
||
<PhoneSliderBar chatId={chatId} modelId={modelId} onClose={onCloseSlider} />
|
||
</DrawerContent>
|
||
</Drawer>
|
||
</Box>
|
||
)}
|
||
|
||
{/* 聊天内容 */}
|
||
{modelId && (
|
||
<Flex
|
||
position={'relative'}
|
||
h={[0, '100%']}
|
||
w={['100%', 0]}
|
||
flex={'1 0 0'}
|
||
flexDirection={'column'}
|
||
>
|
||
<Box
|
||
id={'history'}
|
||
ref={ChatBox}
|
||
pb={[4, 0]}
|
||
flex={'1 0 0'}
|
||
h={0}
|
||
w={'100%'}
|
||
overflow={'overlay'}
|
||
>
|
||
{chatData.history.map((item, index) => (
|
||
<Box
|
||
key={item._id}
|
||
py={[6, 9]}
|
||
px={[2, 4]}
|
||
backgroundColor={
|
||
index % 2 !== 0 ? useColorModeValue('blackAlpha.50', 'gray.700') : ''
|
||
}
|
||
color={useColorModeValue('blackAlpha.700', 'white')}
|
||
borderBottom={'1px solid rgba(0,0,0,0.1)'}
|
||
>
|
||
<Flex maxW={'750px'} m={'auto'} alignItems={'flex-start'}>
|
||
<Menu autoSelect={false}>
|
||
<MenuButton as={Box} mr={[1, 4]} cursor={'pointer'}>
|
||
<Image
|
||
className="avatar"
|
||
src={
|
||
item.obj === 'Human'
|
||
? userInfo?.avatar
|
||
: chatData.model.avatar || LOGO_ICON
|
||
}
|
||
alt="avatar"
|
||
w={['20px', '30px']}
|
||
maxH={'50px'}
|
||
objectFit={'contain'}
|
||
/>
|
||
</MenuButton>
|
||
<MenuList fontSize={'sm'}>
|
||
{chatData.model.canUse && item.obj === 'AI' && (
|
||
<MenuItem onClick={() => router.push(`/model?modelId=${chatData.modelId}`)}>
|
||
AI助手详情
|
||
</MenuItem>
|
||
)}
|
||
<MenuItem onClick={() => onclickCopy(item.value)}>复制</MenuItem>
|
||
<MenuItem onClick={() => delChatRecord(index, item._id)}>删除该行</MenuItem>
|
||
</MenuList>
|
||
</Menu>
|
||
<Box flex={'1 0 0'} w={0} overflow={'hidden'}>
|
||
{item.obj === 'AI' ? (
|
||
<>
|
||
<Markdown
|
||
source={item.value}
|
||
isChatting={isChatting && index === chatData.history.length - 1}
|
||
/>
|
||
{item.systemPrompt && (
|
||
<Button
|
||
size={'xs'}
|
||
mt={2}
|
||
fontWeight={'normal'}
|
||
colorScheme={'gray'}
|
||
variant={'outline'}
|
||
onClick={() => setShowSystemPrompt(item.systemPrompt || '')}
|
||
>
|
||
查看提示词
|
||
</Button>
|
||
)}
|
||
</>
|
||
) : (
|
||
<Box className="markdown" whiteSpace={'pre-wrap'}>
|
||
<Box as={'p'}>{item.value}</Box>
|
||
</Box>
|
||
)}
|
||
</Box>
|
||
{/* copy and clear icon */}
|
||
{isPc && (
|
||
<Flex h={'100%'} flexDirection={'column'} ml={2} w={'14px'} height={'100%'}>
|
||
<Box minH={'40px'} flex={1}>
|
||
<MyIcon
|
||
name="copy"
|
||
w={'14px'}
|
||
cursor={'pointer'}
|
||
color={'blackAlpha.700'}
|
||
onClick={() => onclickCopy(item.value)}
|
||
/>
|
||
</Box>
|
||
<MyIcon
|
||
name="delete"
|
||
w={'14px'}
|
||
cursor={'pointer'}
|
||
color={'blackAlpha.700'}
|
||
_hover={{
|
||
color: 'red.600'
|
||
}}
|
||
onClick={() => delChatRecord(index, item._id)}
|
||
/>
|
||
</Flex>
|
||
)}
|
||
</Flex>
|
||
</Box>
|
||
))}
|
||
{chatData.history.length === 0 && <Empty model={chatData.model} />}
|
||
</Box>
|
||
{/* 发送区 */}
|
||
{chatData.model.canUse ? (
|
||
<Box m={['0 auto', '20px auto']} w={'100%'} maxW={['auto', 'min(750px, 100%)']}>
|
||
<Box
|
||
py={'18px'}
|
||
position={'relative'}
|
||
boxShadow={`0 0 15px rgba(0,0,0,0.1)`}
|
||
borderTop={['1px solid', 0]}
|
||
borderTopColor={useColorModeValue('gray.200', 'gray.700')}
|
||
borderRadius={['none', 'md']}
|
||
backgroundColor={useColorModeValue('white', 'gray.700')}
|
||
>
|
||
{/* 输入框 */}
|
||
<Textarea
|
||
ref={TextareaDom}
|
||
py={0}
|
||
pr={['45px', '55px']}
|
||
border={'none'}
|
||
_focusVisible={{
|
||
border: 'none'
|
||
}}
|
||
placeholder="提问"
|
||
resize={'none'}
|
||
value={inputVal}
|
||
rows={1}
|
||
height={'22px'}
|
||
lineHeight={'22px'}
|
||
maxHeight={'150px'}
|
||
maxLength={-1}
|
||
overflowY={'auto'}
|
||
whiteSpace={'pre-wrap'}
|
||
wordBreak={'break-all'}
|
||
boxShadow={'none !important'}
|
||
color={useColorModeValue('blackAlpha.700', 'white')}
|
||
onChange={(e) => {
|
||
const textarea = e.target;
|
||
setInputVal(textarea.value);
|
||
textarea.style.height = textareaMinH;
|
||
textarea.style.height = `${textarea.scrollHeight}px`;
|
||
}}
|
||
onKeyDown={(e) => {
|
||
// 触发快捷发送
|
||
if (isPc && e.keyCode === 13 && !e.shiftKey) {
|
||
sendPrompt();
|
||
e.preventDefault();
|
||
}
|
||
// 全选内容
|
||
// @ts-ignore
|
||
e.key === 'a' && e.ctrlKey && e.target?.select();
|
||
}}
|
||
/>
|
||
{/* 发送和等待按键 */}
|
||
<Flex
|
||
alignItems={'center'}
|
||
justifyContent={'center'}
|
||
h={'25px'}
|
||
w={'25px'}
|
||
position={'absolute'}
|
||
right={['12px', '20px']}
|
||
bottom={'15px'}
|
||
>
|
||
{isChatting ? (
|
||
<MyIcon
|
||
className={styles.stopIcon}
|
||
width={['22px', '25px']}
|
||
height={['22px', '25px']}
|
||
cursor={'pointer'}
|
||
name={'stop'}
|
||
color={useColorModeValue('gray.500', 'white')}
|
||
onClick={() => {
|
||
controller.current?.abort();
|
||
}}
|
||
/>
|
||
) : (
|
||
<MyIcon
|
||
name={'chatSend'}
|
||
width={['18px', '20px']}
|
||
height={['18px', '20px']}
|
||
cursor={'pointer'}
|
||
color={useColorModeValue('gray.500', 'white')}
|
||
onClick={sendPrompt}
|
||
/>
|
||
)}
|
||
</Flex>
|
||
</Box>
|
||
</Box>
|
||
) : (
|
||
<Box m={['0 auto', '20px auto']} w={'100%'} textAlign={'center'} color={'myGray.500'}>
|
||
作者已关闭分享
|
||
</Box>
|
||
)}
|
||
|
||
<Loading loading={isLoading} fixed={false} />
|
||
</Flex>
|
||
)}
|
||
|
||
{/* system prompt show modal */}
|
||
{
|
||
<Modal isOpen={!!showSystemPrompt} onClose={() => setShowSystemPrompt('')}>
|
||
<ModalOverlay />
|
||
<ModalContent maxW={'min(90vw, 600px)'} pr={2} maxH={'80vh'} overflowY={'auto'}>
|
||
<ModalCloseButton />
|
||
<ModalBody pt={5} whiteSpace={'pre-wrap'} textAlign={'justify'}>
|
||
{showSystemPrompt}
|
||
</ModalBody>
|
||
</ModalContent>
|
||
</Modal>
|
||
}
|
||
</Flex>
|
||
);
|
||
};
|
||
|
||
Chat.getInitialProps = ({ query, req }: any) => {
|
||
return {
|
||
modelId: query?.modelId || '',
|
||
chatId: query?.chatId || '',
|
||
isPcDevice: !/Mobile/.test(req ? req.headers['user-agent'] : navigator.userAgent)
|
||
};
|
||
};
|
||
|
||
export default Chat;
|