Package Exports
- react-list
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-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ReactList
A versatile infinite scroll React component.
Install
bower install react-listAPI
Properties
items
The list of items to be rendered.
renderItem
A function that receives and item (and its relative index) and returns the content to be rendered for that item.
renderLoading
A function that should return a loading message.
renderError
A function that receives an error from a failed fetch and should return an
error message.
renderEmpty
A function that should return a message when no items are available to render.
renderPageSize
A number that specifies how many items to render per page (does not apply to
uniform items).
threshold
The number of pixels to ensure the top and bottom of the list is buffered with.
uniform (defaults to false)
A boolean that specifies whether or not the rendered items are of uniform width and height. Uniform items allow space to be preallocated on the page without actually rendering the items.
Examples
Check out the test file for a full example.
Known Issues
- Paging should be supported, but isn't yet.