infoalloggi-monorepo/apps/infoalloggi/src/forms/FormNewUser.tsx

248 lines
6.8 KiB
TypeScript
Raw Normal View History

2025-08-28 18:27:07 +02:00
import { Eye, EyeOff } from "lucide-react";
2025-08-04 17:45:44 +02:00
import toast from "react-hot-toast";
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";
2025-08-28 18:27:07 +02:00
import { PhoneInput } from "~/components/phone-input";
2025-08-04 17:45:44 +02:00
import { Button, buttonVariants } from "~/components/ui/button";
import { useStrongPassword } from "~/hooks/useStrongPassword";
import { generatePassword } from "~/lib/basicPwGenerator";
2025-08-28 18:27:07 +02:00
import { cn } from "~/lib/utils";
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 FormNewUser = ({
2025-08-28 18:27:07 +02:00
setOpen,
2025-08-04 17:45:44 +02:00
}: {
2025-08-28 18:27:07 +02:00
setOpen: (status: boolean) => void;
2025-08-04 17:45:44 +02:00
}) => {
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 NewUserSchema = z
.object({
2025-08-29 16:18:32 +02:00
cognome: z.string().nonempty("Inserisci un cognome valido"),
2025-08-28 18:27:07 +02:00
email: z.email(),
nome: z.string().nonempty("Inserisci un nome valido"),
2025-08-29 16:18:32 +02:00
password: z.string(),
2025-08-28 18:27:07 +02:00
telefono: z.string().nonempty("Inserisci un numero di telefono"),
})
.superRefine(({ password }, refinementContext) => {
passwordRefine({
password,
path: "password",
2025-08-29 16:18:32 +02:00
refinementContext,
2025-08-28 18:27:07 +02:00
});
});
type NewUserFormValues = z.infer<typeof NewUserSchema>;
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
// This can come from your database or API.
const defaultValues: NewUserFormValues = {
cognome: "",
email: "",
2025-08-29 16:18:32 +02:00
nome: "",
2025-08-28 18:27:07 +02:00
password: "",
telefono: "",
};
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(NewUserSchema, {
defaultValues: defaultValues,
});
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
const utils = api.useUtils();
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
const { mutate } = api.auth.addUserAdmin.useMutation({
2025-08-29 16:18:32 +02:00
onError: (error) => {
toast.error(error.message);
},
2025-08-28 18:27:07 +02:00
onSuccess: async () => {
toast.success(t.newUser.accountCreato);
await utils.users.getUsersWChatInfo.invalidate();
await utils.stats.adminDashStats.invalidate();
setOpen(false);
},
});
function onSubmit(fields: NewUserFormValues) {
mutate({
cognome: fields.cognome,
email: fields.email,
2025-08-29 16:18:32 +02:00
nome: fields.nome,
2025-08-28 18:27:07 +02:00
password: fields.password,
telefono: fields.telefono.replace(/\s/g, ""),
});
}
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="nome"
render={({ field }) => (
<FormItem>
<div className="flex flex-wrap items-center gap-x-2">
<FormLabel htmlFor="nome">{t.newUser.nome}</FormLabel>
<FormMessage />
</div>
<FormControl>
<Input placeholder="" {...field} id="nome" />
</FormControl>
</FormItem>
)}
/>
<FormField
control={form.control}
name="cognome"
render={({ field }) => (
<FormItem>
<div className="flex flex-wrap items-center gap-x-2">
<FormLabel htmlFor="cognome">{t.newUser.cognome}</FormLabel>
<FormMessage />
</div>
<FormControl>
<Input placeholder="" {...field} id="cognome" />
</FormControl>
</FormItem>
)}
/>
<FormField
control={form.control}
name="email"
render={({ field }) => (
<FormItem>
<div className="flex flex-wrap items-center gap-x-2">
<FormLabel htmlFor="email">{t.newUser.email}</FormLabel>{" "}
<FormMessage />
</div>
<FormControl>
<Input placeholder="esempio@email.com" {...field} id="email" />
</FormControl>
</FormItem>
)}
/>
<FormField
control={form.control}
name="password"
render={({ field }) => (
<FormItem>
<div className="flex flex-col gap-x-2">
<div className="flex items-center justify-between">
<FormLabel htmlFor="password">
{t.auth.signup.password}
</FormLabel>{" "}
<button
className={cn(
buttonVariants({
size: "sm",
2025-08-29 16:18:32 +02:00
variant: "outline",
2025-08-28 18:27:07 +02:00
}),
)}
onClick={async () => {
form.setValue("password", generatePassword());
await form.trigger("password");
}}
2025-08-29 16:18:32 +02:00
type="button"
2025-08-28 18:27:07 +02:00
>
genera password
</button>
</div>
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("password").invalid}
2025-08-28 18:27:07 +02:00
className="pe-9"
2025-08-29 16:18:32 +02:00
id="password"
2025-08-28 18:27:07 +02:00
onChange={async (e) => {
field.onChange(e);
await form.trigger("password");
}}
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-10-10 16:18:43 +02:00
className="absolute end-0 top-1 flex size-9 items-center justify-center rounded-e-lg text-muted-foreground/80 transition-shadow hover:text-foreground focus-visible:border focus-visible:border-ring focus-visible:text-foreground focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring/30 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50"
2025-08-29 16:18:32 +02:00
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-10-10 16:18:43 +02:00
className="mt-3 mb-4 h-1 w-full overflow-hidden rounded-full bg-border"
2025-08-28 18:27:07 +02:00
role="progressbar"
>
<div
className={cn(
"h-full transition-all duration-500 ease-out",
getStrengthColor(strengthScore),
)}
style={{ width: `${(strengthScore / 4) * 100}%` }}
/>
</div>
</div>
</FormControl>
</FormItem>
)}
/>
2025-08-28 18:27:07 +02:00
<FormField
control={form.control}
name="telefono"
render={({ field }) => (
<FormItem>
<div className="flex flex-wrap items-center gap-x-2">
<FormLabel htmlFor="telefono">{t.profile.telefono}</FormLabel>
<FormMessage />
</div>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<FormControl>
<PhoneInput {...field} id="telefono" />
</FormControl>
</FormItem>
)}
/>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Button type="submit">{t.newUser.creaAccount}</Button>
</form>
</Form>
);
2025-08-04 17:45:44 +02:00
};