first commit
This commit is contained in:
42
calcom/apps/web/lib/hooks/useInViewObserver.ts
Normal file
42
calcom/apps/web/lib/hooks/useInViewObserver.ts
Normal file
@@ -0,0 +1,42 @@
|
||||
import React from "react";
|
||||
|
||||
const isInteractionObserverSupported = typeof window !== "undefined" && "IntersectionObserver" in window;
|
||||
|
||||
export const useInViewObserver = (onInViewCallback: () => void) => {
|
||||
const [node, setRef] = React.useState<HTMLElement | null>(null);
|
||||
|
||||
const onInViewCallbackRef = React.useRef(onInViewCallback);
|
||||
onInViewCallbackRef.current = onInViewCallback;
|
||||
|
||||
React.useEffect(() => {
|
||||
if (!isInteractionObserverSupported) {
|
||||
// Skip interaction check if not supported in browser
|
||||
return;
|
||||
}
|
||||
|
||||
let observer: IntersectionObserver;
|
||||
if (node && node.parentElement) {
|
||||
observer = new IntersectionObserver(
|
||||
([entry]) => {
|
||||
if (entry.isIntersecting) {
|
||||
onInViewCallbackRef.current();
|
||||
}
|
||||
},
|
||||
{
|
||||
root: document.body,
|
||||
}
|
||||
);
|
||||
observer.observe(node);
|
||||
}
|
||||
|
||||
return () => {
|
||||
if (observer) {
|
||||
observer.disconnect();
|
||||
}
|
||||
};
|
||||
}, [node]);
|
||||
|
||||
return {
|
||||
ref: setRef,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user