mirror of
https://github.com/docmost/docmost.git
synced 2025-11-18 09:01:11 +10:00
180 lines
4.5 KiB
TypeScript
180 lines
4.5 KiB
TypeScript
import {
|
|
keepPreviousData,
|
|
useMutation,
|
|
useQuery,
|
|
useQueryClient,
|
|
UseQueryResult,
|
|
} from "@tanstack/react-query";
|
|
import { notifications } from "@mantine/notifications";
|
|
import { useTranslation } from "react-i18next";
|
|
import {
|
|
ICreateShare,
|
|
IShare,
|
|
ISharedItem,
|
|
ISharedPage,
|
|
ISharedPageTree,
|
|
IShareForPage,
|
|
IShareInfoInput,
|
|
IUpdateShare,
|
|
} from "@/features/share/types/share.types.ts";
|
|
import {
|
|
createShare,
|
|
deleteShare,
|
|
getSharedPageTree,
|
|
getShareForPage,
|
|
getShareInfo,
|
|
getSharePageInfo,
|
|
getShares,
|
|
updateShare,
|
|
} from "@/features/share/services/share-service.ts";
|
|
import { IPage } from "@/features/page/types/page.types.ts";
|
|
import { IPagination, QueryParams } from "@/lib/types.ts";
|
|
import { useEffect } from "react";
|
|
|
|
export function useGetSharesQuery(
|
|
params?: QueryParams,
|
|
): UseQueryResult<IPagination<ISharedItem>, Error> {
|
|
return useQuery({
|
|
queryKey: ["share-list"],
|
|
queryFn: () => getShares(params),
|
|
placeholderData: keepPreviousData,
|
|
});
|
|
}
|
|
|
|
export function useGetShareByIdQuery(
|
|
shareId: string,
|
|
): UseQueryResult<IShare, Error> {
|
|
const query = useQuery({
|
|
queryKey: ["share-by-id", shareId],
|
|
queryFn: () => getShareInfo(shareId),
|
|
enabled: !!shareId,
|
|
});
|
|
|
|
return query;
|
|
}
|
|
|
|
export function useSharePageQuery(
|
|
shareInput: Partial<IShareInfoInput>,
|
|
): UseQueryResult<ISharedPage, Error> {
|
|
const query = useQuery({
|
|
queryKey: ["shares", shareInput],
|
|
queryFn: () => getSharePageInfo(shareInput),
|
|
enabled: !!shareInput.pageId,
|
|
});
|
|
|
|
return query;
|
|
}
|
|
|
|
export function useShareForPageQuery(
|
|
pageId: string,
|
|
): UseQueryResult<IShareForPage, Error> {
|
|
const query = useQuery({
|
|
queryKey: ["share-for-page", pageId],
|
|
queryFn: () => getShareForPage(pageId),
|
|
enabled: !!pageId,
|
|
staleTime: 0,
|
|
retry: false,
|
|
});
|
|
|
|
return query;
|
|
}
|
|
|
|
export function useCreateShareMutation() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation<any, Error, ICreateShare>({
|
|
mutationFn: (data) => createShare(data),
|
|
onSuccess: (data) => {
|
|
queryClient.invalidateQueries({
|
|
predicate: (item) =>
|
|
["share-for-page", "share-list"].includes(item.queryKey[0] as string),
|
|
});
|
|
},
|
|
onError: (error) => {
|
|
notifications.show({ message: t("Failed to share page"), color: "red" });
|
|
},
|
|
});
|
|
}
|
|
|
|
export function useUpdateShareMutation() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation<any, Error, IUpdateShare>({
|
|
mutationFn: (data) => updateShare(data),
|
|
onSuccess: (data) => {
|
|
queryClient.invalidateQueries({
|
|
predicate: (item) =>
|
|
["share-for-page", "share-list"].includes(item.queryKey[0] as string),
|
|
});
|
|
},
|
|
onError: (error, params) => {
|
|
if (error?.["status"] === 404) {
|
|
queryClient.removeQueries({
|
|
predicate: (item) =>
|
|
["share-for-page"].includes(item.queryKey[0] as string),
|
|
});
|
|
|
|
notifications.show({
|
|
message: t("Share not found"),
|
|
color: "red",
|
|
});
|
|
return;
|
|
}
|
|
|
|
notifications.show({
|
|
message: error?.["response"]?.data?.message || "Share not found",
|
|
color: "red",
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
export function useDeleteShareMutation() {
|
|
const { t } = useTranslation();
|
|
const queryClient = useQueryClient();
|
|
|
|
return useMutation({
|
|
mutationFn: (shareId: string) => deleteShare(shareId),
|
|
onSuccess: (data) => {
|
|
queryClient.removeQueries({
|
|
predicate: (item) =>
|
|
["share-for-page"].includes(item.queryKey[0] as string),
|
|
});
|
|
|
|
queryClient.invalidateQueries({
|
|
predicate: (item) =>
|
|
["share-list"].includes(item.queryKey[0] as string),
|
|
});
|
|
|
|
notifications.show({ message: t("Share deleted successfully") });
|
|
},
|
|
onError: (error) => {
|
|
if (error?.["status"] === 404) {
|
|
queryClient.removeQueries({
|
|
predicate: (item) =>
|
|
["share-for-page"].includes(item.queryKey[0] as string),
|
|
});
|
|
}
|
|
|
|
notifications.show({
|
|
message: error?.["response"]?.data?.message || "Failed to delete share",
|
|
color: "red",
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
export function useGetSharedPageTreeQuery(
|
|
shareId: string,
|
|
): UseQueryResult<ISharedPageTree, Error> {
|
|
return useQuery({
|
|
queryKey: ["shared-page-tree", shareId],
|
|
queryFn: () => getSharedPageTree(shareId),
|
|
enabled: !!shareId,
|
|
placeholderData: keepPreviousData,
|
|
staleTime: 60 * 60 * 1000,
|
|
});
|
|
}
|