Vercel/src/components/FieldSetWithStatus.tsx
2023-09-08 11:16:01 -05:00

53 lines
1.0 KiB
TypeScript

'use client';
import { LegacyRef } from 'react';
import { experimental_useFormStatus as useFormStatus } from 'react-dom';
export default function FieldSetWithStatus({
id,
label,
value,
onChange,
required,
readOnly,
type = 'text',
inputRef,
}: {
id: string
label: string
value: string
onChange?: (value: string) => void
required?: boolean
readOnly?: boolean
type?: 'text' | 'password'
inputRef?: LegacyRef<HTMLInputElement>
}) {
const { pending } = useFormStatus();
return (
<div className="space-y-1">
<label
className="flex gap-2"
htmlFor={id}
>
{label}
{required &&
<span className="text-gray-400 dark:text-gray-600">
(Required)
</span>}
</label>
<input
ref={inputRef}
id={id}
name={id}
value={value}
onChange={e => onChange?.(e.target.value)}
type={type}
autoComplete="off"
readOnly={readOnly || pending}
className="w-full"
/>
</div>
);
};