'use client' import React, { useEffect, useState } from 'react' import { useTranslation } from 'react-i18next' import { useRouter } from 'next/navigation' import { useForm } from 'react-hook-form' import { z } from 'zod' import { zodResolver } from '@hookform/resolvers/zod' import Loading from '../components/base/loading' import Button from '@/app/components/base/button' import { fetchInitValidateStatus, fetchSetupStatus, sendForgotPasswordEmail, } from '@/service/common' import type { InitValidateStatusResponse, SetupStatusResponse } from '@/models/common' const accountFormSchema = z.object({ email: z .string() .min(1, { message: 'login.error.emailInValid' }) .email('login.error.emailInValid'), }) type AccountFormValues = z.infer const ForgotPasswordForm = () => { const { t } = useTranslation() const router = useRouter() const [loading, setLoading] = useState(true) const [isEmailSent, setIsEmailSent] = useState(false) const { register, trigger, getValues, formState: { errors } } = useForm({ resolver: zodResolver(accountFormSchema), defaultValues: { email: '' }, }) const handleSendResetPasswordEmail = async (email: string) => { try { const res = await sendForgotPasswordEmail({ url: '/forgot-password', body: { email }, }) if (res.result === 'success') setIsEmailSent(true) else console.error('Email verification failed') } catch (error) { console.error('Request failed:', error) } } const handleSendResetPasswordClick = async () => { if (isEmailSent) { router.push('/signin') } else { const isValid = await trigger('email') if (isValid) { const email = getValues('email') await handleSendResetPasswordEmail(email) } } } useEffect(() => { fetchSetupStatus().then((res: SetupStatusResponse) => { fetchInitValidateStatus().then((res: InitValidateStatusResponse) => { if (res.status === 'not_started') window.location.href = '/init' }) setLoading(false) }) }, []) return ( loading ? : <>

{isEmailSent ? t('login.resetLinkSent') : t('login.forgotPassword')}

{isEmailSent ? t('login.checkEmailForResetLink') : t('login.forgotPasswordDesc')}

{!isEmailSent && (
{errors.email && {t(`${errors.email?.message}`)}}
)}
) } export default ForgotPasswordForm