mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 18:00:20 -04:00
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
import { useQuery } from '@tanstack/react-query'
|
|
|
|
import { replicationKeys } from './keys'
|
|
import { checkReplicationFeatureFlagRetry } from './utils'
|
|
import { get, handleError } from '@/data/fetchers'
|
|
import type { ResponseError, UseCustomQueryOptions } from '@/types'
|
|
|
|
type ReplicationSourcesParams = { projectRef?: string }
|
|
|
|
async function fetchReplicationSources(
|
|
{ projectRef }: ReplicationSourcesParams,
|
|
signal?: AbortSignal
|
|
) {
|
|
if (!projectRef) throw new Error('projectRef is required')
|
|
|
|
const { data, error } = await get('/platform/replication/{ref}/sources', {
|
|
params: { path: { ref: projectRef } },
|
|
signal,
|
|
})
|
|
if (error) {
|
|
handleError(error)
|
|
}
|
|
|
|
return data
|
|
}
|
|
|
|
export type ReplicationSourcesData = Awaited<ReturnType<typeof fetchReplicationSources>>
|
|
|
|
export const useReplicationSourcesQuery = <TData = ReplicationSourcesData>(
|
|
{ projectRef }: ReplicationSourcesParams,
|
|
{
|
|
enabled = true,
|
|
...options
|
|
}: UseCustomQueryOptions<ReplicationSourcesData, ResponseError, TData> = {}
|
|
) =>
|
|
useQuery<ReplicationSourcesData, ResponseError, TData>({
|
|
queryKey: replicationKeys.sources(projectRef),
|
|
queryFn: ({ signal }) => fetchReplicationSources({ projectRef }, signal),
|
|
enabled: enabled && typeof projectRef !== 'undefined',
|
|
refetchOnMount: false,
|
|
refetchOnWindowFocus: false,
|
|
retry: checkReplicationFeatureFlagRetry,
|
|
...options,
|
|
})
|