Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
22 lines
794 B
Plaintext
22 lines
794 B
Plaintext
import { useRef, useContext, useEffect } from 'react';
|
|
import { MotionConfigContext } from '../context/MotionConfigContext.mjs';
|
|
import { frame, cancelFrame } from '../frameloop/frame.mjs';
|
|
|
|
function useAnimationFrame(callback) {
|
|
const initialTimestamp = useRef(0);
|
|
const { isStatic } = useContext(MotionConfigContext);
|
|
useEffect(() => {
|
|
if (isStatic)
|
|
return;
|
|
const provideTimeSinceStart = ({ timestamp, delta }) => {
|
|
if (!initialTimestamp.current)
|
|
initialTimestamp.current = timestamp;
|
|
callback(timestamp - initialTimestamp.current, delta);
|
|
};
|
|
frame.update(provideTimeSinceStart, true);
|
|
return () => cancelFrame(provideTimeSinceStart);
|
|
}, [callback]);
|
|
}
|
|
|
|
export { useAnimationFrame };
|