mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-22 06:00:56 +02:00
31 lines
958 B
JavaScript
31 lines
958 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 { setConversation } from '~/store/convoSlice';
|
|
import { setMessages } from '~/store/messageSlice';
|
|
|
|
export default function DeleteButton({ conversationId, renaming, cancelHandler }) {
|
|
const dispatch = useDispatch();
|
|
const { trigger, isMutating } = manualSWR(
|
|
'http://localhost:3050/convos/clear',
|
|
'post',
|
|
() => {
|
|
dispatch(setMessages([]));
|
|
dispatch(setConversation({ title: 'New chat', conversationId: null, parentMessageId: null }));
|
|
}
|
|
);
|
|
|
|
const clickHandler = () => trigger({ conversationId });
|
|
const handler = renaming ? cancelHandler : clickHandler;
|
|
|
|
return (
|
|
<button
|
|
className="p-1 hover:text-white"
|
|
onClick={handler}
|
|
>
|
|
{ renaming ? <CrossIcon/> : <TrashIcon />}
|
|
</button>
|
|
);
|
|
}
|