docs/useRafLoop.md
useRafLoopThis hook call given function within the RAF loop without re-rendering parent component. Loop stops automatically on component unmount.
Additionally hook provides methods to start/stop loop and check current state.
import * as React from 'react';
import { useRafLoop, useUpdate } from 'react-use';
const Demo = () => {
const [ticks, setTicks] = React.useState(0);
const [lastCall, setLastCall] = React.useState(0);
const update = useUpdate();
const [loopStop, loopStart, isActive] = useRafLoop((time) => {
setTicks(ticks => ticks + 1);
setLastCall(time);
});
return (
<div>
<div>RAF triggered: {ticks} (times)</div>
<div>Last high res timestamp: {lastCall}</div>
<button onClick={() => {
isActive() ? loopStop() : loopStart();
update();
}}>{isActive() ? 'STOP' : 'START'}</button>
</div>
);
};
const [stopLoop, startLoop, isActive] = useRafLoop(callback: FrameRequestCallback, initiallyActive = true);
callback: (time: number)=>void — function to call each RAF tick.
time: number — DOMHighResTimeStamp, which indicates the current time (based on the number of milliseconds since time origin).initiallyActive: boolean — whether loop should be started at initial render.stopLoop: ()=>void — stop loop if it is active.startLoop: ()=>void — start loop if it was inactive.isActive: ()=>boolean — true if loop is active.