mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 03:10:15 +01:00
32 lines
913 B
JavaScript
32 lines
913 B
JavaScript
import React from 'react';
|
|
import TrashIcon from '../svg/TrashIcon';
|
|
import CrossIcon from '../svg/CrossIcon';
|
|
import manualSWR from '~/utils/fetchers';
|
|
import { useDispatch } from 'react-redux';
|
|
import { setNewConvo, removeConvo } from '~/store/convoSlice';
|
|
import { setMessages } from '~/store/messageSlice';
|
|
|
|
export default function DeleteButton({ conversationId, renaming, cancelHandler }) {
|
|
const dispatch = useDispatch();
|
|
const { trigger } = manualSWR(
|
|
`/api/convos/clear`,
|
|
'post',
|
|
() => {
|
|
dispatch(setMessages([]));
|
|
dispatch(removeConvo(conversationId));
|
|
dispatch(setNewConvo());
|
|
}
|
|
);
|
|
|
|
const clickHandler = () => trigger({ conversationId });
|
|
const handler = renaming ? cancelHandler : clickHandler;
|
|
|
|
return (
|
|
<button
|
|
className="p-1 hover:text-white"
|
|
onClick={handler}
|
|
>
|
|
{ renaming ? <CrossIcon/> : <TrashIcon />}
|
|
</button>
|
|
);
|
|
}
|