2024-10-04 15:13:47 -07:00
|
|
|
import { useQuery } from '@tanstack/react-query';
|
2024-10-12 15:15:58 -07:00
|
|
|
|
2024-10-17 12:08:50 -07:00
|
|
|
import { usePlHooksApiClient } from 'pl-hooks/contexts/api-client';
|
|
|
|
import { queryClient, usePlHooksQueryClient } from 'pl-hooks/contexts/query-client';
|
2024-10-04 15:13:47 -07:00
|
|
|
|
|
|
|
import type { PlApiClient } from 'pl-api';
|
|
|
|
|
|
|
|
type Timeline = 'home' | 'notifications';
|
|
|
|
|
|
|
|
const useMarker = (timeline: Timeline) => {
|
2024-10-17 12:08:50 -07:00
|
|
|
const { client } = usePlHooksApiClient();
|
2024-10-22 06:28:57 -07:00
|
|
|
const queryClient = usePlHooksQueryClient();
|
2024-10-04 15:13:47 -07:00
|
|
|
|
|
|
|
return useQuery({
|
|
|
|
queryKey: ['markers', timeline],
|
|
|
|
queryFn: () => client.timelines.getMarkers([timeline]).then(markers => markers[timeline]),
|
2024-10-17 12:08:50 -07:00
|
|
|
}, queryClient);
|
2024-10-04 15:13:47 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const prefetchMarker = (client: PlApiClient, timeline: 'home' | 'notifications') =>
|
|
|
|
queryClient.prefetchQuery({
|
|
|
|
queryKey: ['markers', timeline],
|
|
|
|
queryFn: () => client.timelines.getMarkers([timeline]).then(markers => markers[timeline]),
|
|
|
|
});
|
|
|
|
|
|
|
|
export { useMarker, prefetchMarker, type Timeline };
|