mirror of
https://github.com/labring/FastGPT.git
synced 2025-08-05 22:55:27 +00:00
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import { useChatBox } from '@/components/ChatBox';
|
|
import { ChatItemType } from '@/types/chat';
|
|
import { Menu, MenuButton, MenuList, MenuItem, Box } from '@chakra-ui/react';
|
|
import MyIcon from '@/components/Icon';
|
|
import { useRouter } from 'next/router';
|
|
|
|
const ToolMenu = ({ history }: { history: ChatItemType[] }) => {
|
|
const { onExportChat } = useChatBox();
|
|
const router = useRouter();
|
|
const { appId, shareId } = router.query;
|
|
|
|
const menuList = useMemo(
|
|
() => [
|
|
{
|
|
icon: 'chat',
|
|
label: '新对话',
|
|
onClick: () => {
|
|
router.replace({
|
|
query: {
|
|
appId,
|
|
shareId
|
|
}
|
|
});
|
|
}
|
|
},
|
|
{
|
|
icon: 'apiLight',
|
|
label: 'HTML导出',
|
|
onClick: () => onExportChat({ type: 'html', history })
|
|
},
|
|
{
|
|
icon: 'markdown',
|
|
label: 'Markdown导出',
|
|
onClick: () => onExportChat({ type: 'md', history })
|
|
},
|
|
{ icon: 'pdf', label: 'PDF导出', onClick: () => onExportChat({ type: 'pdf', history }) }
|
|
],
|
|
[appId, history, onExportChat, router, shareId]
|
|
);
|
|
|
|
return history.length > 0 ? (
|
|
<Menu autoSelect={false} isLazy>
|
|
<MenuButton
|
|
_hover={{ bg: 'myWhite.600 ' }}
|
|
cursor={'pointer'}
|
|
borderRadius={'md'}
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
<MyIcon name={'more'} w={'14px'} p={2} />
|
|
</MenuButton>
|
|
<MenuList color={'myGray.700'} minW={`120px !important`} zIndex={10}>
|
|
{menuList.map((item) => (
|
|
<MenuItem key={item.label} onClick={item.onClick} py={[2, 3]}>
|
|
<MyIcon name={item.icon as any} w={['14px', '16px']} />
|
|
<Box ml={[1, 2]}>{item.label}</Box>
|
|
</MenuItem>
|
|
))}
|
|
</MenuList>
|
|
</Menu>
|
|
) : (
|
|
<Box w={'28px'} h={'28px'} />
|
|
);
|
|
};
|
|
|
|
export default ToolMenu;
|