import { useMutation, useQueryClient } from '@tanstack/react-query' import { toast } from 'sonner' import { authKeys } from './keys' import type { components } from '@/data/api' import { handleError, patch } from '@/data/fetchers' import type { ResponseError, UseCustomMutationOptions } from '@/types' export type AuthHooksUpdateVariables = { projectRef: string config: components['schemas']['UpdateGoTrueConfigHooksBody'] } export async function updateAuthHooks({ projectRef, config }: AuthHooksUpdateVariables) { const { data, error } = await patch('/platform/auth/{ref}/config/hooks', { params: { path: { ref: projectRef } }, body: config, }) if (error) handleError(error) return data } type AuthHooksUpdateData = Awaited> export const useAuthHooksUpdateMutation = ({ onSuccess, onError, ...options }: Omit< UseCustomMutationOptions, 'mutationFn' > = {}) => { const queryClient = useQueryClient() return useMutation({ mutationFn: (vars) => updateAuthHooks(vars), async onSuccess(data, variables, context) { const { projectRef } = variables await queryClient.invalidateQueries({ queryKey: authKeys.authConfig(projectRef) }) await onSuccess?.(data, variables, context) }, async onError(data, variables, context) { if (onError === undefined) { toast.error(`Failed to update auth hooks: ${data.message}`) } else { onError(data, variables, context) } }, ...options, }) }