prevent IntersectionObserver error on unobserve with null ref

This commit is contained in:
pramod mahajan 2025-07-18 15:01:44 +05:30
parent 425c32750c
commit 89085d5069

View File

@ -108,23 +108,26 @@ const ImageGallery = () => {
useEffect(() => { useEffect(() => {
if (!loaderRef.current) return; if (!loaderRef.current) return;
const obs = new IntersectionObserver(
const observer = new IntersectionObserver(
([entry]) => { ([entry]) => {
if ( if (entry.isIntersecting && hasNextPage && !isFetchingNextPage && !isLoading) {
entry.isIntersecting &&
hasNextPage &&
!isFetchingNextPage &&
!isLoading
) {
fetchNextPage(); fetchNextPage();
} }
}, },
{ rootMargin: "200px", threshold: 0.1 } { rootMargin: "200px", threshold: 0.1 }
); );
obs.observe(loaderRef.current);
return () => obs.unobserve(loaderRef.current); observer.observe(loaderRef.current);
return () => {
if (loaderRef.current) {
observer.unobserve(loaderRef.current);
}
};
}, [hasNextPage, isFetchingNextPage, isLoading, fetchNextPage]); }, [hasNextPage, isFetchingNextPage, isLoading, fetchNextPage]);
// Utility: derive filter options // Utility: derive filter options
const getUniqueValues = useCallback( const getUniqueValues = useCallback(
(idKey, nameKey) => { (idKey, nameKey) => {