import type { BaseFormBuilderProps, GenericFormElementProps, } from "@components/Form/DynamicForm.tsx"; import { Input } from "@components/UI/Input.tsx"; import type { ChangeEventHandler } from "react"; import { useState } from "react"; import { type FieldValues, useController } from "react-hook-form"; export interface InputFieldProps extends BaseFormBuilderProps { type: "text" | "number" | "password"; inputChange?: ChangeEventHandler; properties?: { value?: string; prefix?: string; suffix?: string; step?: number; className?: string; fieldLength?: { min?: number; max?: number; currentValueLength?: number; showCharacterCount?: boolean; }; showPasswordToggle?: boolean; showCopyButton?: boolean; }; } export function GenericInput({ control, disabled, field, isDirty, invalid, }: GenericFormElementProps>) { const { fieldLength, ...restProperties } = field.properties || {}; const [currentLength, setCurrentLength] = useState( fieldLength?.currentValueLength || 0, ); const { field: controllerField } = useController({ name: field.name, control, }); const handleInputChange = (e: React.ChangeEvent) => { const newValue = e.target.value; if ( field.properties?.fieldLength?.max && newValue.length > field.properties?.fieldLength?.max ) { return; } setCurrentLength(newValue.length); if (field.inputChange) field.inputChange(e); controllerField.onChange( field.type === "number" ? Number.parseFloat(newValue).toString() : newValue, ); }; return (
{fieldLength?.showCharacterCount && fieldLength?.max && (
{currentLength ?? fieldLength?.currentValueLength}/{fieldLength?.max}
)}
); }