Files
supabase/apps/studio/data/branches/branches-query.ts
2024-03-04 20:48:22 +08:00

43 lines
1.3 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 { branchKeys } from './keys'
export type BranchesVariables = {
projectRef?: string
}
export type Branch = components['schemas']['BranchResponse']
export async function getBranches({ projectRef }: BranchesVariables, signal?: AbortSignal) {
if (!projectRef) throw new Error('Project ref is required')
const { data, error } = await get(`/v1/projects/{ref}/branches`, {
params: { path: { ref: projectRef } },
signal,
})
if (error) {
if ((error as ResponseError).message === 'Preview branching is not enabled for this project.') {
return []
} else {
throw handleError(error)
}
}
return data
}
export type BranchesData = Awaited<ReturnType<typeof getBranches>>
export type BranchesError = ResponseError
export const useBranchesQuery = <TData = BranchesData>(
{ projectRef }: BranchesVariables,
{ enabled = true, ...options }: UseQueryOptions<BranchesData, BranchesError, TData> = {}
) =>
useQuery<BranchesData, BranchesError, TData>(
branchKeys.list(projectRef),
({ signal }) => getBranches({ projectRef }, signal),
{ enabled: enabled && typeof projectRef !== 'undefined', ...options }
)