mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9013497a5a
* dev: update email check endpoint * fix: auth magic login check * chore: updated the error code handler and handled authentication workflow * dev: add magic link login --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: guru_sainath <gurusainath007@gmail.com>
85 lines
3.0 KiB
TypeScript
85 lines
3.0 KiB
TypeScript
import { FC, FormEvent, useMemo, useState } from "react";
|
|
import { observer } from "mobx-react-lite";
|
|
// icons
|
|
import { CircleAlert, XCircle } from "lucide-react";
|
|
// types
|
|
import { IEmailCheckData } from "@plane/types";
|
|
// ui
|
|
import { Button, Input, Spinner } from "@plane/ui";
|
|
// helpers
|
|
import { cn } from "@/helpers/common.helper";
|
|
import { checkEmailValidity } from "@/helpers/string.helper";
|
|
|
|
type TAuthEmailForm = {
|
|
defaultEmail: string;
|
|
onSubmit: (data: IEmailCheckData) => Promise<void>;
|
|
};
|
|
|
|
export const AuthEmailForm: FC<TAuthEmailForm> = observer((props) => {
|
|
const { onSubmit, defaultEmail } = props;
|
|
// states
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
const [email, setEmail] = useState(defaultEmail);
|
|
const [isFocused, setFocused] = useState(false);
|
|
|
|
const emailError = useMemo(
|
|
() => (email && !checkEmailValidity(email) ? { email: "Email is invalid" } : undefined),
|
|
[email]
|
|
);
|
|
|
|
const handleFormSubmit = async (event: FormEvent<HTMLFormElement>) => {
|
|
event.preventDefault();
|
|
setIsSubmitting(true);
|
|
const payload: IEmailCheckData = {
|
|
email: email,
|
|
};
|
|
await onSubmit(payload);
|
|
setIsSubmitting(false);
|
|
};
|
|
|
|
const isButtonDisabled = email.length === 0 || Boolean(emailError?.email) || isSubmitting;
|
|
|
|
return (
|
|
<form onSubmit={handleFormSubmit} className="mt-5 space-y-4">
|
|
<div className="space-y-1">
|
|
<label className="text-sm text-onboarding-text-300 font-medium" htmlFor="email">
|
|
Email
|
|
</label>
|
|
<div
|
|
className={cn(
|
|
`relative flex items-center rounded-md bg-onboarding-background-200 border`,
|
|
!isFocused && Boolean(emailError?.email) ? `border-red-500` : `border-onboarding-border-100`
|
|
)}
|
|
>
|
|
<Input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
placeholder="name@example.com"
|
|
className={`disable-autofill-style h-[46px] w-full placeholder:text-onboarding-text-400 autofill:bg-red-500 border-0 focus:bg-none active:bg-transparent`}
|
|
onFocus={() => setFocused(true)}
|
|
onBlur={() => setFocused(false)}
|
|
autoFocus
|
|
/>
|
|
{email.length > 0 && (
|
|
<div className="flex-shrink-0 h-5 w-5 mr-2 bg-onboarding-background-200 hover:cursor-pointer">
|
|
<XCircle className="h-5 w-5 stroke-custom-text-400" onClick={() => setEmail("")} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
{emailError?.email && !isFocused && (
|
|
<p className="flex items-center gap-1 text-xs text-red-600 px-0.5">
|
|
<CircleAlert height={12} width={12} />
|
|
{emailError.email}
|
|
</p>
|
|
)}
|
|
</div>
|
|
<Button type="submit" variant="primary" className="w-full" size="lg" disabled={isButtonDisabled}>
|
|
{isSubmitting ? <Spinner height="20px" width="20px" /> : "Continue"}
|
|
</Button>
|
|
</form>
|
|
);
|
|
});
|