Implement Custom useIntersectionObserver Hook in React
Explore the code implementation of a custom useIntersectionObserver hook in React, which helps to manage the infinite scroll in a React application.
Anuj Sharma
Last Updated Jun 11, 2026

Infinite scrolling is a popular technique used in web applications to load content continuously as the user scrolls down the page. React provides us with the Intersection Observer API to monitor elements entering or exiting the viewport.
In this blog post, we will delve into creating a custom useIntersectionObserver hook in React to facilitate infinite scrolling efficiently.
useIntersectionObserver Hook: Code Implementation
Let's start by creating our custom useIntersectionObserver hook in React:
const { useEffect, useRef, useState } = require('react');
const useIntersectionObserver = (callback, options) => {
const observer = useRef(null);
const [element, setElement] = useState(null);
useEffect(() => {
if (element) {
observer.current = new IntersectionObserver(([entry]) => {
if (entry.isIntersecting) {
callback();
}
}, options);
observer.current.observe(element);
}
return () => {
if (observer.current) {
observer.current.disconnect();
}
};
}, [element, options, callback]);
return setElement;
};
export default useIntersectionObserver;
Explanation:
- We define a custom hook named
useIntersectionObserverthat takes a callback function and options as parameters. - We use
useRefto create a reference to the observer anduseStateto manage the observed element. - In the
useEffecthook, we initialize the Intersection Observer with the provided callback and options when the element is available. - We observe the element for intersection changes and invoke the callback when it intersects with the viewport.
- Finally, we disconnect the observer when the component unmounts.
Usage
Now, let's see how we can use our custom useIntersectionObserver hook in a React component:
import React, { useState } from 'react';
import useIntersectionObserver from './useIntersectionObserver';
const App = () => {
const [items, setItems] = useState([]);
const fetchMoreData = () => {
// Fetch more data here
};
const loadMoreRef = useIntersectionObserver(fetchMoreData, { threshold: 1 });
return (
<div>
{items.map((item, index) => (
<div key={index}>{item}</div>
))}
<div ref={loadMoreRef}>Loading more...</div>
</div>
);
};
export default App;
Explanation:
- We create a simple
Appcomponent that manages a list of items and a function to fetch more data. - We use our custom
useIntersectionObserverhook to observe a reference element for intersection changes and trigger thefetchMoreDatafunction when the element is fully in view (threshold: 1). - The reference element is placed at the end of the list to load more data when the user reaches the bottom of the page.
Now you understand the custom useIntersectionObserver hook implementation that provides a reusable and efficient way to manage content loading as users interact with your website. Let's explore 20+ Most Asked Custom Hooks in React to prepare for your next frontend interview
Love this Blog? Share it Now!
Help others discover this resource
A seasoned Sr. Engineering Manager at GoDaddy (Ex-Dell) with over 12+ years of experience in the frontend technologies. A frontend tech enthusiast passionate building SaaS application to solve problem. Know more about me 🚀








