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> export const useReplicationSourcesQuery = ( { projectRef }: ReplicationSourcesParams, { enabled = true, ...options }: UseCustomQueryOptions = {} ) => useQuery({ queryKey: replicationKeys.sources(projectRef), queryFn: ({ signal }) => fetchReplicationSources({ projectRef }, signal), enabled: enabled && typeof projectRef !== 'undefined', refetchOnMount: false, refetchOnWindowFocus: false, retry: checkReplicationFeatureFlagRetry, ...options, })