-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuseInterval.ts
More file actions
84 lines (75 loc) · 2.06 KB
/
useInterval.ts
File metadata and controls
84 lines (75 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import { useRef, useCallback, useState, useEffect } from "react";
/**
* The interface for the polling properties
*/
interface UseIntervalProps {
/**
* The callback function
*/
callback: () => void;
/**
* The interval of the polling function
*/
interval: number;
/**
* The boolean to set if the hook is initially polling or not
*/
autoStart: boolean;
}
/**
* The interface for the polling result
*/
interface UseIntervalResult {
/**
* The current state of the hook wheter it's polling or not
*/
isRunning: boolean;
/**
* The function to start polling
*/
startInterval: () => void;
/**
* The function to stopp polling
*/
stopInterval(): void;
}
/**
* The useInterval hook
* @param props The props for the useInterval hook, see {@link UseIntervalProps}
* @returns The result of the useInterval, see {@link UseIntervalResult}
*/
const useInterval = (props: UseIntervalProps): UseIntervalResult => {
const { autoStart, callback, interval } = props;
const [isRunning, setIsRunning] = useState(false);
const intervalRef = useRef<number | null>(null);
const callbackRef = useRef<() => void>(callback);
const startInterval = useCallback(() => {
setIsRunning((prevIsRunning) => {
if (!prevIsRunning && (!intervalRef.current || intervalRef.current === -1)) {
console.log("Starting interval");
intervalRef.current = window.setInterval(callbackRef.current, interval);
}
return true;
});
}, [interval]);
const stopInterval = useCallback(() => {
setIsRunning(false);
window.clearInterval(intervalRef.current || -1);
intervalRef.current = -1;
}, []);
useEffect(() => {
callbackRef.current = callback;
console.log("Starting interval", isRunning);
if (isRunning) {
startInterval();
}
return stopInterval;
}, [callback, isRunning, interval, startInterval, stopInterval]);
useEffect(() => {
if (autoStart) {
startInterval();
}
}, [autoStart, startInterval]);
return { isRunning, startInterval, stopInterval };
};
export { useInterval };