umami/src/components/hooks/queries/useRealtimeQuery.ts
2025-11-22 22:42:42 -08:00

17 lines
526 B
TypeScript

import { REALTIME_INTERVAL } from '@/lib/constants';
import type { RealtimeData } from '@/lib/types';
import { useApi } from '../useApi';
export function useRealtimeQuery(websiteId: string) {
const { get, useQuery } = useApi();
const { data, isLoading, error } = useQuery<RealtimeData>({
queryKey: ['realtime', { websiteId }],
queryFn: async () => {
return get(`/realtime/${websiteId}`);
},
enabled: !!websiteId,
refetchInterval: REALTIME_INTERVAL,
});
return { data, isLoading, error };
}