New schema for pixels and links.

This commit is contained in:
Mike Cao 2025-08-13 20:27:54 -07:00
parent c60e8b3d23
commit 88639dfe83
67 changed files with 993 additions and 208 deletions

View file

@ -0,0 +1,19 @@
import { useApi } from '../useApi';
import { usePagedQuery } from '../usePagedQuery';
import { useModified } from '../useModified';
import { ReactQueryOptions } from '@/lib/types';
export function usePixelsQuery(
{ websiteId, type }: { websiteId: string; type?: string },
options?: ReactQueryOptions<any>,
) {
const { modified } = useModified(`pixels:${type}`);
const { get } = useApi();
return usePagedQuery({
queryKey: ['pixels', { websiteId, type, modified }],
queryFn: async () => get('/pixels', { websiteId, type }),
enabled: !!websiteId && !!type,
...options,
});
}