65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
// DatePickerField.tsx
|
|
|
|
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 NumberFieldProps<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 NumberField<TFormValues extends FieldValues>({
|
|
control,
|
|
name,
|
|
label,
|
|
placeholder,
|
|
description,
|
|
disabled = false,
|
|
required = false,
|
|
readOnly = false,
|
|
className,
|
|
}: NumberFieldProps<TFormValues>) {
|
|
const { t } = useTranslation();
|
|
const isDisabled = disabled || readOnly;
|
|
|
|
return (
|
|
<FormField
|
|
control={control}
|
|
name={name}
|
|
render={({ field }) => (
|
|
<FormItem className={cn("space-y-0", className)}>
|
|
<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>
|
|
<Input disabled={isDisabled} placeholder={placeholder} {...field} />
|
|
</FormControl>
|
|
|
|
<p className={cn("text-xs text-muted-foreground", !description && "invisible")}>
|
|
{description || "\u00A0"}
|
|
</p>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
);
|
|
}
|