JSPM

  • Created
  • Published
  • Downloads 212414
  • Score
    100M100P100Q161378F
  • License MIT

Lazyload your Component, Image or anything matters the performance.

Package Exports

  • react-lazyload
  • react-lazyload/lib/utils/debounce
  • react-lazyload/lib/utils/event
  • react-lazyload/lib/utils/scrollParent
  • react-lazyload/lib/utils/throttle

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-lazyload) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-lazyload Build Status npm version

Lazyload your Components, Images or anything matters the performance.

Online Demo

Why it's better

  • Take performance in mind, only 2 event listeners for all lazy-loaded components
  • Support both one-time lazy load and continuous lazy load mode
  • wheel / mousewheel / resize event handler is debounced so you won't suffer frequent update
  • IE 8 compatible
  • Decorator supported

Installation

👏👏👏2.0.0-beta.3 is out, it is highly recommended to use 2.0.0 for simplicity and handiness. Checkout the 2.0.0 Docs 👏👏👏

$ npm install --save react-lazyload

Usage

import React from 'react';
import ReacrDOM from 'react-dom';
import LazyLoad from 'react-lazyload';
import MyComponent from './MyComponent';

const App = React.createClass({
  render() {
    return (
      <div className="list">
        <LazyLoad>
          <MyComponent />
        </LazyLoad>
        <LazyLoad>
          <img src="tiger.jpg" height="200" />
                                /*
                                  Lazy loading images is supported out of box,
                                  no extra config needed, set `height` for better
                                  experience
                                 */
        </LazyLoad>
        <LazyLoad once >        /* Once this component is loaded, LazyLoad will
                                   not care about it anymore, set this to `true`
                                   if you're concerned about improving performance */
          <MyComponent />
        </LazyLoad>
        <LazyLoad offset={100}> /* This component will be loaded when it's top
                                   edge is 100px from viewport. It's useful to
                                   make user ignorant about lazy load effect. */
          <MyComponent />
        </LazyLoad>
        <LazyLoad>
          <MyComponent />
        </LazyLoad>
      </div>
    );
  }
});

ReactDOM.render(<App />, document.body);

If you want to have your component lazyloaded by default, try this handy decorator:

import {lazyload} from 'react-lazyload';

@lazyload({
  once: true,
  offset: 100
})
class MyComponent extends React.Component {
  render() {
    return <div>this component is lazyloaded by default!</div>;
  }
}

Props

once

Type: Bool Default: false

Once the lazy loaded component is loaded, do not detect scroll/resize event anymore. Useful for images or simple components.

offset

Type: Number/Array(Number) Default: 0

Say if you want to preload a module even if it's 100px below the viewport (user have to scroll 100px more to see this module), you can set offset props to 100. On the other hand, if you want to delay loading a module even if it's top edge has already appeared at viewport, set offset props to negative number will make it delay loading.

If you provide this props with array like [200, 200], it will set top edge offset and bottom edge offset respectively.

scroll

Type: Bool Default: true

Listen and react to scroll event.

resize

Type: Bool Default: false

Respond to resize event, set it to true if you do need LazyLoad listen resize event.

NOTICE If you tend to support legacy IE, set this props carefully, refer to this question for further reading.

overflow

Type: Bool Default: false

If lazy loading components inside a overflow container, set this to true. Also make sure a position property other than static has been set to your overflow container.

debounce

Type: Bool / Number Default: true

By default, LazyLoad will have all event handlers debounced in 300ms for better performance. You can disable this by setting debounce to false, or change debounce time by setting a number value.

throttle

Type: Bool / Number Default: false

If you prefer throttle rather than debounce, you can set this props to true or provide a specific number.

NOTICE Set debounce / throttle to all lazy loaded components unanimously, if you don't, the first occurrence is respected.

Props added to children

Like the example above, <MyComponent> will get following extra props:

visible

Type: Bool

Is component currently visible

firstTimeVisible

Is component first time visible, useful for children component's componentWillReceiveProps detect whether or not should query new data.

Scripts

$ npm run demo:watch
$ npm run build

Who should use it

Let's say there is a fixed date picker on the page, when user pick a different date, all components displaying data should send ajax request with new date parameter to retreive updated data, even many of them aren't visible in viewport. This makes server load furious when there are too many requests in one page.

Using LazyLoad component will help ease this situation by only update components in viewport.

Contributors

  1. lancehub

License

MIT