32 lines
909 B
TypeScript
32 lines
909 B
TypeScript
![]() |
import { Input, InputProps } from '@chakra-ui/react'
|
||
|
import { ChangeEvent, useEffect, useState } from 'react'
|
||
|
import { useDebounce } from 'use-debounce'
|
||
|
|
||
|
type Props = Omit<InputProps, 'onChange' | 'value'> & {
|
||
|
delay: number
|
||
|
initialValue: string
|
||
|
onChange: (debouncedValue: string) => void
|
||
|
}
|
||
|
|
||
|
export const DebouncedInput = ({
|
||
|
delay,
|
||
|
onChange,
|
||
|
initialValue,
|
||
|
...props
|
||
|
}: Props) => {
|
||
|
const [currentValue, setCurrentValue] = useState(initialValue)
|
||
|
const [currentValueDebounced] = useDebounce(currentValue, delay)
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (currentValueDebounced === initialValue) return
|
||
|
onChange(currentValueDebounced)
|
||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||
|
}, [currentValueDebounced])
|
||
|
|
||
|
const handleChange = (e: ChangeEvent<HTMLInputElement>) => {
|
||
|
setCurrentValue(e.target.value)
|
||
|
}
|
||
|
|
||
|
return <Input {...props} value={currentValue} onChange={handleChange} />
|
||
|
}
|