import React, { useState } from "react"; import { Controller, useForm } from "react-hook-form"; import { CornerDownLeft, XCircle } from "lucide-react"; // services import { AuthService } from "services/auth.service"; import { UserService } from "services/user.service"; // hooks import useToast from "hooks/use-toast"; import useTimer from "hooks/use-timer"; // ui import { Button, Input } from "@plane/ui"; // helpers import { checkEmailValidity } from "helpers/string.helper"; // types import { IEmailCheckData, IMagicSignInData } from "types/auth"; // constants import { ESignInSteps } from "components/account"; type Props = { email: string; updateEmail: (email: string) => void; handleStepChange: (step: ESignInSteps) => void; handleSignInRedirection: () => Promise; }; type TUniqueCodeFormValues = { email: string; token: string; }; const defaultValues: TUniqueCodeFormValues = { email: "", token: "", }; // services const authService = new AuthService(); const userService = new UserService(); export const UniqueCodeForm: React.FC = (props) => { const { email, updateEmail, handleStepChange, handleSignInRedirection } = props; // states const [isRequestingNewCode, setIsRequestingNewCode] = useState(false); // toast alert const { setToastAlert } = useToast(); // timer const { timer: resendTimerCode, setTimer: setResendCodeTimer } = useTimer(); // form info const { control, formState: { dirtyFields, errors, isSubmitting, isValid }, getValues, handleSubmit, reset, } = useForm({ defaultValues: { ...defaultValues, email, }, mode: "onChange", reValidateMode: "onChange", }); const handleUniqueCodeSignIn = async (formData: TUniqueCodeFormValues) => { const payload: IMagicSignInData = { email: formData.email, key: `magic_${formData.email}`, token: formData.token, }; await authService .magicSignIn(payload) .then(async () => { const currentUser = await userService.currentUser(); if (currentUser.is_password_autoset) handleStepChange(ESignInSteps.OPTIONAL_SET_PASSWORD); else await handleSignInRedirection(); }) .catch((err) => setToastAlert({ type: "error", title: "Error!", message: err?.error ?? "Something went wrong. Please try again.", }) ); }; const handleSendNewLink = async (formData: TUniqueCodeFormValues) => { const payload: IEmailCheckData = { email: formData.email, type: "magic_code", }; await authService .emailCheck(payload) .then(() => { setToastAlert({ type: "success", title: "Success!", message: "A new unique code has been sent to your email.", }); reset({ email: formData.email, token: "", }); }) .catch((err) => setToastAlert({ type: "error", title: "Error!", message: err?.error ?? "Something went wrong. Please try again.", }) ); }; const handleFormSubmit = async (formData: TUniqueCodeFormValues) => { if (dirtyFields.email) await handleSendNewLink(formData); else await handleUniqueCodeSignIn(formData); }; const handleRequestNewCode = async () => { setIsRequestingNewCode(true); await handleSendNewLink(getValues()) .then(() => setResendCodeTimer(30)) .finally(() => setIsRequestingNewCode(false)); }; const isRequestNewCodeDisabled = isRequestingNewCode || resendTimerCode > 0; return ( <>

Moving to the runway

Paste the code you got at {email} below.

checkEmailValidity(value) || "Email is invalid", }} render={({ field: { value, onChange, ref } }) => (
{ updateEmail(e.target.value); onChange(e.target.value); }} onBlur={() => { if (dirtyFields.email) handleSendNewLink(getValues()); }} ref={ref} hasError={Boolean(errors.email)} placeholder="orville.wright@firstflight.com" className="w-full h-[46px] placeholder:text-onboarding-text-400 border border-onboarding-border-100 pr-12" /> {value.length > 0 && ( onChange("")} /> )}
)} /> {dirtyFields.email && ( )}
( )} />
); };