mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
27 lines
575 B
TypeScript
27 lines
575 B
TypeScript
import React from 'react';
|
|
import useEvent from 'rc-util/lib/hooks/useEvent';
|
|
import raf from 'rc-util/lib/raf';
|
|
|
|
/**
|
|
* Callback will only execute last one for each raf
|
|
*/
|
|
export default function useRafDebounce(callback: VoidFunction) {
|
|
const executeRef = React.useRef(false);
|
|
const rafRef = React.useRef<number>();
|
|
|
|
const wrapperCallback = useEvent(callback);
|
|
|
|
return () => {
|
|
if (executeRef.current) {
|
|
return;
|
|
}
|
|
|
|
executeRef.current = true;
|
|
wrapperCallback();
|
|
|
|
rafRef.current = raf(() => {
|
|
executeRef.current = false;
|
|
});
|
|
};
|
|
}
|