A versatile infinite scroll React component.
bower install react-list
# or
npm install react-list
ReactList depends on React.
Check out the example page and the the example page source for examples of different configurations.
Here's another simple example to get you started.
import loadAccount from 'my-account-loader';
import React from 'react';
import ReactList from 'react-list';
class MyComponent extends React.Component {
state = {
accounts: []
};
componentWillMount() {
loadAccounts(::this.handleAccounts);
}
handleAccounts(accounts) {
this.setState({accounts});
}
renderItem(index, key) {
return <div key={key}>{this.state.accounts[index].name}</div>;
}
render() {
return (
<div>
<h1>Accounts</h1>
<div style={{overflow: 'auto', maxHeight: 400}}>
<ReactList
itemRenderer={::this.renderItem}
length={this.state.accounts.length}
type='uniform'
/>
</div>
</div>
);
}
}
The axis that this list scrolls on.
An index to scroll to after mounting.
A function that receives an item index and returns the size (height for y-axis lists and width for x-axis lists) of that item at that index.
A function that receives an index and a key and returns the content to be rendered for the item at that index.
A function that receives the rendered items and a ref. By default this element
is just a <div>
. Generally it only needs to be overridden for use in a
<table>
or other special case. NOTE: You must set ref={ref} on the component
that contains the items
so the correct item sizing calculations can be made.
The number of items in the list.
The number of items to batch up for new renders.
A function that returns a DOM Element or Window that will be treated as the scrolling container for the list. In most cases this does not need to be set for the list to work as intended. It is exposed as a prop for more complicated uses where the scrolling container may not initially have an overflow property that enables scrolling.
The number of pixels to buffer at the beginning and end of the rendered list items.
-
simple
This type is...simple. It will not cache item sizes or remove items that are above the viewport. This type is sufficient for many cases when the only requirement is incremental rendering when scrolling. -
variable
This type is preferred when the sizes of the items in the list vary. Supply theitemSizeGetter
when possible so the entire length of the list can be established beforehand. Otherwise, the item sizes will be cached as they are rendered so that items that are above the viewport can be removed as the list is scrolled. -
uniform
This type is preferred when you can guarantee all of your elements will be the same size. The advantage here is that the size of the entire list can be calculated ahead of time and only enough items to fill the viewport ever need to be drawn. The size of the first item will be used to infer the size of every other item. Multiple items per row are also supported with this type.
A boolean to determine whether the translate3d
CSS property should be used for
positioning instead of the default translate
. This can help performance on
mobile devices, but is supported by fewer browsers.
Put the element at index
at the top of the viewport. Note that if you aren't
using type='uniform'
or an itemSizeGetter
, you will only be able to scroll
to an element that has already been rendered.
Scroll the viewport so that the element at index
is visible, but not
necessarily at the top. The scrollTo
note above also applies to this method.
Return the indices of the first and last items that are at all visible in the viewport.
open index.html
make