* Dashboard submenu (#4545) * add app submenu (#4452) * add app submenu * fix * width & i18n * optimize submenu code (#4515) * optimize submenu code * fix * fix * fix * fix ts * perf: dashboard sub menu * doc --------- Co-authored-by: heheer <heheer@sealos.io> * feat: value format test * doc * Mcp export (#4555) * feat: mcp server * feat: mcp server * feat: mcp server build * update doc * perf: path selector (#4556) * perf: path selector * fix: docker file path * perf: add image endpoint to dataset search (#4557) * perf: add image endpoint to dataset search * fix: mcp_server url * human in loop (#4558) * Support interactive nodes for loops, and enhance the function of merging nested and loop node history messages. (#4552) * feat: add LoopInteractive definition * feat: Support LoopInteractive type and update related logic * fix: Refactor loop handling logic and improve output value initialization * feat: Add mergeSignId to dispatchLoop and dispatchRunAppNode responses * feat: Enhance mergeChatResponseData to recursively merge plugin details and improve response handling * refactor: Remove redundant comments in mergeChatResponseData for clarity * perf: loop interactive * perf: human in loop --------- Co-authored-by: Theresa <63280168+sd0ric4@users.noreply.github.com> * mcp server ui * integrate mcp (#4549) * integrate mcp * delete unused code * fix ts * bug fix * fix * support whole mcp tools * add try catch * fix * fix * fix ts * fix test * fix ts * fix: interactive in v1 completions * doc * fix: router path * fix mcp integrate (#4563) * fix mcp integrate * fix ui * fix: mcp ux * feat: mcp call title * remove repeat loading * fix mcp tools avatar (#4564) * fix * fix avatar * fix update version * update doc * fix: value format * close server and remove cache * perf: avatar --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: Theresa <63280168+sd0ric4@users.noreply.github.com>
323 lines
11 KiB
TypeScript
323 lines
11 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import { Box, Button, Flex, useTheme, IconButton } from '@chakra-ui/react';
|
|
import { useSystem } from '@fastgpt/web/hooks/useSystem';
|
|
import { useEditTitle } from '@/web/common/hooks/useEditTitle';
|
|
import { useRouter } from 'next/router';
|
|
import Avatar from '@fastgpt/web/components/common/Avatar';
|
|
import MyTooltip from '@fastgpt/web/components/common/MyTooltip';
|
|
import MyIcon from '@fastgpt/web/components/common/Icon';
|
|
import { useTranslation } from 'next-i18next';
|
|
import { useConfirm } from '@fastgpt/web/hooks/useConfirm';
|
|
import { useUserStore } from '@/web/support/user/useUserStore';
|
|
import MyMenu from '@fastgpt/web/components/common/MyMenu';
|
|
import { useContextSelector } from 'use-context-selector';
|
|
import { ChatContext } from '@/web/core/chat/context/chatContext';
|
|
import MyBox from '@fastgpt/web/components/common/MyBox';
|
|
import { formatTimeToChatTime } from '@fastgpt/global/common/string/time';
|
|
import { ChatItemContext } from '@/web/core/chat/context/chatItemContext';
|
|
import { useChatStore } from '@/web/core/chat/context/useChatStore';
|
|
|
|
type HistoryItemType = {
|
|
id: string;
|
|
title: string;
|
|
customTitle?: string;
|
|
top?: boolean;
|
|
updateTime: Date;
|
|
};
|
|
|
|
const ChatHistorySlider = ({ confirmClearText }: { confirmClearText: string }) => {
|
|
const theme = useTheme();
|
|
const router = useRouter();
|
|
|
|
const { t } = useTranslation();
|
|
|
|
const { isPc } = useSystem();
|
|
const { userInfo } = useUserStore();
|
|
|
|
const { appId, chatId: activeChatId } = useChatStore();
|
|
const onChangeChatId = useContextSelector(ChatContext, (v) => v.onChangeChatId);
|
|
const isLoading = useContextSelector(ChatContext, (v) => v.isLoading);
|
|
const ScrollData = useContextSelector(ChatContext, (v) => v.ScrollData);
|
|
const histories = useContextSelector(ChatContext, (v) => v.histories);
|
|
const onDelHistory = useContextSelector(ChatContext, (v) => v.onDelHistory);
|
|
const onClearHistory = useContextSelector(ChatContext, (v) => v.onClearHistories);
|
|
const onUpdateHistory = useContextSelector(ChatContext, (v) => v.onUpdateHistory);
|
|
|
|
const appName = useContextSelector(ChatItemContext, (v) => v.chatBoxData?.app.name);
|
|
const appAvatar = useContextSelector(ChatItemContext, (v) => v.chatBoxData?.app.avatar);
|
|
const showRouteToAppDetail = useContextSelector(ChatItemContext, (v) => v.showRouteToAppDetail);
|
|
const setQuoteData = useContextSelector(ChatItemContext, (v) => v.setQuoteData);
|
|
|
|
const concatHistory = useMemo(() => {
|
|
const formatHistories: HistoryItemType[] = histories.map((item) => {
|
|
return {
|
|
id: item.chatId,
|
|
title: item.title,
|
|
customTitle: item.customTitle,
|
|
top: item.top,
|
|
updateTime: item.updateTime
|
|
};
|
|
});
|
|
const newChat: HistoryItemType = {
|
|
id: activeChatId,
|
|
title: t('common:core.chat.New Chat'),
|
|
updateTime: new Date()
|
|
};
|
|
const activeChat = histories.find((item) => item.chatId === activeChatId);
|
|
|
|
return !activeChat ? [newChat].concat(formatHistories) : formatHistories;
|
|
}, [activeChatId, histories, t]);
|
|
|
|
// custom title edit
|
|
const { onOpenModal, EditModal: EditTitleModal } = useEditTitle({
|
|
title: t('common:core.chat.Custom History Title'),
|
|
placeholder: t('common:core.chat.Custom History Title Description')
|
|
});
|
|
const { openConfirm, ConfirmModal } = useConfirm({
|
|
content: confirmClearText
|
|
});
|
|
|
|
const canRouteToDetail = useMemo(
|
|
() => appId && userInfo?.team.permission.hasWritePer && showRouteToAppDetail,
|
|
[appId, userInfo?.team.permission.hasWritePer, showRouteToAppDetail]
|
|
);
|
|
|
|
return (
|
|
<MyBox
|
|
display={'flex'}
|
|
flexDirection={'column'}
|
|
w={'100%'}
|
|
h={'100%'}
|
|
bg={'white'}
|
|
borderRight={['', theme.borders.base]}
|
|
whiteSpace={'nowrap'}
|
|
>
|
|
{isPc && (
|
|
<MyTooltip label={canRouteToDetail ? t('app:app_detail') : ''} offset={[0, 0]}>
|
|
<Flex
|
|
pt={5}
|
|
pb={2}
|
|
px={[2, 5]}
|
|
alignItems={'center'}
|
|
cursor={canRouteToDetail ? 'pointer' : 'default'}
|
|
fontSize={'sm'}
|
|
onClick={() =>
|
|
canRouteToDetail &&
|
|
router.push({
|
|
pathname: '/app/detail',
|
|
query: { appId }
|
|
})
|
|
}
|
|
>
|
|
<Avatar src={appAvatar} borderRadius={'md'} />
|
|
<Box flex={'1 0 0'} w={0} ml={2} fontWeight={'bold'} className={'textEllipsis'}>
|
|
{appName}
|
|
</Box>
|
|
</Flex>
|
|
</MyTooltip>
|
|
)}
|
|
|
|
{/* menu */}
|
|
<Flex
|
|
w={'100%'}
|
|
px={[2, 5]}
|
|
h={'36px'}
|
|
my={5}
|
|
justify={['space-between', '']}
|
|
alignItems={'center'}
|
|
>
|
|
{!isPc && (
|
|
<Flex height={'100%'} align={'center'} justify={'center'}>
|
|
<MyIcon ml={2} name="core/chat/sideLine" />
|
|
<Box ml={2} fontWeight={'bold'}>
|
|
{t('common:core.chat.History')}
|
|
</Box>
|
|
</Flex>
|
|
)}
|
|
|
|
<Button
|
|
variant={'whitePrimary'}
|
|
flex={['0 0 auto', 1]}
|
|
h={'100%'}
|
|
px={6}
|
|
color={'primary.600'}
|
|
borderRadius={'xl'}
|
|
leftIcon={<MyIcon name={'core/chat/chatLight'} w={'16px'} />}
|
|
overflow={'hidden'}
|
|
onClick={() => {
|
|
onChangeChatId();
|
|
setQuoteData(undefined);
|
|
}}
|
|
>
|
|
{t('common:core.chat.New Chat')}
|
|
</Button>
|
|
{/* Clear */}
|
|
{isPc && histories.length > 0 && (
|
|
<IconButton
|
|
ml={3}
|
|
h={'100%'}
|
|
variant={'whiteDanger'}
|
|
size={'mdSquare'}
|
|
aria-label={''}
|
|
borderRadius={'50%'}
|
|
icon={<MyIcon name={'common/clearLight'} w={'16px'} />}
|
|
onClick={() =>
|
|
openConfirm(() => {
|
|
onClearHistory();
|
|
})()
|
|
}
|
|
/>
|
|
)}
|
|
</Flex>
|
|
|
|
<ScrollData flex={'1 0 0'} h={0} px={[2, 5]} overflow={'overlay'}>
|
|
{/* chat history */}
|
|
<>
|
|
{concatHistory.map((item, i) => (
|
|
<Flex
|
|
position={'relative'}
|
|
key={item.id}
|
|
alignItems={'center'}
|
|
px={4}
|
|
h={'44px'}
|
|
cursor={'pointer'}
|
|
userSelect={'none'}
|
|
borderRadius={'md'}
|
|
fontSize={'sm'}
|
|
_hover={{
|
|
bg: 'myGray.50',
|
|
'& .more': {
|
|
display: 'block'
|
|
},
|
|
'& .time': {
|
|
display: isPc ? 'none' : 'block'
|
|
}
|
|
}}
|
|
bg={item.top ? '#E6F6F6 !important' : ''}
|
|
{...(item.id === activeChatId
|
|
? {
|
|
backgroundColor: 'primary.50 !important',
|
|
color: 'primary.600'
|
|
}
|
|
: {
|
|
onClick: () => {
|
|
onChangeChatId(item.id);
|
|
setQuoteData(undefined);
|
|
}
|
|
})}
|
|
{...(i !== concatHistory.length - 1 && {
|
|
mb: '8px'
|
|
})}
|
|
>
|
|
<MyIcon
|
|
name={item.id === activeChatId ? 'core/chat/chatFill' : 'core/chat/chatLight'}
|
|
w={'16px'}
|
|
/>
|
|
<Box flex={'1 0 0'} ml={3} className="textEllipsis">
|
|
{item.customTitle || item.title}
|
|
</Box>
|
|
{!!item.id && (
|
|
<Flex gap={2} alignItems={'center'}>
|
|
<Box
|
|
className="time"
|
|
display={'block'}
|
|
fontWeight={'400'}
|
|
fontSize={'mini'}
|
|
color={'myGray.500'}
|
|
>
|
|
{t(formatTimeToChatTime(item.updateTime) as any).replace('#', ':')}
|
|
</Box>
|
|
<Box className="more" display={['block', 'none']}>
|
|
<MyMenu
|
|
Button={
|
|
<IconButton
|
|
size={'xs'}
|
|
variant={'whiteBase'}
|
|
icon={<MyIcon name={'more'} w={'14px'} p={1} />}
|
|
aria-label={''}
|
|
/>
|
|
}
|
|
menuList={[
|
|
{
|
|
children: [
|
|
{
|
|
label: item.top
|
|
? t('common:core.chat.Unpin')
|
|
: t('common:core.chat.Pin'),
|
|
icon: 'core/chat/setTopLight',
|
|
onClick: () => {
|
|
onUpdateHistory({
|
|
chatId: item.id,
|
|
top: !item.top
|
|
});
|
|
}
|
|
},
|
|
|
|
{
|
|
label: t('common:common.Custom Title'),
|
|
icon: 'common/customTitleLight',
|
|
onClick: () => {
|
|
onOpenModal({
|
|
defaultVal: item.customTitle || item.title,
|
|
onSuccess: (e) =>
|
|
onUpdateHistory({
|
|
chatId: item.id,
|
|
customTitle: e
|
|
})
|
|
});
|
|
}
|
|
},
|
|
{
|
|
label: t('common:common.Delete'),
|
|
icon: 'delete',
|
|
onClick: () => {
|
|
onDelHistory(item.id);
|
|
if (item.id === activeChatId) {
|
|
onChangeChatId();
|
|
setQuoteData(undefined);
|
|
}
|
|
},
|
|
type: 'danger'
|
|
}
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</Box>
|
|
</Flex>
|
|
)}
|
|
</Flex>
|
|
))}
|
|
</>
|
|
</ScrollData>
|
|
|
|
{/* exec */}
|
|
{!isPc && !!canRouteToDetail && (
|
|
<Flex
|
|
mt={2}
|
|
borderTop={theme.borders.base}
|
|
alignItems={'center'}
|
|
cursor={'pointer'}
|
|
p={3}
|
|
onClick={() => router.push('/dashboard/apps')}
|
|
>
|
|
<IconButton
|
|
mr={3}
|
|
icon={<MyIcon name={'common/backFill'} w={'18px'} color={'primary.500'} />}
|
|
bg={'white'}
|
|
boxShadow={'1px 1px 9px rgba(0,0,0,0.15)'}
|
|
size={'smSquare'}
|
|
borderRadius={'50%'}
|
|
aria-label={''}
|
|
/>
|
|
{t('common:core.chat.Exit Chat')}
|
|
</Flex>
|
|
)}
|
|
<EditTitleModal />
|
|
<ConfirmModal />
|
|
</MyBox>
|
|
);
|
|
};
|
|
|
|
export default ChatHistorySlider;
|