"use client"; import { getInputProps, useForm, type FieldMetadata } from "@conform-to/react"; import { getZodConstraint, parseWithZod } from "@conform-to/zod"; import { Label } from "@radix-ui/react-label"; import { signIn } from "~/actions/auth"; import { signInSchema as schema } from "~/schema/auth"; import Form from "next/form"; import { useActionState } from "react"; import { type z } from "zod"; import { CheckboxConform } from "./conform-inputs/checkbox"; import { Button } from "./ui/button"; import { Input } from "./ui/input"; export function SignInForm() { const [lastResult, action, isSubmitting] = useActionState(signIn, undefined); const [form, fields] = useForm({ id: "signin", lastResult, constraint: getZodConstraint(schema), shouldValidate: "onBlur", onValidate({ formData }) { return parseWithZod(formData, { schema }); }, }); return (

{form.errors?.join(", ")}

); } function Field({ meta, label, placeholder, type, }: { meta: FieldMetadata< string, Omit, "rememberMe">, string[] >; label: string; placeholder?: string; type: "email" | "password"; }) { const { key: _key, ...inputProps } = getInputProps(meta, { type }); return (

{meta.errors?.join(", ")}

); }