mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-09 07:42:39 +02:00
33 lines
1.3 KiB
TypeScript
33 lines
1.3 KiB
TypeScript
import { atomWithMutation } from "jotai-tanstack-query";
|
|
import { toast } from "sonner";
|
|
import type { Chat } from "@/app/dashboard/[search_space_id]/chats/chats-client";
|
|
import type { DeleteChatRequest } from "@/contracts/types/chat.types";
|
|
import { chatsApiService } from "@/lib/apis/chats-api.service";
|
|
import { cacheKeys } from "@/lib/query-client/cache-keys";
|
|
import { queryClient } from "@/lib/query-client/client";
|
|
import { activeSearchSpaceIdAtom } from "../seach-spaces/seach-space-queries.atom";
|
|
import { globalChatsQueryParamsAtom } from "./ui.atoms";
|
|
|
|
export const deleteChatMutationAtom = atomWithMutation((get) => {
|
|
const searchSpaceId = get(activeSearchSpaceIdAtom);
|
|
const authToken = localStorage.getItem("surfsense_bearer_token");
|
|
const chatsQueryParams = get(globalChatsQueryParamsAtom);
|
|
|
|
return {
|
|
mutationKey: cacheKeys.chats.globalQueryParams(chatsQueryParams),
|
|
enabled: !!searchSpaceId && !!authToken,
|
|
mutationFn: async (request: DeleteChatRequest) => {
|
|
return chatsApiService.deleteChat(request);
|
|
},
|
|
|
|
onSuccess: (_, request: DeleteChatRequest) => {
|
|
toast.success("Chat deleted successfully");
|
|
queryClient.setQueryData(
|
|
cacheKeys.chats.globalQueryParams(chatsQueryParams),
|
|
(oldData: Chat[]) => {
|
|
return oldData.filter((chat) => chat.id !== request.id);
|
|
}
|
|
);
|
|
},
|
|
};
|
|
});
|