48
common/resources/client/workspace/requests/update-workspace.ts
Executable file
48
common/resources/client/workspace/requests/update-workspace.ts
Executable file
@@ -0,0 +1,48 @@
|
||||
import {useMutation} from '@tanstack/react-query';
|
||||
import {UseFormReturn} from 'react-hook-form';
|
||||
import {BackendResponse} from '../../http/backend-response/backend-response';
|
||||
import {toast} from '../../ui/toast/toast';
|
||||
import {apiClient, queryClient} from '../../http/query-client';
|
||||
import {WorkspaceQueryKeys} from './workspace-query-keys';
|
||||
import {Workspace} from '../types/workspace';
|
||||
import {onFormQueryError} from '../../errors/on-form-query-error';
|
||||
import {useDialogContext} from '../../ui/overlays/dialog/dialog-context';
|
||||
import {message} from '../../i18n/message';
|
||||
|
||||
interface Response extends BackendResponse {
|
||||
workspace: Workspace;
|
||||
}
|
||||
|
||||
export interface UpdateWorkspacePayload {
|
||||
id: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
function updateWorkspace({
|
||||
id,
|
||||
...props
|
||||
}: UpdateWorkspacePayload): Promise<Response> {
|
||||
return apiClient.put(`workspace/${id}`, props).then(r => r.data);
|
||||
}
|
||||
|
||||
export function useUpdateWorkspace(
|
||||
form: UseFormReturn<UpdateWorkspacePayload>,
|
||||
) {
|
||||
const {close} = useDialogContext();
|
||||
return useMutation({
|
||||
mutationFn: (props: UpdateWorkspacePayload) => updateWorkspace(props),
|
||||
onSuccess: response => {
|
||||
close();
|
||||
toast(message('Updated workspace'));
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: WorkspaceQueryKeys.fetchUserWorkspaces,
|
||||
});
|
||||
queryClient.invalidateQueries({
|
||||
queryKey: WorkspaceQueryKeys.workspaceWithMembers(
|
||||
response.workspace.id,
|
||||
),
|
||||
});
|
||||
},
|
||||
onError: r => onFormQueryError(r, form),
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user