Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
common
/
resources
/
client
/
comments
/
requests
/
Editing: use-restore-comments.ts
import {useMutation} from '@tanstack/react-query'; import {apiClient} from '../../http/query-client'; import {BackendResponse} from '../../http/backend-response/backend-response'; import {toast} from '../../ui/toast/toast'; import {message} from '../../i18n/message'; import {showHttpErrorToast} from '../../utils/http/show-http-error-toast'; interface Response extends BackendResponse { // } interface Payload { commentIds: number[]; } export function useRestoreComments() { return useMutation((payload: Payload) => restoreComment(payload), { onSuccess: (response, payload) => { toast( message('Restored [one 1 comment|other :count comments]', { values: {count: payload.commentIds.length}, }) ); }, onError: err => showHttpErrorToast(err), }); } function restoreComment({commentIds}: Payload): Promise<Response> { return apiClient.post('comment/restore', {commentIds}).then(r => r.data); }
Save
Cancel