mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
20 lines
394 B
TypeScript
20 lines
394 B
TypeScript
|
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;
|
||
|
}
|