mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 21:54:19 +08:00
* 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>
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { useQuery, UseQueryOptions } from '@tanstack/react-query'
|
|
|
|
import type { components } from 'data/api'
|
|
import { get, handleError } from 'data/fetchers'
|
|
import type { ResponseError } from 'types'
|
|
import { secretsKeys } from './keys'
|
|
|
|
export type SecretsVariables = {
|
|
projectRef?: string
|
|
}
|
|
|
|
export type ProjectSecret = components['schemas']['SecretResponse']
|
|
|
|
export async function getSecrets({ projectRef }: SecretsVariables, signal?: AbortSignal) {
|
|
if (!projectRef) throw new Error('Project ref is required')
|
|
|
|
const { data, error } = await get(`/v1/projects/{ref}/secrets`, {
|
|
params: { path: { ref: projectRef } },
|
|
signal,
|
|
})
|
|
|
|
if (error) handleError(error)
|
|
return data
|
|
}
|
|
|
|
export type SecretsData = Awaited<ReturnType<typeof getSecrets>>
|
|
export type SecretsError = ResponseError
|
|
|
|
export const useSecretsQuery = <TData = SecretsData>(
|
|
{ projectRef }: SecretsVariables,
|
|
{ enabled = true, ...options }: UseQueryOptions<SecretsData, SecretsError, TData> = {}
|
|
) =>
|
|
useQuery<SecretsData, SecretsError, TData>(
|
|
secretsKeys.list(projectRef),
|
|
({ signal }) => getSecrets({ projectRef }, signal),
|
|
{ enabled: enabled && typeof projectRef !== 'undefined', ...options }
|
|
)
|