File size: 1,179 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
import { useMutation, UseMutationOptions, useQueryClient } from '@tanstack/react-query';
import { useCallback } from 'react';
import wp from 'calypso/lib/wp';
import { USE_ATOMIC_SSH_KEYS_QUERY_KEY } from './use-atomic-ssh-keys';
interface MutationVariables {
name: string;
}
interface MutationResponse {
message: string;
}
interface MutationError {
code: string;
message: string;
}
export const useAttachSshKeyMutation = (
siteId: number,
options: UseMutationOptions< MutationResponse, MutationError, MutationVariables > = {}
) => {
const queryClient = useQueryClient();
const mutation = useMutation( {
mutationFn: async ( { name }: MutationVariables ) =>
wp.req.post( {
path: `/sites/${ siteId }/hosting/ssh-keys`,
apiNamespace: 'wpcom/v2',
body: { name },
} ),
...options,
onSuccess: async ( ...args ) => {
await queryClient.invalidateQueries( {
queryKey: [ USE_ATOMIC_SSH_KEYS_QUERY_KEY, siteId ],
} );
options.onSuccess?.( ...args );
},
} );
const { mutate, isPending } = mutation;
const attachSshKey = useCallback( ( args: MutationVariables ) => mutate( args ), [ mutate ] );
return { attachSshKey, isPending };
};
|