hexabot/frontend/src/hooks/crud/useDelete.tsx
2025-06-21 10:37:09 +01:00

85 lines
2.5 KiB
TypeScript

/*
* Copyright © 2025 Hexastack. All rights reserved.
*
* Licensed under the GNU Affero General Public License v3.0 (AGPLv3) with the following additional terms:
* 1. The name "Hexabot" is a trademark of Hexastack. You may not use this name in derivative works without express written permission.
* 2. All derivative works must include clear attribution to the original creator and software, Hexastack and Hexabot, in a prominent location (e.g., in the software's "About" section, documentation, and README file).
*/
import { useMutation, useQueryClient } from "react-query";
import { QueryType, TMutationOptions } from "@/services/types";
import { IBaseSchema, IEntityMapTypes, THook } from "@/types/base.types";
import { useEntityApiClient } from "../useApiClient";
import { isSameEntity } from "./helpers";
export const useDelete = <
TE extends THook["entity"],
TAttr = THook<{ entity: TE }>["attributes"],
TBasic extends IBaseSchema = THook<{ entity: TE }>["basic"],
TFull extends IBaseSchema = THook<{ entity: TE }>["full"],
>(
entity: TE,
options?: Omit<
TMutationOptions<string, Error, string, TBasic>,
"mutationFn" | "mutationKey"
>,
) => {
const api = useEntityApiClient<TAttr, TBasic, TFull>(entity);
const queryClient = useQueryClient();
const { invalidate = true, ...otherOptions } = options || {};
return useMutation({
mutationFn: async (id: string) => {
const result = await api.delete(id);
queryClient.removeQueries({
predicate: ({ queryKey }) => {
const [qType, qEntity, qId] = queryKey;
return (
qType === QueryType.item &&
isSameEntity(qEntity, entity) &&
qId === id
);
},
});
// Invalidate all counts & collections
if (invalidate) {
queryClient.removeQueries({
predicate: ({ queryKey }) => {
const [qType, qEntity] = queryKey;
return (
(qType === QueryType.count || qType === QueryType.collection) &&
isSameEntity(qEntity, entity)
);
},
});
}
return result;
},
...otherOptions,
});
};
export const useDeleteFromCache = <E extends keyof IEntityMapTypes>(
entity: E,
) => {
const queryClient = useQueryClient();
return (id: string) => {
queryClient.removeQueries({
predicate: ({ queryKey }) => {
const [qType, qEntity, qId] = queryKey;
return qType === QueryType.item && qEntity === entity && qId === id;
},
});
};
};