Mission Control Dashboard - Initial implementation
This commit is contained in:
25
node_modules/framer-motion/dist/es/utils/use-in-view.mjs
generated
vendored
Normal file
25
node_modules/framer-motion/dist/es/utils/use-in-view.mjs
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
"use client";
|
||||
import { useState, useEffect } from 'react';
|
||||
import { inView } from '../render/dom/viewport/index.mjs';
|
||||
|
||||
function useInView(ref, { root, margin, amount, once = false, initial = false, } = {}) {
|
||||
const [isInView, setInView] = useState(initial);
|
||||
useEffect(() => {
|
||||
if (!ref.current || (once && isInView))
|
||||
return;
|
||||
const onEnter = () => {
|
||||
setInView(true);
|
||||
return once ? undefined : () => setInView(false);
|
||||
};
|
||||
const options = {
|
||||
root: (root && root.current) || undefined,
|
||||
margin,
|
||||
amount,
|
||||
};
|
||||
return inView(ref.current, onEnter, options);
|
||||
}, [root, ref, margin, once, amount]);
|
||||
return isInView;
|
||||
}
|
||||
|
||||
export { useInView };
|
||||
//# sourceMappingURL=use-in-view.mjs.map
|
||||
Reference in New Issue
Block a user