2021-10-13 11:35:25 +00:00
|
|
|
import debounce from "lodash/debounce";
|
2021-10-25 13:05:21 +00:00
|
|
|
import { GetServerSidePropsContext } from "next";
|
2021-09-22 19:52:38 +00:00
|
|
|
import { getCsrfToken } from "next-auth/client";
|
2021-06-29 08:45:54 +00:00
|
|
|
import Link from "next/link";
|
2021-10-25 13:05:21 +00:00
|
|
|
import React, { SyntheticEvent } from "react";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2021-09-03 20:51:21 +00:00
|
|
|
import { getSession } from "@lib/auth";
|
2021-10-14 14:24:21 +00:00
|
|
|
import { useLocale } from "@lib/hooks/useLocale";
|
2021-06-24 15:59:11 +00:00
|
|
|
|
2021-09-22 19:52:38 +00:00
|
|
|
import { HeadSeo } from "@components/seo/head-seo";
|
|
|
|
|
2021-10-25 13:05:21 +00:00
|
|
|
export default function ForgotPassword({ csrfToken }: { csrfToken: string }) {
|
|
|
|
const { t, i18n } = useLocale();
|
2021-06-24 15:59:11 +00:00
|
|
|
const [loading, setLoading] = React.useState(false);
|
2021-10-25 13:05:21 +00:00
|
|
|
const [error, setError] = React.useState<{ message: string } | null>(null);
|
2021-06-24 15:59:11 +00:00
|
|
|
const [success, setSuccess] = React.useState(false);
|
|
|
|
const [email, setEmail] = React.useState("");
|
|
|
|
|
2021-10-25 13:05:21 +00:00
|
|
|
const handleChange = (e: SyntheticEvent) => {
|
|
|
|
const target = e.target as typeof e.target & { value: string };
|
|
|
|
setEmail(target.value);
|
2021-06-24 15:59:11 +00:00
|
|
|
};
|
|
|
|
|
2021-10-25 13:05:21 +00:00
|
|
|
const submitForgotPasswordRequest = async ({ email }: { email: string }) => {
|
2021-06-24 15:59:11 +00:00
|
|
|
try {
|
|
|
|
const res = await fetch("/api/auth/forgot-password", {
|
|
|
|
method: "POST",
|
2021-10-25 13:05:21 +00:00
|
|
|
body: JSON.stringify({ email: email, language: i18n.language }),
|
2021-06-24 15:59:11 +00:00
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const json = await res.json();
|
|
|
|
if (!res.ok) {
|
|
|
|
setError(json);
|
|
|
|
} else {
|
|
|
|
setSuccess(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return json;
|
|
|
|
} catch (reason) {
|
2021-10-14 14:24:21 +00:00
|
|
|
setError({ message: t("unexpected_error_try_again") });
|
2021-06-24 15:59:11 +00:00
|
|
|
} finally {
|
|
|
|
setLoading(false);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const debouncedHandleSubmitPasswordRequest = debounce(submitForgotPasswordRequest, 250);
|
|
|
|
|
2021-10-25 13:05:21 +00:00
|
|
|
const handleSubmit = async (e: SyntheticEvent) => {
|
2021-06-24 15:59:11 +00:00
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (!email) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (loading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setLoading(true);
|
|
|
|
setError(null);
|
|
|
|
setSuccess(false);
|
|
|
|
|
|
|
|
await debouncedHandleSubmitPasswordRequest({ email });
|
|
|
|
};
|
|
|
|
|
|
|
|
const Success = () => {
|
|
|
|
return (
|
|
|
|
<div className="space-y-6">
|
2021-10-14 14:24:21 +00:00
|
|
|
<h2 className="mt-6 text-center text-3xl font-extrabold text-gray-900">{t("done")}</h2>
|
|
|
|
<p>{t("check_email_reset_password")}</p>
|
2021-06-24 15:59:11 +00:00
|
|
|
{error && <p className="text-red-600">{error.message}</p>}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="min-h-screen bg-gray-50 flex flex-col justify-center py-12 sm:px-6 lg:px-8">
|
2021-10-14 14:24:21 +00:00
|
|
|
<HeadSeo title={t("forgot_password")} description={t("forgot_password")} />
|
2021-06-24 15:59:11 +00:00
|
|
|
<div className="mt-8 sm:mx-auto sm:w-full sm:max-w-md">
|
|
|
|
<div className="bg-white py-8 px-4 mx-2 shadow rounded-lg sm:px-10 space-y-6">
|
|
|
|
{success && <Success />}
|
|
|
|
{!success && (
|
|
|
|
<>
|
|
|
|
<div className="space-y-6">
|
2021-09-22 21:23:19 +00:00
|
|
|
<h2 className="font-cal mt-6 text-center text-3xl font-extrabold text-gray-900">
|
2021-10-14 14:24:21 +00:00
|
|
|
{t("forgot_password")}
|
2021-09-22 21:23:19 +00:00
|
|
|
</h2>
|
2021-10-14 14:24:21 +00:00
|
|
|
<p>{t("reset_instructions")}</p>
|
2021-06-24 15:59:11 +00:00
|
|
|
{error && <p className="text-red-600">{error.message}</p>}
|
|
|
|
</div>
|
|
|
|
<form className="space-y-6" onSubmit={handleSubmit} action="#">
|
|
|
|
<input name="csrfToken" type="hidden" defaultValue={csrfToken} hidden />
|
|
|
|
<div>
|
|
|
|
<label htmlFor="email" className="block text-sm font-medium text-gray-700">
|
2021-10-14 14:24:21 +00:00
|
|
|
{t("email_address")}
|
2021-06-24 15:59:11 +00:00
|
|
|
</label>
|
|
|
|
<div className="mt-1">
|
|
|
|
<input
|
|
|
|
onChange={handleChange}
|
|
|
|
id="email"
|
|
|
|
name="email"
|
|
|
|
type="email"
|
2021-09-29 21:33:18 +00:00
|
|
|
inputMode="email"
|
2021-06-24 15:59:11 +00:00
|
|
|
autoComplete="email"
|
|
|
|
placeholder="john.doe@example.com"
|
|
|
|
required
|
2021-11-04 14:30:37 +00:00
|
|
|
className="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm placeholder-gray-400 focus:outline-none focus:ring-black focus:border-brand sm:text-sm"
|
2021-06-24 15:59:11 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<button
|
|
|
|
type="submit"
|
|
|
|
disabled={loading}
|
2021-11-04 14:30:37 +00:00
|
|
|
className={`w-full flex justify-center py-2 px-4 border border-transparent rounded-md shadow-sm text-sm font-medium text-white bg-brand hover:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-black ${
|
2021-06-24 15:59:11 +00:00
|
|
|
loading ? "cursor-not-allowed" : ""
|
|
|
|
}`}>
|
|
|
|
{loading && (
|
|
|
|
<svg
|
|
|
|
className="animate-spin -ml-1 mr-3 h-5 w-5 text-white"
|
|
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
|
|
fill="none"
|
|
|
|
viewBox="0 0 24 24">
|
|
|
|
<circle
|
|
|
|
className="opacity-25"
|
|
|
|
cx="12"
|
|
|
|
cy="12"
|
|
|
|
r="10"
|
|
|
|
stroke="currentColor"
|
|
|
|
strokeWidth="4"></circle>
|
|
|
|
<path
|
|
|
|
className="opacity-75"
|
|
|
|
fill="currentColor"
|
|
|
|
d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
|
|
</svg>
|
|
|
|
)}
|
2021-10-14 14:24:21 +00:00
|
|
|
{t("request_password_reset")}
|
2021-06-24 15:59:11 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
2021-06-29 08:45:54 +00:00
|
|
|
<div className="space-y-2">
|
|
|
|
<Link href="/auth/login">
|
|
|
|
<button
|
|
|
|
type="button"
|
2021-08-02 16:32:45 +00:00
|
|
|
className="w-full flex justify-center py-2 px-4 text-sm font-medium text-black focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-black">
|
2021-10-14 14:24:21 +00:00
|
|
|
{t("login")}
|
2021-06-29 08:45:54 +00:00
|
|
|
</button>
|
|
|
|
</Link>
|
|
|
|
</div>
|
2021-06-24 15:59:11 +00:00
|
|
|
</form>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-10-25 13:05:21 +00:00
|
|
|
ForgotPassword.getInitialProps = async (context: GetServerSidePropsContext) => {
|
2021-08-09 10:35:06 +00:00
|
|
|
const { req, res } = context;
|
|
|
|
const session = await getSession({ req });
|
|
|
|
|
|
|
|
if (session) {
|
|
|
|
res.writeHead(302, { Location: "/" });
|
|
|
|
res.end();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-06-24 15:59:11 +00:00
|
|
|
return {
|
2021-08-09 10:35:06 +00:00
|
|
|
csrfToken: await getCsrfToken(context),
|
2021-06-24 15:59:11 +00:00
|
|
|
};
|
|
|
|
};
|