Files
supabase/apps/studio/data/replication/pipelines-query.ts
Joshen Lim 5da5ad06c0 Shift pipeline status page to its own route (#37431)
* Shift pipeline status page to its own route

* Fix back link
2025-07-29 16:33:14 +08:00

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 }
)