forked from github/plane
123 lines
3.6 KiB
TypeScript
123 lines
3.6 KiB
TypeScript
import React, { useEffect } from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
import { XCircle } from "lucide-react";
|
|
// services
|
|
import { Button, Input } from "@plane/ui";
|
|
import { ESignInSteps } from "@/components/accounts";
|
|
import { checkEmailValidity } from "@/helpers/string.helper";
|
|
import { AuthService } from "@/services/authentication.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
// helpers
|
|
// types
|
|
import { IEmailCheckData } from "types/auth";
|
|
// constants
|
|
|
|
type Props = {
|
|
handleStepChange: (step: ESignInSteps) => void;
|
|
updateEmail: (email: string) => void;
|
|
};
|
|
|
|
type TEmailFormValues = {
|
|
email: string;
|
|
};
|
|
|
|
const authService = new AuthService();
|
|
|
|
export const EmailForm: React.FC<Props> = (props) => {
|
|
const { handleStepChange, updateEmail } = props;
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
const {
|
|
control,
|
|
formState: { errors, isSubmitting, isValid },
|
|
handleSubmit,
|
|
setFocus,
|
|
} = useForm<TEmailFormValues>({
|
|
defaultValues: {
|
|
email: "",
|
|
},
|
|
mode: "onChange",
|
|
reValidateMode: "onChange",
|
|
});
|
|
|
|
const handleFormSubmit = async (data: TEmailFormValues) => {
|
|
const payload: IEmailCheckData = {
|
|
email: data.email,
|
|
};
|
|
|
|
// update the global email state
|
|
updateEmail(data.email);
|
|
|
|
await authService
|
|
.emailCheck(payload)
|
|
.then((res) => {
|
|
// if the password has been autoset, send the user to magic sign-in
|
|
if (res.is_password_autoset) handleStepChange(ESignInSteps.UNIQUE_CODE);
|
|
// if the password has not been autoset, send them to password sign-in
|
|
else handleStepChange(ESignInSteps.PASSWORD);
|
|
})
|
|
.catch((err) =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: err?.error ?? "Something went wrong. Please try again.",
|
|
})
|
|
);
|
|
};
|
|
|
|
useEffect(() => {
|
|
setFocus("email");
|
|
}, [setFocus]);
|
|
|
|
return (
|
|
<>
|
|
<h1 className="sm:text-2.5xl text-center text-2xl font-medium text-onboarding-text-100">
|
|
Get on your flight deck
|
|
</h1>
|
|
<p className="mt-2.5 text-center text-sm text-onboarding-text-200">
|
|
Create or join a workspace. Start with your e-mail.
|
|
</p>
|
|
|
|
<form onSubmit={handleSubmit(handleFormSubmit)} className="mx-auto mt-8 space-y-4 sm:w-96">
|
|
<div className="space-y-1">
|
|
<Controller
|
|
control={control}
|
|
name="email"
|
|
rules={{
|
|
required: "Email is required",
|
|
validate: (value) => checkEmailValidity(value) || "Email is invalid",
|
|
}}
|
|
render={({ field: { value, onChange, ref } }) => (
|
|
<div className="relative flex items-center rounded-md bg-onboarding-background-200">
|
|
<Input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
value={value}
|
|
onChange={onChange}
|
|
ref={ref}
|
|
hasError={Boolean(errors.email)}
|
|
placeholder="name@company.com"
|
|
className="h-[46px] w-full border border-onboarding-border-100 pr-12 placeholder:text-onboarding-text-400"
|
|
/>
|
|
{value.length > 0 && (
|
|
<XCircle
|
|
className="absolute right-3 h-5 w-5 stroke-custom-text-400 hover:cursor-pointer"
|
|
onClick={() => onChange("")}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
/>
|
|
</div>
|
|
<Button type="submit" variant="primary" className="w-full" size="xl" disabled={!isValid} loading={isSubmitting}>
|
|
Continue
|
|
</Button>
|
|
</form>
|
|
</>
|
|
);
|
|
};
|