import { queryOptions, useQuery } from '@tanstack/react-query' import { REPLICATION_METADATA_FRESHNESS_MS } from './constants' import { replicationKeys } from './keys' import { get, handleError } from '@/data/fetchers' import type { ResponseError, UseCustomQueryOptions } from '@/types' type ReplicationTablesParams = { projectRef?: string; sourceId?: number } async function fetchReplicationTables( { projectRef, sourceId }: ReplicationTablesParams, signal?: AbortSignal ) { if (!projectRef) throw new Error('projectRef is required') if (!sourceId) throw new Error('sourceId is required') const { data, error } = await get('/platform/replication/v2/{ref}/sources/{source_id}/tables', { params: { path: { ref: projectRef, source_id: sourceId } }, signal, }) if (error) { handleError(error) } return data.tables } export type ReplicationTablesData = Awaited> type ReplicationTablesQueryOptions = Omit< UseCustomQueryOptions, 'enabled' > & { enabled?: boolean } export const replicationTablesQueryOptions = ( { projectRef, sourceId }: ReplicationTablesParams, { enabled = true, ...options }: ReplicationTablesQueryOptions = {} ) => queryOptions({ queryKey: replicationKeys.tables(projectRef, sourceId), queryFn: ({ signal }) => fetchReplicationTables({ projectRef, sourceId }, signal), enabled: enabled && typeof projectRef !== 'undefined' && typeof sourceId !== 'undefined', staleTime: REPLICATION_METADATA_FRESHNESS_MS, ...options, }) export const useReplicationTablesQuery = ( { projectRef, sourceId }: ReplicationTablesParams, options: ReplicationTablesQueryOptions = {} ) => useQuery(replicationTablesQueryOptions({ projectRef, sourceId }, options))