94 lines
2.3 KiB
TypeScript
94 lines
2.3 KiB
TypeScript
import { Label } from "@radix-ui/react-label"
|
|
import { Input } from "./ui/input"
|
|
import { FieldName } from "@conform-to/react"
|
|
import { useId } from "react"
|
|
import { cn } from "~/utils"
|
|
import { Checkbox } from "~/components/ui/checkbox"
|
|
|
|
export const Field = ({
|
|
inputProps,
|
|
labelProps,
|
|
errors,
|
|
className
|
|
}: {
|
|
inputProps: {
|
|
name: FieldName<string>
|
|
} & React.HTMLProps<HTMLInputElement>
|
|
labelProps: React.LabelHTMLAttributes<HTMLLabelElement>
|
|
errors?: ListOfErrors
|
|
className?: string
|
|
}) => {
|
|
const fallbackId = useId()
|
|
const id = inputProps.id ?? fallbackId
|
|
const errorId = errors?.length ? `${id}-error` : undefined
|
|
return (
|
|
<div className={className}>
|
|
<Label {...labelProps} htmlFor={id} />
|
|
<Input
|
|
{...inputProps}
|
|
id={id}
|
|
aria-invalid={errorId ? true : undefined}
|
|
aria-describedby={errorId}
|
|
/>
|
|
<div className="min-h-[32px] px-4 pb-3 pt-1">
|
|
{errorId ? <ErrorList id={errorId} errors={errors} /> : null}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export const FieldCheckbox = ({
|
|
inputProps,
|
|
labelProps,
|
|
errors,
|
|
className
|
|
}: {
|
|
inputProps: {
|
|
name: FieldName<string>
|
|
} & React.ComponentPropsWithoutRef<typeof Checkbox>
|
|
labelProps: React.LabelHTMLAttributes<HTMLLabelElement>
|
|
errors?: ListOfErrors
|
|
className?: string
|
|
}) => {
|
|
const fallbackId = useId()
|
|
const id = inputProps.id ?? fallbackId
|
|
const errorId = errors?.length ? `${id}-error` : undefined
|
|
return (
|
|
<div
|
|
className={cn("space-x-2 flex items-center text-primary-2", className)}
|
|
>
|
|
<Checkbox
|
|
{...inputProps}
|
|
id={id}
|
|
aria-invalid={errorId ? true : undefined}
|
|
aria-describedby={errorId}
|
|
/>
|
|
<Label {...labelProps} htmlFor={id} />
|
|
<div className="min-h-[32px] px-4 pb-3 pt-1">
|
|
{errorId ? <ErrorList id={errorId} errors={errors} /> : null}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export type ListOfErrors = Array<string | null | undefined> | null | undefined
|
|
export function ErrorList({
|
|
id,
|
|
errors
|
|
}: {
|
|
errors?: ListOfErrors
|
|
id?: string
|
|
}) {
|
|
const errorsToRender = errors?.filter(Boolean)
|
|
if (!errorsToRender?.length) return null
|
|
return (
|
|
<ul id={id} className="flex flex-col gap-1">
|
|
{errorsToRender.map((e) => (
|
|
<li key={e} className="text-[10px] text-foreground-destructive">
|
|
{e}
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)
|
|
}
|