react-lazy
react-lazy copied to clipboard
Universal lazy loader components using IntersectionObserver for React
react-lazy
Lazy load your content without breaking the internet!
Supports universal rendering including disabled JavaScript by using noscript elements that are also friendly to all
search engines. Uses modern IntersectionObserver API using the excellent
@researchgate/react-intersection-observer.
Also optionally supports displaying the content on IE8 and earlier by adding conditional comments to skip noscript
elements.
npm install react-lazy
import { Lazy } from 'react-lazy'
// or
import { LazyGroup } from 'react-lazy'
You also need to polyfill intersection-observer! Use polyfill.io or require('intersection-observer'). Check
Can I use for browser support status. Map and Set are also
required, but these are required by React as well.
Why react-lazy?
- Minimalistic and performant implementation with less dependencies than other solutions
- You can choose between ease-of-use (LazyGroup) and do-it-yourself (Lazy)
- The hard part of handling
noscriptis done for you
Why lazy load content such as images?
You want to save your bandwidth and/or server load. As a side effect you may also gain some performance benefits on client side, especially on mobile devices. However the main benefit (and main purpose) for you should always be the reduction of bandwidth/server load.
Likely side effect of lazy loading is that user may see content flashing as it comes into view; sometimes with a lot of
delay as it depends on connectivity. You can make the experience less flickery by adding a transition when image is
loaded (a bit harder to develop) or by giving Lazy a large cushion (500 pixels or more) to load image before it is
actually in the viewport. Using both strategies together is recommended. You can test the experience on your own site by
dropping mobile connection to slow 3G.
Chrome developer tools also has network throttling so you don't need to get yourself into a train to nowhere to test how well or poorly your site works in high latency conditions. However it is also recommended you do get yourself into a train to nowhere as it does good for your mind and soul to abandon the hectic although convenient city lifestyle every once in a while.
Usage: <Lazy />
// curly brackets are required
import { Lazy } from 'react-lazy'
...
<Lazy component="a" href="/" className="image-link image-link--100px" ltIE9>
<img alt="My Lazy Loaded Image" className="image-link__image" src="my-lazy-loaded-image.png" />
</Lazy>
<!-- server render and render before component is in viewport -->
<a href="/" class="image-link image-link--100px">
<!--[if IE 9]><!--><noscript><!--<![endif]-->
<img alt="My Lazy Loaded Image" class="image-link__image" src="my-lazy-loaded-image.png" />
<!--[if IE 9]><!--></noscript><!--<![endif]-->
</a>
<!-- client DOM after component is in viewport -->
<a href="/" class="image-link image-link--100px">
<img alt="My Lazy Loaded Image" class="image-link__image" src="my-lazy-loaded-image.png" />
</a>
Component introduction
There are two components: <Lazy /> and <LazyGroup />.
Lazy provides basic functionality for lazy loading: it keeps render in noscript element until it has come into
viewport and then simply swaps render. Everything inside the component is wrapped into noscript. As the component
is quite simple and generic it doesn't support many other things that provide convenience; for example, with images you
have to write your own logic for handling onError and onLoad so that you can do things like trigger transitions as
images are loaded, or change what to render instead of the image if loading the image fails.
LazyGroup extends Lazy functionality by wrapping only specified component types inside noscript. So only the
specified components like img or iframe elements are wrapped to noscript. Other elements are simply rendered
as-is.
The wrappable components (imgs and iframes by default) are also always wrapped inside another component. This custom
component will receive information on whether loading the img or iframe has succeeded or failed, thus allowing a
single place to control lifecycles as images or other content is loaded.
Shared features
These features are supported by both <Lazy /> and <LazyGroup />.
IntersectionObserver props
viewport(=rootoption)cushion(=rootMarginoption)threshold
These props work like you would expect them to work with IntersectionObserver.
clientOnly prop
Disables noscript element rendering, instead rendering no HTML for the contents in server side. This gives behavior
similar to most other lazy loaders, which is why it is not enabled by default in react-lazy.
ltIE9 prop
Renders Internet Explorer 8 friendly syntax by adding conditional comments around noscript, effectively hiding
existance of the tag from IE8 and earlier. This allows for minimal legacy browser support, since it is highly unlikely
anyone writes their JS to execute on IE8 anymore.
Essentially this feature allows to render a visually non-broken page to users of legacy browsers, making it possible to give minimally acceptable user experience to users of browsers that should be dead.
This means there is no lazy rendering on legacy browsers, images load immediately.
This prop has no effect if clientOnly is enabled.
onLoad
- On
Lazytriggers after removingnoscriptelement. - On
LazyGrouptriggers after all wrapped child componentsonLoadoronErrorevents have triggered.
<Lazy onLoad={yourCustomFunction}>...</Lazy>
onViewport
Triggers before removing noscript elements. Given function receives IntersectionObserver event object.
visible
Allows you to manually tell if the element is actually visible to the user or not.
<LazyGroup />
Lazy works fine with single images, but sometimes you may want to have slightly more control or better performance
when you know multiple images load at the same time (for example, a row of thumbnails). In this case it makes no sense
to check each individual image's position in viewport when checking for just the container component will be good enough
— and also less for a browser to execute.
You can also use Lazy for multiple images, but there are some practical limitations such as the fact that everything
inside Lazy is within noscript element, thus there is nothing rendered inside. LazyGroup solves this issue by
rendering noscript only around specific wrapped elements (img and iframe by default). Also, further control is
given with childWrapper component that will receive a set of props to make life easier.
Use cases:
- You want all contained images/iframes to be transitioned at the exact same time after everything is loaded.
- You want to use the abstraction provided by
childWrapperinstead of writing custom logic. - You want to have slightly better performance by only checking the container element's location relative to the view.
Usage
// curly brackets are required
import { LazyGroup } from 'react-lazy'
function ImageContainer({ childProps, children, isFailed, isLoaded, ...props }) {
return (
// usually the other props include `dangerouslySetInnerHtml` when rendering `noscript` element
<div {...props}>
{isFailed ? 'The image did not load :( ' + childProps.src : children}
</div>
)
}
...
<LazyGroup component="ul" className="image-list" childWrapper={ImageContainer}>
{this.props.images.map((image, index) =>
<li key={index} className="image-list__item">
<img {...image} />
</li>
)}
</LazyGroup>
childWrapper lifecycle
- On server side render and before the
LazyGroupcontainer is in viewport in clientchildWrapperwill receivedangerouslySetInnerHtmlprop (thus renderingnoscriptelement that contains the lazily loaded content). - After coming into viewport
isFailedandisLoadedare false.childPropsalso become available. isFailedis set to true whenimg's oriframe'sonErrorevent triggers. You can usechildPropsto decide what to render.isLoadedis set to true whenimg's oriframe'sonLoadevent triggers.
childrenToWrap
Use this array to decide which components are wrapped by childWrapper. Default value: ['iframe', 'img']
Note! The components must support onError and onLoad events as these are used to detect loading.
Other components
You can see these components via React developer tools, but as of 1.0.2 they have not been exposed.
DefaultWrapper
This is the childWrapper used to render LazyGroup's wrapped childs if no custom wrapper is given. The wrapper is a
simple div with a className of react-lazy-wrapper. BEM convention is used to tell about the lifecycle:
react-lazy-wrapper--placeholderis set on server render and client render beforeLazyGroupis in viewport.react-lazy-wrapper--loadingis set onceLazyGroupis in viewport.react-lazy-wrapper--failedis set if lazy loaded component'sonErrorevent has triggered.react-lazy-wrapper--loadedis set if lazy loaded component'sonLoadevent has triggered.
LazyChild
This is the component used by LazyGroup to handle rendering of the wrapped child components. It manages the onLoad /
onError handling. It takes two props: callback and wrapper. callback is called by LazyChild once loading
result has been resolved. wrapper is the component rendered around wrapped child element.