2022-11-19 14:21:26 +00:00
|
|
|
import React, { useState } from "react";
|
|
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// ui
|
|
|
|
import { CheckCircleIcon } from "@heroicons/react/20/solid";
|
2023-01-26 18:12:20 +00:00
|
|
|
import { Button, Input } from "components/ui";
|
|
|
|
// services
|
|
|
|
import authenticationService from "services/authentication.service";
|
|
|
|
// icons
|
2022-11-19 14:21:26 +00:00
|
|
|
|
|
|
|
// types
|
2023-01-26 18:12:20 +00:00
|
|
|
type EmailCodeFormValues = {
|
2022-11-19 14:21:26 +00:00
|
|
|
email: string;
|
|
|
|
key?: string;
|
|
|
|
token?: string;
|
|
|
|
};
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
export const EmailCodeForm = ({ onSuccess }: any) => {
|
2022-11-19 14:21:26 +00:00
|
|
|
const [codeSent, setCodeSent] = useState(false);
|
|
|
|
const {
|
|
|
|
register,
|
|
|
|
handleSubmit,
|
|
|
|
setError,
|
|
|
|
setValue,
|
2023-01-26 18:12:20 +00:00
|
|
|
formState: { errors, isSubmitting, isValid, isDirty },
|
|
|
|
} = useForm<EmailCodeFormValues>({
|
2022-11-19 14:21:26 +00:00
|
|
|
defaultValues: {
|
|
|
|
email: "",
|
|
|
|
key: "",
|
|
|
|
token: "",
|
|
|
|
},
|
|
|
|
mode: "onChange",
|
|
|
|
reValidateMode: "onChange",
|
|
|
|
});
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const onSubmit = ({ email }: EmailCodeFormValues) => {
|
2022-11-19 14:21:26 +00:00
|
|
|
console.log(email);
|
|
|
|
authenticationService
|
|
|
|
.emailCode({ email })
|
|
|
|
.then((res) => {
|
|
|
|
setValue("key", res.key);
|
|
|
|
setCodeSent(true);
|
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.log(err);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
const handleSignin = (formData: EmailCodeFormValues) => {
|
2022-11-19 14:21:26 +00:00
|
|
|
authenticationService
|
|
|
|
.magicSignIn(formData)
|
2023-01-26 18:12:20 +00:00
|
|
|
.then((response) => {
|
|
|
|
onSuccess(response);
|
2022-11-19 14:21:26 +00:00
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
console.log(error);
|
2023-01-26 18:12:20 +00:00
|
|
|
setError("token" as keyof EmailCodeFormValues, {
|
2022-11-19 14:21:26 +00:00
|
|
|
type: "manual",
|
|
|
|
message: error.error,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<form
|
|
|
|
className="mt-5 space-y-5"
|
|
|
|
onSubmit={codeSent ? handleSubmit(handleSignin) : handleSubmit(onSubmit)}
|
|
|
|
>
|
|
|
|
{codeSent && (
|
|
|
|
<div className="rounded-md bg-green-50 p-4">
|
|
|
|
<div className="flex">
|
|
|
|
<div className="flex-shrink-0">
|
|
|
|
<CheckCircleIcon className="h-5 w-5 text-green-400" aria-hidden="true" />
|
|
|
|
</div>
|
|
|
|
<div className="ml-3">
|
|
|
|
<p className="text-sm font-medium text-green-800">
|
|
|
|
Please check your mail for code.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div>
|
|
|
|
<Input
|
|
|
|
id="email"
|
|
|
|
type="email"
|
|
|
|
name="email"
|
|
|
|
register={register}
|
|
|
|
validations={{
|
|
|
|
required: "Email ID is required",
|
|
|
|
validate: (value) =>
|
|
|
|
/^(([^<>()[\]\\.,;:\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"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{codeSent && (
|
|
|
|
<div>
|
|
|
|
<Input
|
|
|
|
id="token"
|
|
|
|
type="token"
|
|
|
|
name="token"
|
|
|
|
register={register}
|
|
|
|
validations={{
|
|
|
|
required: "Code is required",
|
|
|
|
}}
|
|
|
|
error={errors.token}
|
|
|
|
placeholder="Enter code"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div>
|
|
|
|
<Button
|
|
|
|
disabled={isSubmitting || (!isValid && isDirty)}
|
|
|
|
className="w-full text-center"
|
|
|
|
type="submit"
|
|
|
|
>
|
|
|
|
{isSubmitting ? "Signing in..." : codeSent ? "Sign In" : "Continue with Email ID"}
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|