2025-08-28 18:27:07 +02:00
|
|
|
import { Eye, EyeOff } from "lucide-react";
|
|
|
|
|
import toast from "react-hot-toast";
|
2025-08-07 14:50:40 +02:00
|
|
|
import { z } from "zod/v4";
|
2025-08-04 17:45:44 +02:00
|
|
|
import {
|
2025-08-28 18:27:07 +02:00
|
|
|
Form,
|
|
|
|
|
FormControl,
|
|
|
|
|
FormField,
|
|
|
|
|
FormItem,
|
|
|
|
|
FormLabel,
|
|
|
|
|
FormMessage,
|
2025-08-04 17:45:44 +02:00
|
|
|
} 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";
|
2025-08-28 18:27:07 +02:00
|
|
|
import { useZodForm } from "~/lib/zodForm";
|
|
|
|
|
import { useTranslation } from "~/providers/I18nProvider";
|
|
|
|
|
import { api } from "~/utils/api";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
|
|
|
|
export const ChangePasswordForm = () => {
|
2025-08-28 18:27:07 +02:00
|
|
|
const {
|
|
|
|
|
isVisible,
|
|
|
|
|
getStrengthColor,
|
|
|
|
|
passwordRefine,
|
|
|
|
|
getStrengthTxt,
|
|
|
|
|
strengthScore,
|
|
|
|
|
toggleVisibility,
|
|
|
|
|
} = useStrongPassword();
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
const ChangePasswordFormSchema = z
|
|
|
|
|
.object({
|
|
|
|
|
newpassword: z.string(),
|
2025-08-29 16:18:32 +02:00
|
|
|
oldpassword: z.string(),
|
2025-08-28 18:27:07 +02:00
|
|
|
})
|
|
|
|
|
.superRefine(({ newpassword }, refinementContext) => {
|
|
|
|
|
passwordRefine({
|
|
|
|
|
password: newpassword,
|
|
|
|
|
path: "newpassword",
|
2025-08-29 16:18:32 +02:00
|
|
|
refinementContext,
|
2025-08-28 18:27:07 +02:00
|
|
|
});
|
|
|
|
|
});
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
type ChangePasswordFormValues = z.infer<typeof ChangePasswordFormSchema>;
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
const { locale, t } = useTranslation();
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
z.config(z.locales[locale]());
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
const form = useZodForm(ChangePasswordFormSchema, {
|
|
|
|
|
defaultValues: {
|
|
|
|
|
newpassword: "",
|
2025-08-29 16:18:32 +02:00
|
|
|
oldpassword: "",
|
2025-08-28 18:27:07 +02:00
|
|
|
},
|
|
|
|
|
});
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
const { mutate } = api.auth.ChangePassword.useMutation({
|
2025-08-29 16:18:32 +02:00
|
|
|
onError: (error) => {
|
|
|
|
|
toast.error(error.message);
|
|
|
|
|
},
|
2025-08-28 18:27:07 +02:00
|
|
|
onSuccess: () => {
|
|
|
|
|
toast.success(t.pwReset.pwAggiornata);
|
|
|
|
|
form.reset();
|
|
|
|
|
},
|
|
|
|
|
});
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
function onSubmit(fields: ChangePasswordFormValues) {
|
|
|
|
|
mutate({
|
|
|
|
|
newpassword: fields.newpassword,
|
2025-08-29 16:18:32 +02:00
|
|
|
oldpassword: fields.oldpassword,
|
2025-08-28 18:27:07 +02:00
|
|
|
});
|
|
|
|
|
}
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
return (
|
|
|
|
|
<Form {...form}>
|
2025-08-29 16:18:32 +02:00
|
|
|
<form className="space-y-8 px-0.5" onSubmit={form.handleSubmit(onSubmit)}>
|
2025-08-28 18:27:07 +02:00
|
|
|
<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"
|
2025-08-29 16:18:32 +02:00
|
|
|
id="oldpw"
|
2025-08-28 18:27:07 +02:00
|
|
|
/>
|
|
|
|
|
</FormControl>
|
|
|
|
|
</FormItem>
|
|
|
|
|
)}
|
|
|
|
|
/>
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
<FormField
|
|
|
|
|
control={form.control}
|
|
|
|
|
name="newpassword"
|
|
|
|
|
render={({ field }) => (
|
|
|
|
|
<FormItem>
|
|
|
|
|
<div className="flex flex-col gap-x-2">
|
2025-08-29 16:18:32 +02:00
|
|
|
<FormLabel className="text-neutral-600" htmlFor="newpassword">
|
2025-08-28 18:27:07 +02:00
|
|
|
{t.pwReset.newPw}
|
|
|
|
|
</FormLabel>
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
<FormMessage
|
|
|
|
|
className={cn(
|
|
|
|
|
"whitespace-pre-wrap",
|
|
|
|
|
getStrengthTxt(strengthScore),
|
|
|
|
|
)}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-28 18:27:07 +02:00
|
|
|
<FormControl>
|
|
|
|
|
<div className="relative">
|
|
|
|
|
<Input
|
|
|
|
|
{...field}
|
2025-08-29 16:18:32 +02:00
|
|
|
aria-describedby="password-strength"
|
|
|
|
|
aria-invalid={form.getFieldState("newpassword").invalid}
|
2025-08-28 18:27:07 +02:00
|
|
|
autoComplete="new-password"
|
|
|
|
|
className="pe-9"
|
2025-08-29 16:18:32 +02:00
|
|
|
id="newpassword"
|
2025-08-28 18:27:07 +02:00
|
|
|
onChange={async (e) => {
|
|
|
|
|
field.onChange(e);
|
|
|
|
|
await form.trigger("newpassword");
|
|
|
|
|
}}
|
2025-08-29 16:18:32 +02:00
|
|
|
placeholder="Password"
|
|
|
|
|
type={isVisible ? "text" : "password"}
|
2025-08-28 18:27:07 +02:00
|
|
|
/>
|
|
|
|
|
<button
|
2025-08-29 16:18:32 +02:00
|
|
|
aria-controls="password"
|
2025-08-28 18:27:07 +02:00
|
|
|
aria-label={isVisible ? "Hide password" : "Show password"}
|
|
|
|
|
aria-pressed={isVisible}
|
2025-08-29 16:18:32 +02:00
|
|
|
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"
|
2025-08-28 18:27:07 +02:00
|
|
|
>
|
|
|
|
|
{isVisible ? (
|
2025-08-29 16:18:32 +02:00
|
|
|
<EyeOff aria-hidden="true" size={16} strokeWidth={2} />
|
2025-08-28 18:27:07 +02:00
|
|
|
) : (
|
2025-08-29 16:18:32 +02:00
|
|
|
<Eye aria-hidden="true" size={16} strokeWidth={2} />
|
2025-08-28 18:27:07 +02:00
|
|
|
)}
|
|
|
|
|
</button>
|
|
|
|
|
<div
|
2025-08-29 16:18:32 +02:00
|
|
|
aria-label="Password strength"
|
|
|
|
|
aria-valuemax={4}
|
|
|
|
|
aria-valuemin={0}
|
|
|
|
|
aria-valuenow={strengthScore}
|
2025-08-28 18:27:07 +02:00
|
|
|
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>
|
|
|
|
|
);
|
2025-08-04 17:45:44 +02:00
|
|
|
};
|