infoalloggi-monorepo/apps/infoalloggi/src/forms/FormChangePassword.tsx
2025-08-29 16:18:32 +02:00

170 lines
4.6 KiB
TypeScript

import { Eye, EyeOff } from "lucide-react";
import toast from "react-hot-toast";
import { z } from "zod/v4";
import {
Form,
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
} from "~/components/custom_ui/form";
import Input from "~/components/custom_ui/input";
import { Button } from "~/components/ui/button";
import { useStrongPassword } from "~/hooks/useStrongPassword";
import { cn } from "~/lib/utils";
import { useZodForm } from "~/lib/zodForm";
import { useTranslation } from "~/providers/I18nProvider";
import { api } from "~/utils/api";
export const ChangePasswordForm = () => {
const {
isVisible,
getStrengthColor,
passwordRefine,
getStrengthTxt,
strengthScore,
toggleVisibility,
} = useStrongPassword();
const ChangePasswordFormSchema = z
.object({
newpassword: z.string(),
oldpassword: z.string(),
})
.superRefine(({ newpassword }, refinementContext) => {
passwordRefine({
password: newpassword,
path: "newpassword",
refinementContext,
});
});
type ChangePasswordFormValues = z.infer<typeof ChangePasswordFormSchema>;
const { locale, t } = useTranslation();
z.config(z.locales[locale]());
const form = useZodForm(ChangePasswordFormSchema, {
defaultValues: {
newpassword: "",
oldpassword: "",
},
});
const { mutate } = api.auth.ChangePassword.useMutation({
onError: (error) => {
toast.error(error.message);
},
onSuccess: () => {
toast.success(t.pwReset.pwAggiornata);
form.reset();
},
});
function onSubmit(fields: ChangePasswordFormValues) {
mutate({
newpassword: fields.newpassword,
oldpassword: fields.oldpassword,
});
}
return (
<Form {...form}>
<form className="space-y-8 px-0.5" onSubmit={form.handleSubmit(onSubmit)}>
<FormField
control={form.control}
name="oldpassword"
render={({ field }) => (
<FormItem>
<div className="flex flex-wrap items-center gap-x-2">
<FormLabel htmlFor="oldpw">{t.pwReset.oldPw}</FormLabel>
<FormMessage />
</div>
<FormControl>
<Input
placeholder=""
{...field}
autoComplete="current-password"
id="oldpw"
/>
</FormControl>
</FormItem>
)}
/>
<FormField
control={form.control}
name="newpassword"
render={({ field }) => (
<FormItem>
<div className="flex flex-col gap-x-2">
<FormLabel className="text-neutral-600" htmlFor="newpassword">
{t.pwReset.newPw}
</FormLabel>
<FormMessage
className={cn(
"whitespace-pre-wrap",
getStrengthTxt(strengthScore),
)}
/>
</div>
<FormControl>
<div className="relative">
<Input
{...field}
aria-describedby="password-strength"
aria-invalid={form.getFieldState("newpassword").invalid}
autoComplete="new-password"
className="pe-9"
id="newpassword"
onChange={async (e) => {
field.onChange(e);
await form.trigger("newpassword");
}}
placeholder="Password"
type={isVisible ? "text" : "password"}
/>
<button
aria-controls="password"
aria-label={isVisible ? "Hide password" : "Show password"}
aria-pressed={isVisible}
className="text-muted-foreground/80 hover:text-foreground focus-visible:border-ring focus-visible:text-foreground focus-visible:ring-ring/30 absolute end-0 top-1 flex size-9 items-center justify-center rounded-e-lg transition-shadow focus-visible:border focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:outline-hidden disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
onClick={toggleVisibility}
type="button"
>
{isVisible ? (
<EyeOff aria-hidden="true" size={16} strokeWidth={2} />
) : (
<Eye aria-hidden="true" size={16} strokeWidth={2} />
)}
</button>
<div
aria-label="Password strength"
aria-valuemax={4}
aria-valuemin={0}
aria-valuenow={strengthScore}
className="bg-border mt-3 mb-4 h-1 w-full overflow-hidden rounded-full"
role="progressbar"
>
<div
className={cn(
"h-full transition-all duration-500 ease-out",
getStrengthColor(strengthScore),
)}
style={{ width: `${(strengthScore / 4) * 100}%` }}
/>
</div>
</div>
</FormControl>
</FormItem>
)}
/>
<Button type="submit">{t.pwReset.aggiorna}</Button>
</form>
</Form>
);
};