168 lines
4.8 KiB
TypeScript
168 lines
4.8 KiB
TypeScript
import React, { useMemo } from 'react';
|
|
import {
|
|
Box,
|
|
Button,
|
|
Flex,
|
|
useTheme,
|
|
Menu,
|
|
MenuButton,
|
|
MenuList,
|
|
MenuItem
|
|
} from '@chakra-ui/react';
|
|
import MyIcon from '@/components/Icon';
|
|
import { useGlobalStore } from '@/store/global';
|
|
import Avatar from '@/components/Avatar';
|
|
|
|
type HistoryItemType = {
|
|
id: string;
|
|
title: string;
|
|
top?: boolean;
|
|
};
|
|
|
|
const ChatHistorySlider = ({
|
|
appName,
|
|
appAvatar,
|
|
history,
|
|
activeHistoryId,
|
|
onChangeChat,
|
|
onDelHistory,
|
|
onSetHistoryTop,
|
|
onCloseSlider
|
|
}: {
|
|
appName: string;
|
|
appAvatar: string;
|
|
history: HistoryItemType[];
|
|
activeHistoryId: string;
|
|
onChangeChat: (historyId?: string) => void;
|
|
onDelHistory: (historyId: string) => void;
|
|
onSetHistoryTop?: (e: { historyId: string; top: boolean }) => void;
|
|
onCloseSlider: () => void;
|
|
}) => {
|
|
const theme = useTheme();
|
|
const { isPc } = useGlobalStore();
|
|
|
|
const concatHistory = useMemo<HistoryItemType[]>(
|
|
() => (!activeHistoryId ? [{ id: activeHistoryId, title: '新对话' }].concat(history) : history),
|
|
[activeHistoryId, history]
|
|
);
|
|
|
|
return (
|
|
<Flex
|
|
position={'relative'}
|
|
flexDirection={'column'}
|
|
w={'100%'}
|
|
h={'100%'}
|
|
bg={'white'}
|
|
borderRight={['', theme.borders.base]}
|
|
whiteSpace={'nowrap'}
|
|
>
|
|
{isPc && (
|
|
<Flex pt={5} pb={2} px={[2, 5]} alignItems={'center'}>
|
|
<Avatar src={appAvatar} />
|
|
<Box ml={2} fontWeight={'bold'} className={'textEllipsis'}>
|
|
{appName}
|
|
</Box>
|
|
</Flex>
|
|
)}
|
|
{/* 新对话 */}
|
|
<Box w={'100%'} px={[2, 5]} h={'36px'} my={5}>
|
|
<Button
|
|
variant={'base'}
|
|
w={'100%'}
|
|
h={'100%'}
|
|
color={'myBlue.700'}
|
|
borderRadius={'xl'}
|
|
leftIcon={<MyIcon name={'edit'} w={'16px'} />}
|
|
overflow={'hidden'}
|
|
onClick={() => onChangeChat()}
|
|
>
|
|
新对话
|
|
</Button>
|
|
</Box>
|
|
|
|
{/* chat history */}
|
|
<Box flex={'1 0 0'} h={0} px={[2, 5]} overflow={'overlay'}>
|
|
{concatHistory.map((item) => (
|
|
<Flex
|
|
position={'relative'}
|
|
key={item.id}
|
|
alignItems={'center'}
|
|
py={3}
|
|
px={4}
|
|
cursor={'pointer'}
|
|
userSelect={'none'}
|
|
borderRadius={'lg'}
|
|
mb={2}
|
|
_hover={{
|
|
bg: 'myGray.100',
|
|
'& .more': {
|
|
display: 'block'
|
|
}
|
|
}}
|
|
bg={item.top ? '#E6F6F6 !important' : ''}
|
|
{...(item.id === activeHistoryId
|
|
? {
|
|
backgroundColor: 'myBlue.100 !important',
|
|
color: 'myBlue.700'
|
|
}
|
|
: {
|
|
onClick: () => {
|
|
onChangeChat(item.id);
|
|
}
|
|
})}
|
|
>
|
|
<MyIcon name={item.id === activeHistoryId ? 'chatFill' : 'chatLight'} w={'16px'} />
|
|
<Box flex={'1 0 0'} ml={3} className="textEllipsis">
|
|
{item.title}
|
|
</Box>
|
|
{!!item.id && (
|
|
<Box className="more" display={['block', 'none']}>
|
|
<Menu autoSelect={false} isLazy offset={[0, 5]}>
|
|
<MenuButton
|
|
_hover={{ bg: 'white' }}
|
|
cursor={'pointer'}
|
|
borderRadius={'md'}
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
}}
|
|
>
|
|
<MyIcon name={'more'} w={'14px'} p={1} />
|
|
</MenuButton>
|
|
<MenuList color={'myGray.700'} minW={`90px !important`}>
|
|
{onSetHistoryTop && (
|
|
<MenuItem
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onSetHistoryTop({ historyId: item.id, top: !item.top });
|
|
}}
|
|
>
|
|
<MyIcon mr={2} name={'setTop'} w={'16px'}></MyIcon>
|
|
{item.top ? '取消置顶' : '置顶'}
|
|
</MenuItem>
|
|
)}
|
|
<MenuItem
|
|
_hover={{ color: 'red.500' }}
|
|
onClick={(e) => {
|
|
e.stopPropagation();
|
|
onDelHistory(item.id);
|
|
if (item.id === activeHistoryId) {
|
|
onChangeChat();
|
|
}
|
|
}}
|
|
>
|
|
<MyIcon mr={2} name={'delete'} w={'16px'}></MyIcon>
|
|
删除
|
|
</MenuItem>
|
|
</MenuList>
|
|
</Menu>
|
|
</Box>
|
|
)}
|
|
</Flex>
|
|
))}
|
|
</Box>
|
|
</Flex>
|
|
);
|
|
};
|
|
|
|
export default ChatHistorySlider;
|