2023-07-17 20:31:01 +08:00
|
|
|
import React from "react";
|
2023-07-17 20:31:01 +08:00
|
|
|
import { Text, Flex, Avatar, ActionIcon, Tooltip, CopyButton, SimpleGrid } from "@mantine/core";
|
2023-07-17 20:31:01 +08:00
|
|
|
|
|
|
|
// @ts-ignore
|
2023-08-03 17:16:15 +08:00
|
|
|
import SvgAvatarDevChat from './avatar_devchat.svg';
|
2023-07-17 20:31:01 +08:00
|
|
|
// @ts-ignore
|
2023-08-03 17:01:12 +08:00
|
|
|
import SvgAvatarUser from './avatar_spaceman.png';
|
2023-07-17 20:31:01 +08:00
|
|
|
import { IconCheck, IconCopy, Icon360, IconEdit, IconTrash } from "@tabler/icons-react";
|
2023-07-17 20:31:01 +08:00
|
|
|
|
|
|
|
import { useAppDispatch } from '@/views/hooks';
|
|
|
|
|
|
|
|
import {
|
|
|
|
setContexts,
|
|
|
|
setValue,
|
2023-08-03 16:49:30 +08:00
|
|
|
} from '@/views/reducers/inputSlice';
|
2023-07-17 20:31:01 +08:00
|
|
|
|
2023-07-17 21:07:42 +08:00
|
|
|
import {
|
2023-07-19 16:03:39 +08:00
|
|
|
deleteMessage,
|
|
|
|
popMessage
|
2023-08-03 16:49:30 +08:00
|
|
|
} from '@/views/reducers/chatSlice';
|
2023-07-17 21:07:42 +08:00
|
|
|
|
2023-07-17 20:31:01 +08:00
|
|
|
const MessageHeader = (props: any) => {
|
2023-07-17 21:07:42 +08:00
|
|
|
const { item, showEdit = false, showDelete = true } = props;
|
|
|
|
const { contexts, message, type, hash } = item;
|
2023-07-17 20:31:01 +08:00
|
|
|
const dispatch = useAppDispatch();
|
|
|
|
const [done, setDone] = React.useState(false);
|
|
|
|
return (<Flex
|
|
|
|
m='10px 0 10px 0'
|
|
|
|
gap="sm"
|
|
|
|
justify="flex-start"
|
|
|
|
align="center"
|
|
|
|
direction="row"
|
|
|
|
wrap="wrap">
|
|
|
|
{
|
|
|
|
type === 'bot'
|
|
|
|
? <Avatar
|
|
|
|
color="indigo"
|
|
|
|
size={25}
|
|
|
|
radius="xl"
|
|
|
|
src={SvgAvatarDevChat} />
|
|
|
|
: <Avatar
|
|
|
|
color="cyan"
|
|
|
|
size={25}
|
|
|
|
radius="xl"
|
|
|
|
src={SvgAvatarUser} />
|
|
|
|
}
|
|
|
|
<Text weight='bold'>{type === 'bot' ? 'DevChat' : 'User'}</Text>
|
|
|
|
{type === 'user'
|
2023-07-17 20:31:01 +08:00
|
|
|
? <Flex
|
|
|
|
gap="xs"
|
|
|
|
justify="flex-end"
|
|
|
|
align="center"
|
|
|
|
direction="row"
|
|
|
|
wrap="wrap"
|
|
|
|
style={{ marginLeft: 'auto' }}>
|
|
|
|
<Tooltip sx={{ padding: '3px', fontSize: 'var(--vscode-editor-font-size)' }} label={done ? 'Refilled' : 'Refill prompt'} withArrow position="left" color="gray">
|
|
|
|
<ActionIcon size='sm'
|
|
|
|
onClick={() => {
|
|
|
|
dispatch(setValue(message));
|
|
|
|
dispatch(setContexts(contexts));
|
|
|
|
setDone(true);
|
|
|
|
setTimeout(() => { setDone(false); }, 2000);
|
|
|
|
}}>
|
|
|
|
{done ? <IconCheck size="1rem" /> : <Icon360 size="1.125rem" />}
|
|
|
|
</ActionIcon>
|
|
|
|
</Tooltip>
|
|
|
|
{showEdit && <Tooltip sx={{ padding: '3px', fontSize: 'var(--vscode-editor-font-size)' }} label="Edit message" withArrow position="left" color="gray">
|
|
|
|
<ActionIcon size='sm'
|
|
|
|
onClick={() => {
|
|
|
|
|
|
|
|
}}>
|
|
|
|
<IconEdit size="1.125rem" />
|
|
|
|
</ActionIcon>
|
|
|
|
</Tooltip >}
|
2023-07-19 16:03:39 +08:00
|
|
|
{showDelete && hash !== 'message' && <Tooltip sx={{ padding: '3px', fontSize: 'var(--vscode-editor-font-size)' }} label="Delete message" withArrow position="left" color="gray">
|
2023-07-17 20:31:01 +08:00
|
|
|
<ActionIcon size='sm'
|
|
|
|
onClick={() => {
|
2023-07-19 16:03:39 +08:00
|
|
|
if (item.hash) {
|
|
|
|
dispatch(deleteMessage(item));
|
|
|
|
} else {
|
|
|
|
dispatch(popMessage());
|
|
|
|
dispatch(popMessage());
|
|
|
|
}
|
2023-07-17 20:31:01 +08:00
|
|
|
}}>
|
|
|
|
<IconTrash size="1.125rem" />
|
|
|
|
</ActionIcon>
|
|
|
|
</Tooltip >}
|
2023-07-17 20:31:01 +08:00
|
|
|
</Flex >
|
2023-07-17 20:31:01 +08:00
|
|
|
: <CopyButton value={message} timeout={2000}>
|
|
|
|
{({ copied, copy }) => (
|
|
|
|
<Tooltip sx={{ padding: '3px', fontSize: 'var(--vscode-editor-font-size)' }} label={copied ? 'Copied' : 'Copy message'} withArrow position="left" color="gray">
|
|
|
|
<ActionIcon size='xs' color={copied ? 'teal' : 'gray'} onClick={copy} style={{ marginLeft: 'auto' }}>
|
|
|
|
{copied ? <IconCheck size="1rem" /> : <IconCopy size="1rem" />}
|
|
|
|
</ActionIcon>
|
|
|
|
</Tooltip>
|
|
|
|
)}
|
|
|
|
</CopyButton>
|
|
|
|
}
|
|
|
|
</Flex >);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default MessageHeader;
|