mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-19 11:31:51 +03:00
23 lines
513 B
JavaScript
23 lines
513 B
JavaScript
|
// useInterval with Preact
|
||
|
import { useEffect, useRef } from 'preact/hooks';
|
||
|
|
||
|
export default function useInterval(callback, delay) {
|
||
|
const savedCallback = useRef();
|
||
|
|
||
|
// Remember the latest callback.
|
||
|
useEffect(() => {
|
||
|
savedCallback.current = callback;
|
||
|
}, [callback]);
|
||
|
|
||
|
// Set up the interval.
|
||
|
useEffect(() => {
|
||
|
function tick() {
|
||
|
savedCallback.current();
|
||
|
}
|
||
|
if (delay !== null) {
|
||
|
let id = setInterval(tick, delay);
|
||
|
return () => clearInterval(id);
|
||
|
}
|
||
|
}, [delay]);
|
||
|
}
|