32 lines
962 B
TypeScript
Executable File
32 lines
962 B
TypeScript
Executable File
import {useMutation} from '@tanstack/react-query';
|
|
import {apiClient, queryClient} from '@common/http/query-client';
|
|
import {showHttpErrorToast} from '@common/utils/http/show-http-error-toast';
|
|
import {NormalizedModel} from '@common/datatable/filters/normalized-model';
|
|
import {channelQueryKey} from '@common/channels/requests/use-channel';
|
|
|
|
interface Payload {
|
|
channelId: number | string;
|
|
item: NormalizedModel;
|
|
}
|
|
|
|
export function useRemoveFromChannel() {
|
|
return useMutation({
|
|
mutationFn: (payload: Payload) => removeFromChannel(payload),
|
|
onSuccess: async (_, payload) => {
|
|
await queryClient.invalidateQueries({
|
|
queryKey: channelQueryKey(payload.channelId),
|
|
});
|
|
},
|
|
onError: r => showHttpErrorToast(r),
|
|
});
|
|
}
|
|
|
|
function removeFromChannel({channelId, item}: Payload) {
|
|
return apiClient
|
|
.post(`channel/${channelId}/remove`, {
|
|
itemId: item.id,
|
|
itemType: item.model_type,
|
|
})
|
|
.then(r => r.data);
|
|
}
|