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

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2025-07-09 17:56:15 +00:00
// DatePickerField.tsx
import {
FormControl,
FormField,
FormItem,
FormLabel,
FormMessage,
Textarea,
} 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 TextAreaFieldProps<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 TextAreaField<TFormValues extends FieldValues>({
control,
name,
label,
placeholder,
description,
disabled = false,
required = false,
readOnly = false,
className,
}: TextAreaFieldProps<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 && (
2025-09-21 19:46:51 +00:00
<div className='mb-1 flex justify-between gap-2'>
<div className='flex items-center gap-2'>
<FormLabel htmlFor={name} className='m-0'>
{label}
</FormLabel>
{required && (
<span className='text-xs text-destructive'>{t("common.required")}</span>
)}
</div>
2025-07-09 17:56:15 +00:00
</div>
)}
<FormControl>
<Textarea disabled={isDisabled} placeholder={placeholder} {...field} />
</FormControl>
<p className={cn("text-xs text-muted-foreground", !description && "invisible")}>
{description || "\u00A0"}
</p>
<FormMessage />
</FormItem>
)}
/>
);
}