-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathuseInterval.ts
More file actions
83 lines (74 loc) · 2.07 KB
/
useInterval.ts
File metadata and controls
83 lines (74 loc) · 2.07 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
import { useRef, useCallback, useState, useEffect } from "react";
/**
* The interface for the properties of the useInterval hook
*/
interface UseIntervalProps {
/**
* The callback function
*/
callback: () => void;
/**
* The interval in miliseconds for the interval function
*/
interval: number;
/**
* The boolean to set if the interval should start automatically or not
* @default false
*/
autoStart?: boolean;
}
/**
* The interface for the result of the useInterval hook
*/
interface UseIntervalResult {
/**
* The current state whether the interval is running or not
*/
isRunning: boolean;
/**
* The function to start the interval
*/
startInterval: () => void;
/**
* The function to stop the interval
*/
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)) {
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;
if (isRunning) {
startInterval();
}
return stopInterval;
}, [callback, isRunning, interval, startInterval, stopInterval]);
useEffect(() => {
if (autoStart) {
startInterval();
}
}, [autoStart, startInterval]);
return { isRunning, startInterval, stopInterval };
};
export { useInterval };