mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-01 06:49:32 +08:00
8a3870fc31
* docs: add demo * refactor: init * refactor: of it * refactor: simple content * chore: unique func * chore: refactor * chore: support modal watermark * feat: support nest watermark * test: add test case * chore: fix lint * chore: bump rc-image * test: add test case * refactor: use same func
27 lines
560 B
TypeScript
27 lines
560 B
TypeScript
import React from 'react';
|
|
import raf from 'rc-util/lib/raf';
|
|
import { useEvent } from 'rc-util';
|
|
|
|
/**
|
|
* 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;
|
|
});
|
|
};
|
|
}
|