Files
kan/apps/web/src/views/settings/components/ChangePasswordConfirmation.tsx
Vedant 4f57fc45a7 feat: add change password feature (#145)
* feat: add change password feature

* chore: update translations

---------

Co-authored-by: Henry <henry_ball@hotmail.co.uk>
2025-08-17 21:21:19 +01:00

185 lines
5.2 KiB
TypeScript

import { useRouter } from "next/navigation";
import { zodResolver } from "@hookform/resolvers/zod";
import { t } from "@lingui/core/macro";
import { useMutation } from "@tanstack/react-query";
import { env } from "next-runtime-env";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { authClient } from "@kan/auth/client";
import Button from "~/components/Button";
import Input from "~/components/Input";
import { useModal } from "~/providers/modal";
import { usePopup } from "~/providers/popup";
import { api } from "~/utils/api";
const FormSchema = z
.object({
currentPassword: z.string().min(1, t`Current password is required`),
newPassword: z
.string()
.min(8, t`Password must be at least 8 characters`)
.min(1, t`New password is required`),
confirmPassword: z.string().min(1, t`Please confirm your new password`),
})
.refine((data) => data.newPassword === data.confirmPassword, {
message: t`Passwords do not match`,
path: ["confirmPassword"],
})
.refine((data) => data.currentPassword !== data.newPassword, {
message: t`New password must be different from current password`,
path: ["newPassword"],
});
type FormValues = z.infer<typeof FormSchema>;
export function ChangePasswordFormConfirmation() {
const { closeModal } = useModal();
const { showPopup } = usePopup();
const router = useRouter();
const utils = api.useUtils();
const {
register,
handleSubmit,
formState: { errors, isValid },
reset,
setError,
} = useForm<FormValues>({
resolver: zodResolver(FormSchema),
mode: "onChange",
});
const changePasswordMutation = useMutation({
mutationFn: async (data: FormValues) => {
const response = await authClient.changePassword({
newPassword: data.newPassword,
currentPassword: data.currentPassword,
revokeOtherSessions: true,
});
if (response?.error) {
throw new Error(response?.error.message || "Invalid Password");
}
},
onSuccess: async () => {
closeModal();
showPopup({
header: t`Password Changed`,
message: t`Your password has been changed.`,
icon: "success",
});
utils.invalidate();
reset();
router.push("/");
},
onError: async (error: any) => {
const errorMessage = error.message.toLowerCase();
if (errorMessage.includes("invalid password")) {
setError("currentPassword", {
type: "manual",
message: t`The current password you entered is incorrect.`,
});
} else {
closeModal();
showPopup({
header: t`Error Changing Password`,
message: t`An unexpected error occurred. Please try again later.`,
icon: "error",
});
}
},
});
const onSubmit = (data: FormValues) => {
changePasswordMutation.mutate(data);
};
const handleCancel = () => {
reset();
closeModal();
};
return (
<div className="p-5">
<div className="flex w-full flex-col justify-between pb-4">
<h2 className="text-md pb-4 font-medium dark:text-white">{t`Change Password`}</h2>
<p className="mb-4 text-sm text-light-900">
{t`Enter your current password and choose a new secure password.`}
</p>
</div>
<form onSubmit={handleSubmit(onSubmit)}>
<div className="space-y-2">
<div>
<Input
id="currentPassword"
type="password"
{...register("currentPassword")}
placeholder={t`Enter your current password`}
/>
{errors.currentPassword && (
<p className="mt-2 text-xs text-red-400">
{errors.currentPassword.message}
</p>
)}
</div>
<div>
<Input
id="newPassword"
type="password"
{...register("newPassword")}
placeholder={t`Enter your new password`}
/>
{errors.newPassword && (
<p className="mt-2 text-xs text-red-400">
{errors.newPassword.message}
</p>
)}
</div>
<div>
<Input
id="confirmPassword"
type="password"
{...register("confirmPassword")}
placeholder={t`Confirm your new password`}
/>
{errors.confirmPassword && (
<p className="mt-2 text-xs text-red-400">
{errors.confirmPassword.message}
</p>
)}
</div>
</div>
<div className="mt-[1.5rem] flex items-center gap-4">
<Button
variant="secondary"
onClick={handleCancel}
type="button"
fullWidth
size="lg"
>
{t`Cancel`}
</Button>
<Button
variant="primary"
type="submit"
disabled={!isValid || changePasswordMutation.isPending}
isLoading={changePasswordMutation.isPending}
fullWidth
size="lg"
>
{t`Change Password`}
</Button>
</div>
</form>
</div>
);
}