import React, { useState } from "react"; // react hook form import { useForm } from "react-hook-form"; // ui import { Button, Input } from "ui"; import authenticationService from "lib/services/authentication.service"; // icons import { CheckCircleIcon } from "@heroicons/react/20/solid"; // types type SignIn = { email: string; key?: string; token?: string; }; const EmailCodeForm = ({ onSuccess }: any) => { const [codeSent, setCodeSent] = useState(false); const { register, handleSubmit, setError, setValue, formState: { errors, isSubmitting, dirtyFields, isValid, isDirty }, } = useForm({ defaultValues: { email: "", key: "", token: "", }, mode: "onChange", reValidateMode: "onChange", }); const onSubmit = ({ email }: SignIn) => { console.log(email); authenticationService .emailCode({ email }) .then((res) => { setValue("key", res.key); setCodeSent(true); }) .catch((err) => { console.log(err); }); }; const handleSignin = (formData: SignIn) => { authenticationService .magicSignIn(formData) .then(async (response) => { await onSuccess(response); }) .catch((error) => { console.log(error); setError("token" as keyof SignIn, { type: "manual", message: error.error, }); }); }; return ( <>
{codeSent && (

Please check your mail for code.

)}
/^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/.test( value ) || "Email ID is not valid", }} error={errors.email} placeholder="Enter your Email ID" />
{codeSent && (
)}
); }; export default EmailCodeForm;