Portal/rsconcept/frontend/src/features/library/backend/useSetEditors.tsx

45 lines
1.5 KiB
TypeScript
Raw Normal View History

2025-01-23 19:41:31 +03:00
import { useMutation, useQueryClient } from '@tanstack/react-query';
2025-02-20 20:22:05 +03:00
import { type IOperationSchemaDTO } from '@/features/oss/backend/types';
import { type IRSFormDTO } from '@/features/rsform/backend/types';
2025-01-23 19:41:31 +03:00
2025-02-12 21:36:03 +03:00
import { KEYS } from '@/backend/configuration';
2025-01-23 19:41:31 +03:00
import { libraryApi } from './api';
export const useSetEditors = () => {
const client = useQueryClient();
const mutation = useMutation({
2025-02-19 19:15:57 +03:00
mutationKey: [KEYS.global_mutation, libraryApi.baseKey, 'set-location'],
2025-01-23 19:41:31 +03:00
mutationFn: libraryApi.setEditors,
onSuccess: (_, variables) => {
const ossKey = KEYS.composite.ossItem({ itemID: variables.itemID });
const ossData: IOperationSchemaDTO | undefined = client.getQueryData(ossKey);
if (ossData) {
client.setQueryData(ossKey, { ...ossData, editors: variables.editors });
return Promise.allSettled(
ossData.items
.map(item => {
if (!item.result) {
return;
}
const itemKey = KEYS.composite.rsItem({ itemID: item.result });
return client.invalidateQueries({ queryKey: itemKey });
})
.filter(item => !!item)
);
}
const rsKey = KEYS.composite.rsItem({ itemID: variables.itemID });
client.setQueryData(rsKey, (prev: IRSFormDTO | undefined) =>
!prev ? undefined : { ...prev, editors: variables.editors }
);
},
onError: () => client.invalidateQueries()
2025-01-23 19:41:31 +03:00
});
return {
2025-02-12 13:07:26 +03:00
setEditors: (data: { itemID: number; editors: number[] }) => mutation.mutateAsync(data)
2025-01-23 19:41:31 +03:00
};
};