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 7, 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.
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 🚀
Learn Next
Comments
Be the first to share your thoughts!
No comments yet.
Start the conversation!
Share your expertise
Publish a blog or quick notes on topics you know well — your write-up could be the answer someone needs before their next frontend interview.
Build your portfolio
Help the community
Sharpen your skills
Earn goodies
Other Related Blogs
React Hook Rules: Why hooks declarations are not allowed inside functions
Frontendgeek
Last Updated Feb 6, 2026
A quick guide to explain an important react interview question, why React Hooks declarations are not allowed inside functions or any conditional blocks with code example.
setTimeout Polyfill in JavaScript - Detailed Explanation
Anuj Sharma
Last Updated Aug 3, 2025
Explore the implementation of setTimeout in JavaScript with a detailed explanation for every step. Understand all scenarios expected to implement the setTimeout polyfill.
Implementing a stopwatch using React - Frontend Machine Coding Question
Pallavi Gupta
Last Updated Feb 21, 2026
Concise explanation of stopwatch implementation using React, it involves the usage of useEffect hook for creating a stopwatch and tracking milliseconds.
Implement useClickOutside() custom Hook in React [Interview]
Anuj Sharma
Last Updated Dec 23, 2025
Understand the implementation of useClickOutside() custom hook in react and how it can be used to implement Modal like functionality.
