react-code-dataset
/
Reactive-Resume
/apps
/client
/src
/services
/auth
/two-factor-authentication
/backup-otp.tsx
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 }; | |
}; | |