import { authQueryKeys } from "@better-auth-ui/core" import { type DataTag, type QueryClient, queryOptions } from "@tanstack/react-query" import type { APIError } from "better-auth" import type { AuthServer } from "../../../lib/auth-server" export type ListAccountsData = Awaited< ReturnType > export type ListAccountsParams = Parameters< TAuth["api"]["listUserAccounts"] >[0] export type ListAccount = NonNullable< ListAccountsData >[number] /** * Query options factory for the current user's linked social accounts. * * @param auth - The Better Auth server instance. * @param userId - The signed-in user's ID. Used for cache partitioning so * the key matches the client-side `listAccountsOptions` for SSR hydration. * @param params - Parameters forwarded to `auth.api.listUserAccounts`. */ export function listAccountsOptions( auth: TAuth, userId: string, params: ListAccountsParams ) { type TData = ListAccountsData const queryKey = authQueryKeys.listAccounts(userId, params?.query) const options = queryOptions({ queryKey, queryFn: () => auth.api.listUserAccounts(params) as Promise }) return options as typeof options & { queryKey: DataTag } } /** * Get the current user's linked social accounts from the query cache, * calling `fetchListAccounts` under the hood if no cached entry exists. * Resolves with the account list, making it suitable for reading directly * in a server component. * * @param queryClient - The React Query client used for SSR hydration. * @param auth - The Better Auth server instance. * @param userId - The signed-in user's ID, used for cache partitioning. * @param params - Parameters forwarded to `auth.api.listUserAccounts`. */ export const ensureListAccounts = ( queryClient: QueryClient, auth: TAuth, userId: string, params: ListAccountsParams ) => queryClient.ensureQueryData(listAccountsOptions(auth, userId, params)) /** * Prefetch the current user's linked social accounts into the query cache. * Behaves like `fetchListAccounts`, but does not throw on error and does * not return the data — use this when you only need the value to be * available after hydration. * * @param queryClient - The React Query client used for SSR hydration. * @param auth - The Better Auth server instance. * @param userId - The signed-in user's ID, used for cache partitioning. * @param params - Parameters forwarded to `auth.api.listUserAccounts`. */ export const prefetchListAccounts = ( queryClient: QueryClient, auth: TAuth, userId: string, params: ListAccountsParams ) => queryClient.prefetchQuery(listAccountsOptions(auth, userId, params)) /** * Fetch and cache the current user's linked social accounts, resolving * with the data or throwing on error. If a cached entry exists and is * neither invalidated nor older than `staleTime`, the cached value is * returned without a network call; otherwise the latest data is fetched. * * @param queryClient - The React Query client used for SSR hydration. * @param auth - The Better Auth server instance. * @param userId - The signed-in user's ID, used for cache partitioning. * @param params - Parameters forwarded to `auth.api.listUserAccounts`. */ export const fetchListAccounts = ( queryClient: QueryClient, auth: TAuth, userId: string, params: ListAccountsParams ) => queryClient.fetchQuery(listAccountsOptions(auth, userId, params))