PluginProbe
Extendify / 3.0.4
Extendify v3.0.4
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / AutoLaunch / hooks / useRateLimitedCursor.js

useRateLimitedCursor.js in Extendify 3.0.4, at src/AutoLaunch/hooks/useRateLimitedCursor.js

32 lines 711 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { useEffect, useRef } from '@wordpress/element';
2
3 export const useRateLimitedCursor = (cb, intervalMs = 2000, deps = []) => {
4 const lastAtRef = useRef(0);
5 const timerRef = useRef(null);
6
7 useEffect(() => {
8 const schedule = () => {
9 clearTimeout(timerRef.current);
10
11 const now = Date.now();
12 const wait = Math.max(0, lastAtRef.current + intervalMs - now);
13
14 const run = () => {
15 lastAtRef.current = Date.now();
16 const hasMore = cb();
17 if (hasMore) schedule();
18 };
19
20 if (wait === 0) run();
21 else timerRef.current = setTimeout(run, wait);
22 };
23
24 schedule();
25
26 return () => {
27 clearTimeout(timerRef.current);
28 timerRef.current = null;
29 };
30 }, [cb, intervalMs, ...deps]);
31 };
32