mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-02 11:29:02 -05:00
48 lines
1.7 KiB
TypeScript
48 lines
1.7 KiB
TypeScript
import { useMutation } from '@tanstack/react-query';
|
|
import { trackEvent } from '../lib/analytics';
|
|
import type { GrpcRequest } from '../lib/models';
|
|
import { invokeCmd } from '../lib/tauri';
|
|
import { useActiveEnvironmentId } from './useActiveEnvironmentId';
|
|
import { useActiveRequest } from './useActiveRequest';
|
|
import { useActiveWorkspaceId } from './useActiveWorkspaceId';
|
|
import { useAppRoutes } from './useAppRoutes';
|
|
|
|
export function useCreateGrpcRequest() {
|
|
const workspaceId = useActiveWorkspaceId();
|
|
const activeEnvironmentId = useActiveEnvironmentId();
|
|
const activeRequest = useActiveRequest();
|
|
const routes = useAppRoutes();
|
|
|
|
return useMutation<
|
|
GrpcRequest,
|
|
unknown,
|
|
Partial<Pick<GrpcRequest, 'name' | 'sortPriority' | 'folderId'>>
|
|
>({
|
|
mutationKey: ['create_grpc_request'],
|
|
mutationFn: (patch) => {
|
|
if (workspaceId === null) {
|
|
throw new Error("Cannot create grpc request when there's no active workspace");
|
|
}
|
|
if (patch.sortPriority === undefined) {
|
|
if (activeRequest != null) {
|
|
// Place above currently-active request
|
|
patch.sortPriority = activeRequest.sortPriority + 0.0001;
|
|
} else {
|
|
// Place at the very top
|
|
patch.sortPriority = -Date.now();
|
|
}
|
|
}
|
|
patch.folderId = patch.folderId || activeRequest?.folderId;
|
|
return invokeCmd('cmd_create_grpc_request', { workspaceId, name: '', ...patch });
|
|
},
|
|
onSettled: () => trackEvent('grpc_request', 'create'),
|
|
onSuccess: async (request) => {
|
|
routes.navigate('request', {
|
|
workspaceId: request.workspaceId,
|
|
requestId: request.id,
|
|
environmentId: activeEnvironmentId ?? undefined,
|
|
});
|
|
},
|
|
});
|
|
}
|