2021-10-12 09:35:44 +00:00
|
|
|
import { useId } from "@radix-ui/react-id";
|
|
|
|
import { forwardRef, ReactNode } from "react";
|
|
|
|
import { FormProvider, UseFormReturn } from "react-hook-form";
|
|
|
|
|
|
|
|
import classNames from "@lib/classNames";
|
|
|
|
|
2021-10-18 07:02:25 +00:00
|
|
|
type InputProps = Omit<JSX.IntrinsicElements["input"], "name"> & { name: string };
|
|
|
|
export const Input = forwardRef<HTMLInputElement, InputProps>(function Input(props, ref) {
|
2021-10-12 09:35:44 +00:00
|
|
|
return (
|
|
|
|
<input
|
|
|
|
{...props}
|
|
|
|
ref={ref}
|
|
|
|
className={classNames(
|
|
|
|
"mt-1 block w-full border border-gray-300 rounded-sm shadow-sm py-2 px-3 focus:outline-none focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm",
|
|
|
|
props.className
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
export function Label(props: JSX.IntrinsicElements["label"]) {
|
|
|
|
return (
|
|
|
|
<label {...props} className={classNames("block text-sm font-medium text-gray-700", props.className)}>
|
|
|
|
{props.children}
|
|
|
|
</label>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const TextField = forwardRef<
|
|
|
|
HTMLInputElement,
|
|
|
|
{
|
|
|
|
label: ReactNode;
|
|
|
|
} & React.ComponentProps<typeof Input> & {
|
|
|
|
labelProps?: React.ComponentProps<typeof Label>;
|
|
|
|
}
|
|
|
|
>(function TextField(props, ref) {
|
|
|
|
const id = useId();
|
|
|
|
const { label, ...passThroughToInput } = props;
|
|
|
|
|
|
|
|
// TODO: use `useForm()` from RHF and get error state here too!
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<Label htmlFor={id} {...props.labelProps}>
|
|
|
|
{label}
|
|
|
|
</Label>
|
|
|
|
<Input id={id} {...passThroughToInput} ref={ref} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
|
|
export const Form = forwardRef<HTMLFormElement, { form: UseFormReturn<any> } & JSX.IntrinsicElements["form"]>(
|
|
|
|
function Form(props, ref) {
|
|
|
|
const { form, ...passThrough } = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<FormProvider {...form}>
|
|
|
|
<form ref={ref} {...passThrough}>
|
|
|
|
{props.children}
|
|
|
|
</form>
|
|
|
|
</FormProvider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
);
|
2021-10-18 07:02:25 +00:00
|
|
|
|
|
|
|
export function FieldsetLegend(props: JSX.IntrinsicElements["legend"]) {
|
|
|
|
return (
|
|
|
|
<legend {...props} className={classNames("text-sm font-medium text-gray-700", props.className)}>
|
|
|
|
{props.children}
|
|
|
|
</legend>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function InputGroupBox(props: JSX.IntrinsicElements["div"]) {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
{...props}
|
|
|
|
className={classNames("p-2 bg-white border border-gray-300 rounded-sm space-y-2", props.className)}>
|
|
|
|
{props.children}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|