-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLazyLoad.tsx
31 lines (26 loc) · 987 Bytes
/
LazyLoad.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* eslint-disable react/no-children-prop */
import React, { useRef, ReactNode, ComponentType, CSSProperties } from 'react';
import { useIntersectionObserver } from './useIntersectionObserver';
interface LazyLoadProps {
children: ReactNode;
className?: string;
style?: CSSProperties;
threshold?: number | number[];
rootMargin?: string;
root?: null;
freezeOnceVisible?: boolean;
tag?: ComponentType | keyof JSX.IntrinsicElements;
}
export const LazyLoad = ({ children, className, style, tag = 'div', threshold = 0, rootMargin = '0%', root = null, freezeOnceVisible = false }: LazyLoadProps) => {
const Tag: any = tag;
const ref = useRef<HTMLDivElement | null>(null);
const entry = useIntersectionObserver(ref, {
root,
rootMargin,
threshold,
freezeOnceVisible
});
const isVisible = !!entry?.isIntersecting;
return <Tag className={`${className}`} style={style} ref={ref} children={isVisible ? children : null} />;
};
export default LazyLoad;