Package Exports
- react-virtualized
- react-virtualized/dist/commonjs/AutoSizer
- react-virtualized/dist/commonjs/AutoSizer/AutoSizer
- react-virtualized/dist/commonjs/AutoSizer/index
- react-virtualized/dist/commonjs/CellMeasurer
- react-virtualized/dist/commonjs/Grid
- react-virtualized/dist/commonjs/Grid/Grid
- react-virtualized/dist/commonjs/Grid/defaultCellRangeRenderer
- react-virtualized/dist/commonjs/InfiniteLoader
- react-virtualized/dist/commonjs/ScrollSync
- react-virtualized/dist/commonjs/WindowScroller
- react-virtualized/dist/es/AutoSizer
- react-virtualized/dist/es/AutoSizer/AutoSizer.js
- react-virtualized/dist/es/AutoSizer/index
- react-virtualized/dist/es/CellMeasurer
- react-virtualized/dist/es/Grid
- react-virtualized/dist/es/InfiniteLoader
- react-virtualized/dist/es/ScrollSync
- react-virtualized/dist/es/WindowScroller
- react-virtualized/dist/es/WindowScroller/index
- react-virtualized/dist/umd/react-virtualized
- react-virtualized/styles.css
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-virtualized) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Interested in sponsoring react-virtualized development? Learn more.
Getting started
Install react-virtualized
using npm.
npm install react-virtualized --save
ES6, CommonJS, and UMD builds are available with each distribution. For example:
// Make sure to import default styles.
// This only needs to be done once; probably during your application's bootstrapping process.
import 'react-virtualized/styles.css';
// Then you can import any react-virtualized components you need.
// Tree-shaking is supported with ES6 or CommonJS usage.
import { Grid } from 'react-virtualized'
Alternately you can load a global-friendly UMD build:
<link rel="stylesheet" href="path-to-react-virtualized/styles.css">
<script src="path-to-react-virtualized/dist/umd/react-virtualized.js"></script>
Dependencies
React Virtualized has very few dependencies and most are managed by NPM automatically.
However the following peer dependencies must be specified by your project in order to avoid version conflicts:
react
,
react-addons-shallow-compare
, and
react-dom
.
NPM will not automatically install these for you but it will show you a warning message with instructions on how to install them.
Pure Components
By default all react-virtualized components use shallowCompare
to avoid re-rendering unless props or state has changed.
This ocassionally confuses users when a collection's data changes (eg ['a','b','c']
=> ['d','e','f']
) but props do not (eg array.length
).
The solution to this is to let react-virtualized know that something external has changed.
For Grid
or Collection
this means calling forceUpdate
.
For FlexTable
and VirtualScroll
it means calling forceUpdateGrid
).
Documentation
API documentation available here.
There are also a couple of how-to guides:
- Customizing classes and styles
- Displaying items in reverse order
- Using AutoSizer
- Creating an infinite-loading list
- Displaying a reverse list
Examples
Examples for each component can be seen in the documentation.
Here are some online demos of each component:
- ArrowKeyStepper
- AutoSizer
- CellMeasurer
- Collection
- ColumnSizer
- FlexTable
- Grid
- InfiniteLoader
- ScrollSync
- VirtualScroll
- WindowScroller
And here are some "recipe" type demos:
Supported Browsers
react-virtualized aims to support all evergreen browsers and recent mobile browsers for iOS and Android. IE 9+ is also supported (although IE 9 will require some user-defined, custom CSS since flexbox layout is not supported).
If you find a browser-specific problem, please report it along with a repro case. The easiest way to do this is probably by forking this Plunker.
Open Collective
Backers
Support us with a monthly donation and help us continue our activities. [Become a backer]
Sponsors
Become a sponsor and get your logo on our README on Github with a link to your site. [Become a sponsor]
Contributions
Use GitHub issues for requests.
I actively welcome pull requests; learn how to contribute.
Changelog
Changes are tracked in the changelog.
License
react-virtualized is available under the MIT License.