mirror of
https://github.com/supabase/supabase.git
synced 2026-07-03 08:04:21 +08:00
41 lines
1.3 KiB
TypeScript
41 lines
1.3 KiB
TypeScript
import { UseQueryOptions, useQuery } from '@tanstack/react-query'
|
|
|
|
import { get, handleError } from 'data/fetchers'
|
|
import { ResponseError } from 'types'
|
|
import { replicationKeys } from './keys'
|
|
|
|
type ReplicationPipelinesParams = { projectRef?: string }
|
|
|
|
async function fetchReplicationPipelines(
|
|
{ projectRef }: ReplicationPipelinesParams,
|
|
signal?: AbortSignal
|
|
) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
|
|
const { data, error } = await get('/platform/replication/{ref}/pipelines', {
|
|
params: { path: { ref: projectRef } },
|
|
signal,
|
|
})
|
|
if (error) {
|
|
handleError(error)
|
|
}
|
|
|
|
return data
|
|
}
|
|
|
|
export type ReplicationPipelinesData = Awaited<ReturnType<typeof fetchReplicationPipelines>>
|
|
export type Pipeline = ReplicationPipelinesData['pipelines'][0]
|
|
|
|
export const useReplicationPipelinesQuery = <TData = ReplicationPipelinesData>(
|
|
{ projectRef }: ReplicationPipelinesParams,
|
|
{
|
|
enabled = true,
|
|
...options
|
|
}: UseQueryOptions<ReplicationPipelinesData, ResponseError, TData> = {}
|
|
) =>
|
|
useQuery<ReplicationPipelinesData, ResponseError, TData>(
|
|
replicationKeys.pipelines(projectRef),
|
|
({ signal }) => fetchReplicationPipelines({ projectRef }, signal),
|
|
{ enabled: enabled && typeof projectRef !== 'undefined', ...options }
|
|
)
|