mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-24 05:23:57 +00:00

* feat: 新增对话框底部复制按钮 * fix: 对话框底部复制按钮定位问题 * perf: 优化应用切换逻辑 * perf: 删除不必要代码 * fix: 修复编译失败bug&&修复冲突错误 * feat: 新增对话框底部复制按钮 * fix: 对话框底部复制按钮定位问题 * feat: 过长引用折叠功能 * merge: 合并主仓库代码 * refactor: 删除不必要代码 * perf: 优化应用切换逻辑 * perf: 删除不必要代码 * fix: 修复编译失败bug&&修复冲突错误 * merge * merge: 处理冲突 * refactor: 重构代码删除不必要代码 * perf: 删除不必要代码
350 lines
11 KiB
TypeScript
350 lines
11 KiB
TypeScript
import React, { useCallback, useState } from 'react';
|
|
import NextHead from '@/components/common/NextHead';
|
|
import { useRouter } from 'next/router';
|
|
import { delChatRecordById, getChatHistories, getInitChatInfo } from '@/web/core/chat/api';
|
|
import { Box, Flex, Drawer, DrawerOverlay, DrawerContent, useTheme } from '@chakra-ui/react';
|
|
import { useSystemStore } from '@/web/common/system/useSystemStore';
|
|
import { streamFetch } from '@/web/common/api/fetch';
|
|
import { useChatStore } from '@/web/core/chat/context/storeChat';
|
|
import { useToast } from '@fastgpt/web/hooks/useToast';
|
|
import { useTranslation } from 'next-i18next';
|
|
|
|
import type { StartChatFnProps } from '@/components/core/chat/ChatContainer/type';
|
|
import PageContainer from '@/components/PageContainer';
|
|
import SideBar from '@/components/SideBar';
|
|
import ChatHistorySlider from './components/ChatHistorySlider';
|
|
import SliderApps from './components/SliderApps';
|
|
import ChatHeader from './components/ChatHeader';
|
|
import { useUserStore } from '@/web/support/user/useUserStore';
|
|
import { serviceSideProps } from '@/web/common/utils/i18n';
|
|
import { checkChatSupportSelectFileByChatModels } from '@/web/core/chat/utils';
|
|
import { getChatTitleFromChatMessage } from '@fastgpt/global/core/chat/utils';
|
|
import { ChatStatusEnum } from '@fastgpt/global/core/chat/constants';
|
|
import { GPTMessages2Chats } from '@fastgpt/global/core/chat/adapt';
|
|
import { getMyApps } from '@/web/core/app/api';
|
|
import { useRequest2 } from '@fastgpt/web/hooks/useRequest';
|
|
|
|
import { useMount } from 'ahooks';
|
|
import { getNanoid } from '@fastgpt/global/common/string/tools';
|
|
import { InitChatResponse } from '@/global/core/chat/api';
|
|
import { defaultChatData } from '@/global/core/chat/constants';
|
|
import ChatContextProvider, { ChatContext } from '@/web/core/chat/context/chatContext';
|
|
import { AppListItemType } from '@fastgpt/global/core/app/type';
|
|
import { useContextSelector } from 'use-context-selector';
|
|
import { AppTypeEnum } from '@fastgpt/global/core/app/constants';
|
|
import dynamic from 'next/dynamic';
|
|
import { useChat } from '@/components/core/chat/ChatContainer/useChat';
|
|
import ChatBox from '@/components/core/chat/ChatContainer/ChatBox';
|
|
import { useSystem } from '@fastgpt/web/hooks/useSystem';
|
|
|
|
const CustomPluginRunBox = dynamic(() => import('./components/CustomPluginRunBox'));
|
|
|
|
type Props = { appId: string; chatId: string };
|
|
|
|
const Chat = ({
|
|
appId,
|
|
chatId,
|
|
myApps
|
|
}: Props & {
|
|
myApps: AppListItemType[];
|
|
}) => {
|
|
const router = useRouter();
|
|
const theme = useTheme();
|
|
const { t } = useTranslation();
|
|
|
|
const { setLastChatAppId } = useChatStore();
|
|
const {
|
|
loadHistories,
|
|
onUpdateHistory,
|
|
onClearHistories,
|
|
onDelHistory,
|
|
isOpenSlider,
|
|
onCloseSlider,
|
|
forbidLoadChat,
|
|
onChangeChatId
|
|
} = useContextSelector(ChatContext, (v) => v);
|
|
const {
|
|
ChatBoxRef,
|
|
chatRecords,
|
|
setChatRecords,
|
|
variablesForm,
|
|
pluginRunTab,
|
|
setPluginRunTab,
|
|
resetChatRecords
|
|
} = useChat();
|
|
|
|
const { userInfo } = useUserStore();
|
|
const { isPc } = useSystem();
|
|
|
|
// get chat app info
|
|
const [chatData, setChatData] = useState<InitChatResponse>(defaultChatData);
|
|
const isPlugin = chatData.app.type === AppTypeEnum.plugin;
|
|
|
|
const { loading } = useRequest2(
|
|
async () => {
|
|
if (!appId || forbidLoadChat.current) return;
|
|
|
|
const res = await getInitChatInfo({ appId, chatId });
|
|
setChatData(res);
|
|
|
|
const history = res.history.map((item) => ({
|
|
...item,
|
|
dataId: item.dataId || getNanoid(),
|
|
status: ChatStatusEnum.finish
|
|
}));
|
|
|
|
// reset chat records
|
|
resetChatRecords({
|
|
records: history,
|
|
variables: res.variables
|
|
});
|
|
|
|
setLastChatAppId(appId);
|
|
},
|
|
{
|
|
manual: false,
|
|
refreshDeps: [appId, chatId],
|
|
onError(e: any) {
|
|
setLastChatAppId('');
|
|
|
|
// reset all chat tore
|
|
if (e?.code === 501) {
|
|
router.replace('/app/list');
|
|
} else if (chatId) {
|
|
onChangeChatId('');
|
|
}
|
|
},
|
|
onFinally() {
|
|
forbidLoadChat.current = false;
|
|
}
|
|
}
|
|
);
|
|
|
|
const onStartChat = useCallback(
|
|
async ({
|
|
messages,
|
|
responseChatItemId,
|
|
controller,
|
|
generatingMessage,
|
|
variables
|
|
}: StartChatFnProps) => {
|
|
const completionChatId = chatId || getNanoid();
|
|
// Just send a user prompt
|
|
const histories = messages.slice(-1);
|
|
|
|
const { responseText, responseData } = await streamFetch({
|
|
data: {
|
|
messages: histories,
|
|
variables,
|
|
responseChatItemId,
|
|
appId,
|
|
chatId: completionChatId
|
|
},
|
|
onMessage: generatingMessage,
|
|
abortCtrl: controller
|
|
});
|
|
|
|
const newTitle = getChatTitleFromChatMessage(GPTMessages2Chats(histories)[0]);
|
|
|
|
// new chat
|
|
if (completionChatId !== chatId) {
|
|
if (controller.signal.reason !== 'leave') {
|
|
onChangeChatId(completionChatId, true);
|
|
}
|
|
}
|
|
loadHistories();
|
|
|
|
// update chat window
|
|
setChatData((state) => ({
|
|
...state,
|
|
title: newTitle
|
|
}));
|
|
|
|
return { responseText, responseData, isNewChat: forbidLoadChat.current };
|
|
},
|
|
[appId, chatId, forbidLoadChat, loadHistories, onChangeChatId]
|
|
);
|
|
|
|
return (
|
|
<Flex h={'100%'}>
|
|
<NextHead title={chatData.app.name} icon={chatData.app.avatar}></NextHead>
|
|
{/* pc show myself apps */}
|
|
{isPc && (
|
|
<Box borderRight={theme.borders.base} w={'220px'} flexShrink={0}>
|
|
<SliderApps apps={myApps} activeAppId={appId} />
|
|
</Box>
|
|
)}
|
|
|
|
<PageContainer isLoading={loading} flex={'1 0 0'} w={0} p={[0, '16px']} position={'relative'}>
|
|
<Flex h={'100%'} flexDirection={['column', 'row']}>
|
|
{/* pc always show history. */}
|
|
{((children: React.ReactNode) => {
|
|
return isPc || !appId ? (
|
|
<SideBar>{children}</SideBar>
|
|
) : (
|
|
<Drawer
|
|
isOpen={isOpenSlider}
|
|
placement="left"
|
|
autoFocus={false}
|
|
size={'xs'}
|
|
onClose={onCloseSlider}
|
|
>
|
|
<DrawerOverlay backgroundColor={'rgba(255,255,255,0.5)'} />
|
|
<DrawerContent maxWidth={'75vw'}>{children}</DrawerContent>
|
|
</Drawer>
|
|
);
|
|
})(
|
|
<ChatHistorySlider
|
|
apps={myApps}
|
|
confirmClearText={t('common:core.chat.Confirm to clear history')}
|
|
appId={appId}
|
|
appName={chatData.app.name}
|
|
appAvatar={chatData.app.avatar}
|
|
onDelHistory={(e) => onDelHistory({ ...e, appId })}
|
|
onClearHistory={() => {
|
|
onClearHistories({ appId });
|
|
}}
|
|
onSetHistoryTop={(e) => {
|
|
onUpdateHistory({ ...e, appId });
|
|
}}
|
|
onSetCustomTitle={async (e) => {
|
|
onUpdateHistory({
|
|
appId,
|
|
chatId: e.chatId,
|
|
customTitle: e.title
|
|
});
|
|
}}
|
|
/>
|
|
)}
|
|
{/* chat container */}
|
|
<Flex
|
|
position={'relative'}
|
|
h={[0, '100%']}
|
|
w={['100%', 0]}
|
|
flex={'1 0 0'}
|
|
flexDirection={'column'}
|
|
>
|
|
{/* header */}
|
|
<ChatHeader
|
|
apps={myApps}
|
|
chatData={chatData}
|
|
history={chatRecords}
|
|
onRoute2AppDetail={() => router.push(`/app/detail?appId=${appId}`)}
|
|
showHistory
|
|
/>
|
|
|
|
{/* chat box */}
|
|
<Box flex={'1 0 0'} bg={'white'}>
|
|
{isPlugin ? (
|
|
<CustomPluginRunBox
|
|
pluginInputs={chatData.app.pluginInputs}
|
|
variablesForm={variablesForm}
|
|
histories={chatRecords}
|
|
setHistories={setChatRecords}
|
|
appId={chatData.appId}
|
|
tab={pluginRunTab}
|
|
setTab={setPluginRunTab}
|
|
onNewChat={() => onChangeChatId(getNanoid())}
|
|
onStartChat={onStartChat}
|
|
/>
|
|
) : (
|
|
<ChatBox
|
|
ref={ChatBoxRef}
|
|
chatHistories={chatRecords}
|
|
setChatHistories={setChatRecords}
|
|
variablesForm={variablesForm}
|
|
showEmptyIntro
|
|
appAvatar={chatData.app.avatar}
|
|
userAvatar={userInfo?.avatar}
|
|
chatConfig={chatData.app?.chatConfig}
|
|
showFileSelector={checkChatSupportSelectFileByChatModels(chatData.app.chatModels)}
|
|
feedbackType={'user'}
|
|
onStartChat={onStartChat}
|
|
onDelMessage={({ contentId }) => delChatRecordById({ contentId, appId, chatId })}
|
|
appId={appId}
|
|
chatId={chatId}
|
|
/>
|
|
)}
|
|
</Box>
|
|
</Flex>
|
|
</Flex>
|
|
</PageContainer>
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
const Render = (props: Props) => {
|
|
const { appId } = props;
|
|
const { t } = useTranslation();
|
|
const { toast } = useToast();
|
|
const router = useRouter();
|
|
|
|
const { lastChatAppId, lastChatId } = useChatStore();
|
|
|
|
const { data: myApps = [], runAsync: loadMyApps } = useRequest2(
|
|
() => getMyApps({ getRecentlyChat: true }),
|
|
{
|
|
manual: false
|
|
}
|
|
);
|
|
|
|
const { data: histories = [], runAsync: loadHistories } = useRequest2(
|
|
() => (appId ? getChatHistories({ appId }) : Promise.resolve([])),
|
|
{
|
|
manual: false,
|
|
refreshDeps: [appId]
|
|
}
|
|
);
|
|
|
|
// 初始化聊天框
|
|
useMount(async () => {
|
|
// pc: redirect to latest model chat
|
|
if (!appId) {
|
|
if (lastChatAppId) {
|
|
return router.replace({
|
|
query: {
|
|
...router.query,
|
|
appId: lastChatAppId,
|
|
chatId: lastChatId
|
|
}
|
|
});
|
|
}
|
|
|
|
const apps = await loadMyApps();
|
|
if (apps.length === 0) {
|
|
toast({
|
|
status: 'error',
|
|
title: t('common:core.chat.You need to a chat app')
|
|
});
|
|
router.replace('/app/list');
|
|
} else {
|
|
router.replace({
|
|
query: {
|
|
...router.query,
|
|
appId: apps[0]._id,
|
|
chatId: ''
|
|
}
|
|
});
|
|
}
|
|
}
|
|
});
|
|
|
|
return (
|
|
<ChatContextProvider histories={histories} loadHistories={loadHistories}>
|
|
<Chat {...props} myApps={myApps} />
|
|
</ChatContextProvider>
|
|
);
|
|
};
|
|
|
|
export async function getServerSideProps(context: any) {
|
|
return {
|
|
props: {
|
|
appId: context?.query?.appId || '',
|
|
chatId: context?.query?.chatId || '',
|
|
...(await serviceSideProps(context, ['file']))
|
|
}
|
|
};
|
|
}
|
|
|
|
export default Render;
|