Files
supabase/apps/studio/data/secrets/secrets-create-mutation.ts
Joshen Lim bb6349f34f Second round of wrapping RQ errors with handleError (#26428)
* First round of wrapping RQ errors with handleError

* Remove the throw before the handleError usage.

* Make the handling of an API error more versatile. Add logging in Sentry if the error is of unknown type.

* Remove throwing of the handleError function.

* Add return type to the handleError function to be never so that we're sure it always throws.

* Second round of wrapping RQ errors with handleError

* Temp fix in delete credential mutation, and fix loading state

---------

Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
2024-05-21 15:51:11 +08:00

55 lines
1.6 KiB
TypeScript

import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query'
import { toast } from 'react-hot-toast'
import { handleError, post } from 'data/fetchers'
import type { ResponseError } from 'types'
import { secretsKeys } from './keys'
export type SecretsCreateVariables = {
projectRef?: string
secrets: { name: string; value: string }[]
}
export async function createSecrets({ projectRef, secrets }: SecretsCreateVariables) {
if (!projectRef) throw new Error('Project ref is required')
const { data, error } = await post('/v1/projects/{ref}/secrets', {
params: { path: { ref: projectRef } },
body: secrets,
})
if (error) handleError(error)
return data
}
type SecretsCreateData = Awaited<ReturnType<typeof createSecrets>>
export const useSecretsCreateMutation = ({
onSuccess,
onError,
...options
}: Omit<
UseMutationOptions<SecretsCreateData, ResponseError, SecretsCreateVariables>,
'mutationFn'
> = {}) => {
const queryClient = useQueryClient()
return useMutation<SecretsCreateData, ResponseError, SecretsCreateVariables>(
(vars) => createSecrets(vars),
{
async onSuccess(data, variables, context) {
const { projectRef } = variables
await queryClient.invalidateQueries(secretsKeys.list(projectRef))
await onSuccess?.(data, variables, context)
},
async onError(data, variables, context) {
if (onError === undefined) {
toast.error(`Failed to create secrets: ${data.message}`)
} else {
onError(data, variables, context)
}
},
...options,
}
)
}