You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
963 B
45 lines
963 B
import { useState, useEffect, useRef, useCallback } from 'react';
|
|
|
|
/**
|
|
* useTimeout
|
|
*
|
|
* @param {Function} cb - callback function inside setTimeout
|
|
* @param {number} delay - delay in ms
|
|
* @param {boolean} [immediate] - determines whether the timeout is invoked immediately
|
|
* @returns {Function|undefined}
|
|
*/
|
|
export function useTimeout(cb, delay, immediate = true) {
|
|
const saveCb = useRef();
|
|
const [timeoutId, setTimeoutId] = useState(null);
|
|
|
|
useEffect(() => {
|
|
saveCb.current = cb;
|
|
}, [cb]);
|
|
|
|
useEffect(() => {
|
|
if (timeoutId !== 'start') {
|
|
return undefined;
|
|
}
|
|
|
|
const id = setTimeout(() => {
|
|
saveCb.current();
|
|
}, delay);
|
|
|
|
setTimeoutId(id);
|
|
|
|
return () => {
|
|
clearTimeout(timeoutId);
|
|
};
|
|
}, [delay, timeoutId]);
|
|
|
|
const startTimeout = useCallback(() => {
|
|
clearTimeout(timeoutId);
|
|
setTimeoutId('start');
|
|
}, [timeoutId]);
|
|
|
|
if (immediate) {
|
|
startTimeout();
|
|
}
|
|
|
|
return startTimeout;
|
|
}
|
|
|