File size: 969 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 |
import type { AuthResponseDto, TwoFactorBackupDto } from "@reactive-resume/dto";
import { useMutation } from "@tanstack/react-query";
import type { AxiosResponse } from "axios";
import { axios } from "@/client/libs/axios";
import { queryClient } from "@/client/libs/query-client";
import { useAuthStore } from "@/client/stores/auth";
export const backupOtp = async (data: TwoFactorBackupDto) => {
const response = await axios.post<
AuthResponseDto,
AxiosResponse<AuthResponseDto>,
TwoFactorBackupDto
>("/auth/2fa/backup", data);
return response.data;
};
export const useBackupOtp = () => {
const setUser = useAuthStore((state) => state.setUser);
const {
error,
isPending: loading,
mutateAsync: backupOtpFn,
} = useMutation({
mutationFn: backupOtp,
onSuccess: (data) => {
setUser(data.user);
queryClient.setQueryData(["user"], data.user);
},
});
return { backupOtp: backupOtpFn, loading, error };
};
|