mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-17 23:14:03 +01:00
55 lines
2.0 KiB
TypeScript
55 lines
2.0 KiB
TypeScript
import { useSetAtom } from 'jotai/index';
|
|
import { showAlert } from '../lib/alert';
|
|
import { showConfirmDelete } from '../lib/confirm';
|
|
import { pluralizeCount } from '../lib/pluralize';
|
|
import { invokeCmd } from '../lib/tauri';
|
|
import { getActiveWorkspaceId } from './useActiveWorkspace';
|
|
import { useFastMutation } from './useFastMutation';
|
|
import { useGrpcConnections } from './useGrpcConnections';
|
|
import { httpResponsesAtom, useHttpResponses } from './useHttpResponses';
|
|
import { useWebsocketConnections } from './useWebsocketConnections';
|
|
|
|
export function useDeleteSendHistory() {
|
|
const setHttpResponses = useSetAtom(httpResponsesAtom);
|
|
const httpResponses = useHttpResponses();
|
|
const grpcConnections = useGrpcConnections();
|
|
const websocketConnections = useWebsocketConnections();
|
|
const labels = [
|
|
httpResponses.length > 0 ? pluralizeCount('Http Response', httpResponses.length) : null,
|
|
grpcConnections.length > 0 ? pluralizeCount('Grpc Connection', grpcConnections.length) : null,
|
|
websocketConnections.length > 0
|
|
? pluralizeCount('WebSocket Connection', websocketConnections.length)
|
|
: null,
|
|
].filter((l) => l != null);
|
|
|
|
return useFastMutation({
|
|
mutationKey: ['delete_send_history', labels],
|
|
mutationFn: async () => {
|
|
if (labels.length === 0) {
|
|
showAlert({
|
|
id: 'no-responses',
|
|
title: 'Nothing to Delete',
|
|
body: 'There is no Http, Grpc, or Websocket history',
|
|
});
|
|
return;
|
|
}
|
|
|
|
const confirmed = await showConfirmDelete({
|
|
id: 'delete-send-history',
|
|
title: 'Clear Send History',
|
|
description: <>Delete {labels.join(' and ')}?</>,
|
|
});
|
|
if (!confirmed) return false;
|
|
|
|
const workspaceId = getActiveWorkspaceId();
|
|
await invokeCmd('cmd_delete_send_history', { workspaceId });
|
|
return true;
|
|
},
|
|
onSuccess: async (confirmed) => {
|
|
if (!confirmed) return;
|
|
const activeWorkspaceId = getActiveWorkspaceId();
|
|
setHttpResponses((all) => all.filter((r) => r.workspaceId !== activeWorkspaceId));
|
|
},
|
|
});
|
|
}
|