mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
577118ca02
* chore: sign up workflow updated * chore: sign in workflow updated * refactor: folder structure * chore: forgot password workflow * refactor: form component props * chore: forgot password popover for instances with smtp unconfigured * chore: updated UX copy * chore: update reset password link * chore: update email placeholder
111 lines
3.2 KiB
TypeScript
111 lines
3.2 KiB
TypeScript
import React from "react";
|
|
import { Controller, useForm } from "react-hook-form";
|
|
import { XCircle } from "lucide-react";
|
|
import { observer } from "mobx-react-lite";
|
|
// services
|
|
import { AuthService } from "services/auth.service";
|
|
// hooks
|
|
import useToast from "hooks/use-toast";
|
|
// ui
|
|
import { Button, Input } from "@plane/ui";
|
|
// helpers
|
|
import { checkEmailValidity } from "helpers/string.helper";
|
|
// types
|
|
import { IEmailCheckData } from "@plane/types";
|
|
|
|
type Props = {
|
|
onSubmit: () => void;
|
|
updateEmail: (email: string) => void;
|
|
};
|
|
|
|
type TEmailFormValues = {
|
|
email: string;
|
|
};
|
|
|
|
const authService = new AuthService();
|
|
|
|
export const SignUpEmailForm: React.FC<Props> = observer((props) => {
|
|
const { onSubmit, updateEmail } = props;
|
|
// hooks
|
|
const { setToastAlert } = useToast();
|
|
const {
|
|
control,
|
|
formState: { errors, isSubmitting, isValid },
|
|
handleSubmit,
|
|
} = 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(() => onSubmit())
|
|
.catch((err) =>
|
|
setToastAlert({
|
|
type: "error",
|
|
title: "Error!",
|
|
message: err?.error ?? "Something went wrong. Please try again.",
|
|
})
|
|
);
|
|
};
|
|
|
|
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 } }) => (
|
|
<div className="relative flex items-center rounded-md bg-onboarding-background-200">
|
|
<Input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
value={value}
|
|
onChange={onChange}
|
|
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"
|
|
autoFocus
|
|
/>
|
|
{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}>
|
|
Verify
|
|
</Button>
|
|
</form>
|
|
</>
|
|
);
|
|
});
|