Socket
Socket
Sign inDemoInstall

react-infinite-list

Package Overview
Dependencies
1
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-infinite-list

React Infinite List ==============


Version published
Weekly downloads
5
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

v0.1.1 (2015-06-01)

Code is simplified. Browser umd header is fixed to provide correct react dependency.

Readme

Source

React Infinite List

A component that displays large list of data efficiently. Reuses DOM elements during scrolling. It uses different rendering approach than [https://github.com/Morhaus/react-list-view] or Ember ListView. Instead of transposing the item rows, it just re-renders the component whenever the top or bottom list item is scrolled out of the visible area.

Installation

npm install react-infinite-list --save-dev
# or
bower install react-infinite-list --save-dev

Usage

 <InfiniteList
        items={items}
        numOfVisibleItems={5}
        itemHeight={20}
        listItemClass={InfiniteListItem}
    />,

items, numOfVisibleItems and itemHeight are mandatory. The latter two controls the height of the component.

listItemClass is optional. Rather, it serves for default list item view overriding.

There are also some mandatory css rules:

    .infinite-list {
        overflow: auto  ;
        position: relative;
    }

    .infinite-list-content {
        margin: 0;
        position: absolute;
    }

Example

Clone this repo and run npm i. After the dependencies are installed, just issue:

npm start

and wait till webpack builds the bundel. Brower shall be opened on port 3000.

FAQs

Last updated on 01 Jun 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc