bigbuffet-rw/packages/pl-hooks/lib/hooks/polls/usePoll.ts
marcin mikołajczak d76a7e974b pl-hooks: add usePoll
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-10-21 12:19:54 +02:00

17 lines
505 B
TypeScript

import { useQuery } from '@tanstack/react-query';
import { usePlHooksApiClient } from 'pl-hooks/contexts/api-client';
import { usePlHooksQueryClient } from 'pl-hooks/contexts/query-client';
const usePoll = (pollId?: string) => {
const queryClient = usePlHooksQueryClient();
const { client } = usePlHooksApiClient();
return useQuery({
queryKey: ['polls', 'entities', pollId],
queryFn: () => client.polls.getPoll(pollId!),
enabled: !!pollId,
}, queryClient);
};
export { usePoll };