2022-11-23 02:55:25 +00:00
|
|
|
import { SyntheticEvent, useState } from "react";
|
2021-09-22 19:52:38 +00:00
|
|
|
|
2022-09-07 23:29:24 +00:00
|
|
|
import { ErrorCode } from "@calcom/lib/auth";
|
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Button, showToast } from "@calcom/ui";
|
2022-03-16 23:36:43 +00:00
|
|
|
|
2021-10-12 13:11:33 +00:00
|
|
|
const ChangePasswordSection = () => {
|
2021-09-21 09:29:20 +00:00
|
|
|
const [oldPassword, setOldPassword] = useState("");
|
|
|
|
const [newPassword, setNewPassword] = useState("");
|
|
|
|
const [errorMessage, setErrorMessage] = useState<string | null>(null);
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
2022-09-07 23:29:24 +00:00
|
|
|
const { t, isLocaleReady } = useLocale();
|
|
|
|
// hold display until the locale is loaded
|
|
|
|
if (!isLocaleReady) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-10-08 11:43:48 +00:00
|
|
|
|
|
|
|
const errorMessages: { [key: string]: string } = {
|
|
|
|
[ErrorCode.IncorrectPassword]: t("current_incorrect_password"),
|
|
|
|
[ErrorCode.NewPasswordMatchesOld]: t("new_password_matches_old_password"),
|
|
|
|
};
|
2021-09-21 09:29:20 +00:00
|
|
|
|
|
|
|
async function changePasswordHandler(e: SyntheticEvent) {
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (isSubmitting) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
setIsSubmitting(true);
|
|
|
|
setErrorMessage(null);
|
|
|
|
|
|
|
|
try {
|
|
|
|
const response = await fetch("/api/auth/changepw", {
|
|
|
|
method: "PATCH",
|
|
|
|
body: JSON.stringify({ oldPassword, newPassword }),
|
|
|
|
headers: {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (response.status === 200) {
|
|
|
|
setOldPassword("");
|
|
|
|
setNewPassword("");
|
2021-10-13 12:13:00 +00:00
|
|
|
showToast(t("password_has_been_changed"), "success");
|
2021-09-21 09:29:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const body = await response.json();
|
2021-10-08 11:43:48 +00:00
|
|
|
setErrorMessage(errorMessages[body.error] || `${t("something_went_wrong")}${t("please_try_again")}`);
|
2021-09-21 09:29:20 +00:00
|
|
|
} catch (err) {
|
2021-10-08 11:43:48 +00:00
|
|
|
console.error(t("error_changing_password"), err);
|
|
|
|
setErrorMessage(`${t("something_went_wrong")}${t("please_try_again")}`);
|
2021-09-21 09:29:20 +00:00
|
|
|
} finally {
|
|
|
|
setIsSubmitting(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<form className="divide-y divide-gray-200 lg:col-span-9" onSubmit={changePasswordHandler}>
|
2022-04-16 02:58:34 +00:00
|
|
|
<div className="py-6 lg:pb-5">
|
|
|
|
<div className="my-3">
|
|
|
|
<h2 className="font-cal text-lg font-medium leading-6 text-gray-900">{t("change_password")}</h2>
|
|
|
|
</div>
|
2022-05-09 11:43:27 +00:00
|
|
|
<div className="flex flex-col space-y-2 sm:flex-row sm:space-y-0">
|
|
|
|
<div className="w-full ltr:mr-2 rtl:ml-2 sm:w-1/2">
|
2021-09-21 09:29:20 +00:00
|
|
|
<label htmlFor="current_password" className="block text-sm font-medium text-gray-700">
|
2021-10-08 11:43:48 +00:00
|
|
|
{t("current_password")}
|
2021-09-21 09:29:20 +00:00
|
|
|
</label>
|
|
|
|
<div className="mt-1">
|
|
|
|
<input
|
|
|
|
type="password"
|
|
|
|
value={oldPassword}
|
|
|
|
onInput={(e) => setOldPassword(e.currentTarget.value)}
|
|
|
|
name="current_password"
|
|
|
|
id="current_password"
|
|
|
|
required
|
2022-07-27 02:24:00 +00:00
|
|
|
className="block w-full rounded-sm border-gray-300 text-sm"
|
2021-10-08 11:43:48 +00:00
|
|
|
placeholder={t("your_old_password")}
|
2021-09-21 09:29:20 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-05-09 11:43:27 +00:00
|
|
|
<div className="w-full sm:w-1/2">
|
2021-09-21 09:29:20 +00:00
|
|
|
<label htmlFor="new_password" className="block text-sm font-medium text-gray-700">
|
2021-10-08 11:43:48 +00:00
|
|
|
{t("new_password")}
|
2021-09-21 09:29:20 +00:00
|
|
|
</label>
|
|
|
|
<div className="mt-1">
|
|
|
|
<input
|
|
|
|
type="password"
|
|
|
|
name="new_password"
|
|
|
|
id="new_password"
|
|
|
|
value={newPassword}
|
|
|
|
required
|
|
|
|
onInput={(e) => setNewPassword(e.currentTarget.value)}
|
2022-07-27 02:24:00 +00:00
|
|
|
className="block w-full rounded-sm border-gray-300 text-sm"
|
2021-10-08 11:43:48 +00:00
|
|
|
placeholder={t("super_secure_new_password")}
|
2021-09-21 09:29:20 +00:00
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{errorMessage && <p className="mt-1 text-sm text-red-700">{errorMessage}</p>}
|
2022-05-09 11:43:27 +00:00
|
|
|
<div className="flex py-8 sm:justify-end">
|
2022-04-16 02:58:34 +00:00
|
|
|
<Button color="secondary" type="submit">
|
|
|
|
{t("save")}
|
|
|
|
</Button>
|
2021-09-21 09:29:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ChangePasswordSection;
|