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 PercentageInputProps = JSX.IntrinsicElements['input'] & Props; export function PercentageInput({ name, label, disabled, ...rest }: PercentageInputProps): 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 { if (value !== undefined) { const valueWithoutDigit = String(value).replaceAll(/[^\d,]/g, ''); let newValue = '0'; const parsedValue = parseFloat(valueWithoutDigit.replace(',', '.')); if (parsedValue > 100) { newValue = '100'; } else if (parsedValue < 0) { newValue = '0'; } else { newValue = valueWithoutDigit; } if (inputRef.current) { inputRef.current.value = String(newValue); } setIsFilled(String(newValue)); } } useEffect(() => { registerField({ name: fieldName, ref: inputRef, getValue: (ref) => { return ref.current.value; }, setValue: (ref, value: string) => { handleChange(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}} ); }