56 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-11-13 17:48:32 +00:00
import { useMutation, useQuery, UseQueryResult, useQueryClient } from '@tanstack/react-query';
import {
createPage,
deletePage,
getPageById,
getRecentChanges,
updatePage,
} from '@/features/page/services/page-service';
import { IPage } from '@/features/page/types/page.types';
2023-11-13 21:35:04 +00:00
import { notifications } from '@mantine/notifications';
2023-11-13 17:48:32 +00:00
const RECENT_CHANGES_KEY = ['recentChanges'];
export function usePageQuery(pageId: string): UseQueryResult<IPage, Error> {
return useQuery({
2023-11-22 20:42:34 +00:00
queryKey: ['pages', pageId],
2023-11-13 17:48:32 +00:00
queryFn: () => getPageById(pageId),
enabled: !!pageId,
2023-11-22 20:42:34 +00:00
staleTime: 5 * 60 * 1000,
2023-11-13 17:48:32 +00:00
});
}
export function useRecentChangesQuery(): UseQueryResult<IPage[], Error> {
return useQuery({
queryKey: RECENT_CHANGES_KEY,
queryFn: () => getRecentChanges(),
refetchOnMount: true,
});
}
export function useCreatePageMutation() {
return useMutation<IPage, Error, Partial<IPage>>({
mutationFn: (data) => createPage(data),
});
}
export function useUpdatePageMutation() {
const queryClient = useQueryClient();
2023-11-13 17:48:32 +00:00
return useMutation<IPage, Error, Partial<IPage>>({
mutationFn: (data) => updatePage(data),
onSuccess: (data) => {
queryClient.setQueryData(['pages', data.id], data);
},
2023-11-13 17:48:32 +00:00
});
}
export function useDeletePageMutation() {
return useMutation({
mutationFn: (pageId: string) => deletePage(pageId),
2023-11-13 21:35:04 +00:00
onSuccess: () => {
2023-11-22 12:54:45 +00:00
notifications.show({ message: 'Page deleted successfully' });
2023-11-13 21:35:04 +00:00
},
2023-11-13 17:48:32 +00:00
});
}