import { useEffect, useRef, useState } from 'react'; import { useField } from '@unform/core'; import { HiOutlineX } from 'react-icons/hi'; import { useTheme } from '../../hooks/theme'; import { IconButton } from '../IconButton'; import { InputContainer, Label, InputBody, Error } from './styles'; interface Props { name: string; label?: string; placeholder?: string; } type NumberInputProps = JSX.IntrinsicElements['input'] & Props; export function NumberInput({ name, label, disabled, ...rest }: NumberInputProps): JSX.Element { const { colorScheme } = useTheme(); const inputRef = useRef(null); const { fieldName, defaultValue, registerField, error } = useField(name); const [isFocused, setIsFocused] = useState(false); const [isFilled, setIsFilled] = useState(defaultValue); function handleChange(value: string): void { const valueWithoutDigit = value.replaceAll(/\D/g, ''); if (inputRef.current) { inputRef.current.value = valueWithoutDigit; } setIsFilled(valueWithoutDigit); } useEffect(() => { registerField({ name: fieldName, ref: inputRef, getValue: (ref) => { return ref.current.value; }, setValue: (ref, value: string) => { handleChange(typeof value === 'string' ? value : String(value)); }, clearValue: (ref) => { ref.current.value = ''; setIsFilled(''); }, }); }, [fieldName, registerField]); function handleClear(): void { setIsFilled(''); if (inputRef.current) { inputRef.current.value = ''; } } return ( {label && ( )} setIsFocused(true)} onBlur={() => { setIsFocused(false); }} onChange={(event) => handleChange(event.target.value)} {...rest} /> } size="sm" variant="ghost" colorScheme="gray" onClick={handleClear} tabIndex={-1} visible={!!isFilled && !disabled} /> {error && {error}} ); }