You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
394 B
20 lines
394 B
4 years ago
|
import * as React from 'react';
|
||
|
|
||
|
export default function useDebounce<T>(value: T[]): T[] {
|
||
|
const [cacheValue, setCacheValue] = React.useState(value);
|
||
|
React.useEffect(() => {
|
||
|
const timeout = setTimeout(
|
||
|
() => {
|
||
|
setCacheValue(value);
|
||
|
},
|
||
|
value.length ? 0 : 10,
|
||
|
);
|
||
|
|
||
|
return () => {
|
||
|
clearTimeout(timeout);
|
||
|
};
|
||
|
}, [value]);
|
||
|
|
||
|
return cacheValue;
|
||
|
}
|