Uecko_ERP/packages/rdx-ui/src/components/form/TextField.tsx

70 lines
1.7 KiB
TypeScript
Raw Normal View History

2025-07-09 17:56:15 +00:00
import {
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
Input,
} from "@repo/shadcn-ui/components";
import { cn } from "@repo/shadcn-ui/lib/utils";
import { Control, FieldPath, FieldValues } from "react-hook-form";
import { useTranslation } from "../../locales/i18n.ts";
type TextFieldProps<TFormValues extends FieldValues> = {
control: Control<TFormValues>;
name: FieldPath<TFormValues>;
label?: string;
placeholder?: string;
description?: string;
disabled?: boolean;
required?: boolean;
readOnly?: boolean;
className?: string;
};
export function TextField<TFormValues extends FieldValues>({
control,
name,
label,
placeholder,
description,
disabled = false,
required = false,
readOnly = false,
className,
}: TextFieldProps<TFormValues>) {
const { t } = useTranslation();
const isDisabled = disabled || readOnly;
return (
<FormField
control={control}
name={name}
render={({ field }) => (
2025-07-17 08:50:28 +00:00
<FormItem className={cn("space-y-0", className)}>
2025-07-09 17:56:15 +00:00
{label && (
<div className='flex justify-between items-center'>
<FormLabel className='m-0'>{label}</FormLabel>
{required && <span className='text-xs text-destructive'>{t("common.required")}</span>}
</div>
)}
<FormControl>
2025-09-16 17:59:58 +00:00
<Input
disabled={isDisabled}
placeholder={placeholder}
{...field}
className='font-medium'
/>
2025-07-09 17:56:15 +00:00
</FormControl>
<p className={cn("text-xs text-muted-foreground", !description && "invisible")}>
{description || "\u00A0"}
</p>
<FormMessage />
</FormItem>
)}
/>
);
}