2022-08-30 19:46:52 +00:00
|
|
|
import { IdentityProvider } from "@prisma/client";
|
2022-12-07 20:53:44 +00:00
|
|
|
import { GetServerSidePropsContext } from "next";
|
2022-08-30 19:46:52 +00:00
|
|
|
import { Trans } from "next-i18next";
|
2022-09-15 16:59:48 +00:00
|
|
|
import { useForm } from "react-hook-form";
|
2022-08-30 19:46:52 +00:00
|
|
|
|
2022-09-06 18:23:17 +00:00
|
|
|
import { identityProviderNameMap } from "@calcom/lib/auth";
|
2022-08-30 19:46:52 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
|
|
import { trpc } from "@calcom/trpc/react";
|
2022-11-23 02:55:25 +00:00
|
|
|
import { Button, Form, getSettingsLayout as getLayout, Meta, PasswordField, showToast } from "@calcom/ui";
|
2022-08-30 19:46:52 +00:00
|
|
|
|
2022-12-07 20:53:44 +00:00
|
|
|
import { ssrInit } from "@server/lib/ssr";
|
|
|
|
|
2022-09-15 16:59:48 +00:00
|
|
|
type ChangePasswordFormValues = {
|
|
|
|
oldPassword: string;
|
|
|
|
newPassword: string;
|
|
|
|
};
|
|
|
|
|
2022-08-30 19:46:52 +00:00
|
|
|
const PasswordView = () => {
|
|
|
|
const { t } = useLocale();
|
2022-11-10 23:40:01 +00:00
|
|
|
const { data: user } = trpc.viewer.me.useQuery();
|
2022-08-30 19:46:52 +00:00
|
|
|
|
2022-11-10 23:40:01 +00:00
|
|
|
const mutation = trpc.viewer.auth.changePassword.useMutation({
|
2022-08-30 19:46:52 +00:00
|
|
|
onSuccess: () => {
|
2022-09-06 18:23:17 +00:00
|
|
|
showToast(t("password_has_been_changed"), "success");
|
2022-08-30 19:46:52 +00:00
|
|
|
},
|
|
|
|
onError: (error) => {
|
|
|
|
showToast(`${t("error_updating_password")}, ${error.message}`, "error");
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-09-15 16:59:48 +00:00
|
|
|
const formMethods = useForm<ChangePasswordFormValues>({
|
|
|
|
defaultValues: {
|
|
|
|
oldPassword: "",
|
|
|
|
newPassword: "",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const {
|
|
|
|
register,
|
|
|
|
formState: { isSubmitting },
|
|
|
|
} = formMethods;
|
|
|
|
|
|
|
|
const handleSubmit = (values: ChangePasswordFormValues) => {
|
|
|
|
const { oldPassword, newPassword } = values;
|
|
|
|
mutation.mutate({ oldPassword, newPassword });
|
|
|
|
};
|
2022-08-30 19:46:52 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
2022-09-29 16:19:03 +00:00
|
|
|
<Meta title={t("password")} description={t("password_description")} />
|
2022-08-30 19:46:52 +00:00
|
|
|
{user && user.identityProvider !== IdentityProvider.CAL ? (
|
|
|
|
<div>
|
|
|
|
<div className="mt-6">
|
|
|
|
<h2 className="font-cal text-lg font-medium leading-6 text-gray-900">
|
|
|
|
{t("account_managed_by_identity_provider", {
|
|
|
|
provider: identityProviderNameMap[user.identityProvider],
|
|
|
|
})}
|
|
|
|
</h2>
|
|
|
|
</div>
|
|
|
|
<p className="mt-1 text-sm text-gray-500">
|
|
|
|
{t("account_managed_by_identity_provider_description", {
|
|
|
|
provider: identityProviderNameMap[user.identityProvider],
|
|
|
|
})}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
) : (
|
2022-09-29 16:19:03 +00:00
|
|
|
<Form form={formMethods} handleSubmit={handleSubmit}>
|
2022-09-05 21:08:59 +00:00
|
|
|
<div className="max-w-[38rem] sm:flex sm:space-x-4">
|
|
|
|
<div className="flex-grow">
|
2022-09-29 16:19:03 +00:00
|
|
|
<PasswordField {...register("oldPassword")} label={t("old_password")} />
|
2022-09-05 21:08:59 +00:00
|
|
|
</div>
|
|
|
|
<div className="flex-grow">
|
2022-09-29 16:19:03 +00:00
|
|
|
<PasswordField {...register("newPassword")} label={t("new_password")} />
|
2022-09-05 21:08:59 +00:00
|
|
|
</div>
|
2022-08-30 19:46:52 +00:00
|
|
|
</div>
|
2022-09-05 21:08:59 +00:00
|
|
|
<p className="text-sm text-gray-600">
|
2022-09-29 16:19:03 +00:00
|
|
|
<Trans i18nKey="invalid_password_hint">
|
2022-08-30 19:46:52 +00:00
|
|
|
Password must be at least at least 7 characters, mix of uppercase & lowercase letters, and
|
|
|
|
contain at least 1 number
|
|
|
|
</Trans>
|
|
|
|
</p>
|
2022-09-15 16:59:48 +00:00
|
|
|
{/* TODO: Why is this Form not submitting? Hacky fix but works */}
|
|
|
|
<Button
|
|
|
|
color="primary"
|
|
|
|
className="mt-8"
|
2022-09-29 16:19:03 +00:00
|
|
|
type="submit"
|
|
|
|
disabled={isSubmitting || mutation.isLoading}>
|
2022-08-30 19:46:52 +00:00
|
|
|
{t("update")}
|
|
|
|
</Button>
|
|
|
|
</Form>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
PasswordView.getLayout = getLayout;
|
|
|
|
|
2022-12-07 20:53:44 +00:00
|
|
|
export const getServerSideProps = async (context: GetServerSidePropsContext) => {
|
|
|
|
const ssr = await ssrInit(context);
|
|
|
|
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
trpcState: ssr.dehydrate(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-08-30 19:46:52 +00:00
|
|
|
export default PasswordView;
|