mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-30 22:22:02 +02:00
Refactor desktop app into separate client and proxy apps
This commit is contained in:
76
apps/yaak-client/hooks/useFastMutation.ts
Normal file
76
apps/yaak-client/hooks/useFastMutation.ts
Normal file
@@ -0,0 +1,76 @@
|
||||
import type { MutationKey } from '@tanstack/react-query';
|
||||
import { useMemo } from 'react';
|
||||
import { showToast } from '../lib/toast';
|
||||
|
||||
interface MutationOptions<TData, TError, TVariables> {
|
||||
mutationKey: MutationKey;
|
||||
mutationFn: (vars: TVariables) => Promise<TData>;
|
||||
onSettled?: () => void;
|
||||
onError?: (err: TError) => void;
|
||||
onSuccess?: (data: TData) => void;
|
||||
disableToastError?: boolean;
|
||||
}
|
||||
|
||||
type CallbackMutationOptions<TData, TError, TVariables> = Omit<
|
||||
MutationOptions<TData, TError, TVariables>,
|
||||
'mutationKey' | 'mutationFn'
|
||||
>;
|
||||
|
||||
export function createFastMutation<TData = unknown, TError = unknown, TVariables = void>(
|
||||
defaultArgs: MutationOptions<TData, TError, TVariables>,
|
||||
) {
|
||||
const mutateAsync = async (
|
||||
variables: TVariables,
|
||||
args?: CallbackMutationOptions<TData, TError, TVariables>,
|
||||
) => {
|
||||
const { mutationKey, mutationFn, disableToastError } = {
|
||||
...defaultArgs,
|
||||
...args,
|
||||
};
|
||||
try {
|
||||
const data = await mutationFn(variables);
|
||||
// Run both default and custom onSuccess callbacks
|
||||
defaultArgs.onSuccess?.(data);
|
||||
args?.onSuccess?.(data);
|
||||
defaultArgs.onSettled?.();
|
||||
args?.onSettled?.();
|
||||
return data;
|
||||
} catch (err: unknown) {
|
||||
const stringKey = mutationKey.join('.');
|
||||
const e = err as TError;
|
||||
console.log('mutation error', stringKey, e);
|
||||
if (!disableToastError) {
|
||||
showToast({
|
||||
id: stringKey,
|
||||
message: `${err}`,
|
||||
color: 'danger',
|
||||
timeout: 5000,
|
||||
});
|
||||
}
|
||||
// Run both default and custom onError callbacks
|
||||
defaultArgs.onError?.(e);
|
||||
args?.onError?.(e);
|
||||
defaultArgs.onSettled?.();
|
||||
args?.onSettled?.();
|
||||
throw e;
|
||||
}
|
||||
};
|
||||
|
||||
const mutate = (
|
||||
variables: TVariables,
|
||||
args?: CallbackMutationOptions<TData, TError, TVariables>,
|
||||
) => {
|
||||
setTimeout(() => mutateAsync(variables, args));
|
||||
};
|
||||
|
||||
return { mutateAsync, mutate };
|
||||
}
|
||||
|
||||
export function useFastMutation<TData = unknown, TError = unknown, TVariables = void>(
|
||||
defaultArgs: MutationOptions<TData, TError, TVariables>,
|
||||
) {
|
||||
return useMemo(() => {
|
||||
return createFastMutation(defaultArgs);
|
||||
// biome-ignore lint/correctness/useExhaustiveDependencies: Force it!
|
||||
}, defaultArgs.mutationKey);
|
||||
}
|
||||
Reference in New Issue
Block a user