2023-07-17 07:30:44 +00:00
|
|
|
import React, { useEffect, useState } from "react";
|
2023-06-06 16:06:13 +00:00
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import Image from "next/image";
|
|
|
|
|
2023-08-03 09:58:22 +00:00
|
|
|
// next-themes
|
|
|
|
import { useTheme } from "next-themes";
|
2023-06-06 16:06:13 +00:00
|
|
|
// react-hook-form
|
|
|
|
import { useForm } from "react-hook-form";
|
|
|
|
// hooks
|
|
|
|
import useToast from "hooks/use-toast";
|
|
|
|
// services
|
|
|
|
import userService from "services/user.service";
|
|
|
|
// layouts
|
|
|
|
import DefaultLayout from "layouts/default-layout";
|
|
|
|
// ui
|
2023-07-17 07:30:44 +00:00
|
|
|
import { Input, PrimaryButton, Spinner } from "components/ui";
|
|
|
|
// images
|
|
|
|
import BluePlaneLogoWithoutText from "public/plane-logos/blue-without-text.png";
|
2023-06-06 16:06:13 +00:00
|
|
|
// types
|
|
|
|
import type { NextPage } from "next";
|
|
|
|
|
|
|
|
type FormData = {
|
|
|
|
password: string;
|
|
|
|
confirmPassword: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
const ResetPasswordPage: NextPage = () => {
|
2023-07-17 07:30:44 +00:00
|
|
|
const [isLoading, setIsLoading] = useState(true);
|
|
|
|
|
2023-06-06 16:06:13 +00:00
|
|
|
const router = useRouter();
|
|
|
|
const { uidb64, token } = router.query;
|
|
|
|
|
|
|
|
const { setToastAlert } = useToast();
|
|
|
|
|
2023-08-03 09:58:22 +00:00
|
|
|
const { setTheme } = useTheme();
|
|
|
|
|
2023-06-06 16:06:13 +00:00
|
|
|
const {
|
|
|
|
register,
|
|
|
|
handleSubmit,
|
|
|
|
formState: { errors, isSubmitting },
|
|
|
|
} = useForm<FormData>();
|
|
|
|
|
|
|
|
const onSubmit = async (formData: FormData) => {
|
|
|
|
if (!uidb64 || !token) return;
|
|
|
|
|
|
|
|
if (formData.password !== formData.confirmPassword) {
|
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
|
|
|
message: "Passwords do not match.",
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
new_password: formData.password,
|
|
|
|
confirm_password: formData.confirmPassword,
|
|
|
|
};
|
|
|
|
|
|
|
|
await userService
|
|
|
|
.resetPassword(uidb64.toString(), token.toString(), payload)
|
|
|
|
.then(() => {
|
|
|
|
setToastAlert({
|
|
|
|
type: "success",
|
|
|
|
title: "Success!",
|
|
|
|
message: "Password reset successfully. You can now login with your new password.",
|
|
|
|
});
|
|
|
|
router.push("/");
|
|
|
|
})
|
2023-06-23 14:00:32 +00:00
|
|
|
.catch((err) =>
|
2023-06-06 16:06:13 +00:00
|
|
|
setToastAlert({
|
|
|
|
type: "error",
|
|
|
|
title: "Error!",
|
2023-06-23 14:00:32 +00:00
|
|
|
message:
|
|
|
|
err?.error ||
|
|
|
|
"Something went wrong. Please try again later or contact the support team.",
|
2023-06-06 16:06:13 +00:00
|
|
|
})
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-08-03 09:58:22 +00:00
|
|
|
useEffect(() => {
|
|
|
|
setTheme("system");
|
|
|
|
}, [setTheme]);
|
|
|
|
|
2023-07-17 07:30:44 +00:00
|
|
|
useEffect(() => {
|
|
|
|
if (parseInt(process.env.NEXT_PUBLIC_ENABLE_OAUTH || "0")) router.push("/");
|
|
|
|
else setIsLoading(false);
|
|
|
|
}, [router]);
|
|
|
|
|
|
|
|
if (isLoading)
|
|
|
|
return (
|
|
|
|
<div className="grid place-items-center h-screen w-full">
|
|
|
|
<Spinner />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
2023-06-06 16:06:13 +00:00
|
|
|
return (
|
|
|
|
<DefaultLayout>
|
2023-07-17 07:30:44 +00:00
|
|
|
<>
|
|
|
|
<div className="hidden sm:block sm:fixed border-r-[0.5px] border-custom-border-200 h-screen w-[0.5px] top-0 left-20 lg:left-32" />
|
|
|
|
<div className="fixed grid place-items-center bg-custom-background-100 sm:py-5 top-11 sm:top-12 left-7 sm:left-16 lg:left-28">
|
|
|
|
<div className="grid place-items-center bg-custom-background-100">
|
|
|
|
<div className="h-[30px] w-[30px]">
|
|
|
|
<Image src={BluePlaneLogoWithoutText} alt="Plane Logo" />
|
2023-06-06 16:06:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-17 07:30:44 +00:00
|
|
|
</>
|
2023-07-18 13:32:33 +00:00
|
|
|
<div className="grid place-items-center h-full w-full overflow-y-auto py-5 px-7">
|
2023-07-17 07:30:44 +00:00
|
|
|
<div className="w-full">
|
|
|
|
<h1 className="text-center text-2xl sm:text-2.5xl font-semibold text-custom-text-100">
|
|
|
|
Reset your password
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
<form
|
|
|
|
className="space-y-4 mt-10 w-full sm:w-[360px] mx-auto"
|
|
|
|
onSubmit={handleSubmit(onSubmit)}
|
|
|
|
>
|
|
|
|
<div className="space-y-1">
|
|
|
|
<Input
|
|
|
|
id="password"
|
|
|
|
type="password"
|
|
|
|
name="password"
|
|
|
|
register={register}
|
|
|
|
validations={{
|
|
|
|
required: "Password is required",
|
|
|
|
}}
|
|
|
|
error={errors.password}
|
|
|
|
placeholder="Enter new password..."
|
2023-07-18 09:30:06 +00:00
|
|
|
className="border-custom-border-300 h-[46px]"
|
2023-07-17 07:30:44 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="space-y-1">
|
|
|
|
<Input
|
|
|
|
id="confirmPassword"
|
|
|
|
type="password"
|
|
|
|
name="confirmPassword"
|
|
|
|
register={register}
|
|
|
|
validations={{
|
|
|
|
required: "Password confirmation is required",
|
|
|
|
}}
|
|
|
|
error={errors.confirmPassword}
|
|
|
|
placeholder="Confirm new password..."
|
2023-07-18 09:30:06 +00:00
|
|
|
className="border-custom-border-300 h-[46px]"
|
2023-07-17 07:30:44 +00:00
|
|
|
/>
|
|
|
|
</div>
|
2023-07-18 09:30:06 +00:00
|
|
|
<PrimaryButton
|
|
|
|
type="submit"
|
|
|
|
className="w-full text-center h-[46px]"
|
|
|
|
loading={isSubmitting}
|
|
|
|
>
|
2023-07-17 07:30:44 +00:00
|
|
|
{isSubmitting ? "Resetting..." : "Reset"}
|
|
|
|
</PrimaryButton>
|
|
|
|
</form>
|
|
|
|
</div>
|
2023-06-06 16:06:13 +00:00
|
|
|
</div>
|
|
|
|
</DefaultLayout>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ResetPasswordPage;
|