• Stars
    star
    26,161
  • Rank 776 (Top 0.02 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 9 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

React components for efficiently rendering large lists and tabular data

React virtualized

React components for efficiently rendering large lists and tabular data. Check out the demo for some examples.

If you like this project, 🎉 become a sponsor or ☕ buy me a coffee

Sponsors

The following wonderful companies have sponsored react-virtualized:

Learn more about becoming a sponsor!

A word about react-window

If you're considering adding react-virtualized to a project, take a look at react-window as a possible lighter-weight alternative. Learn more about how the two libraries compare here.

Getting started

Install react-virtualized using npm.

npm install react-virtualized --save

ES6, CommonJS, and UMD builds are available with each distribution. For example:

// Most of react-virtualized's styles are functional (eg position, size).
// Functional styles are applied directly to DOM elements.
// The Table component ships with a few presentational styles as well.
// They are optional, but if you want them you will need to also import the CSS file.
// This only needs to be done once; probably during your application's bootstrapping process.
import 'react-virtualized/styles.css';

// You can import any component you want as a named export from 'react-virtualized', eg
import {Column, Table} from 'react-virtualized';

// But if you only use a few react-virtualized components,
// And you're concerned about increasing your application's bundle size,
// You can directly import only the components you need, like so:
import AutoSizer from 'react-virtualized/dist/commonjs/AutoSizer';
import List from 'react-virtualized/dist/commonjs/List';

Note webpack 4 makes this optimization itself, see the documentation.

If the above syntax looks too cumbersome, or you import react-virtualized components from a lot of places, you can also configure a Webpack alias. For example:

// Partial webpack.config.js
{
  alias: {
    'react-virtualized/List': 'react-virtualized/dist/es/List',
  },
  ...rest
}

Then you can just import like so:

import List from 'react-virtualized/List';

// Now you can use <List {...props} />

You can also use 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>

Now you're ready to start using the components. You can learn more about which components react-virtualized has to offer below.

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-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 occasionally 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. This can be done a couple of different ways.

Pass-thru props

The shallowCompare method will detect changes to any props, even if they aren't declared as propTypes. This means you can also pass through additional properties that affect cell rendering to ensure changes are detected. For example, if you're using List to render a list of items that may be re-sorted after initial render- react-virtualized would not normally detect the sort operation because none of the properties it deals with change. However you can pass through the additional sort property to trigger a re-render. For example:

<List {...listProps} sortBy={sortBy} />
Public methods

Grid and Collection components can be forcefully re-rendered using forceUpdate. For Table and List, you'll need to call forceUpdateGrid to ensure that the inner Grid is also updated. For MultiGrid, you'll need to call forceUpdateGrids to ensure that the inner Grids are updated.

Documentation

API documentation available here.

There are also a couple of how-to guides:

Examples

Examples for each component can be seen in the documentation.

Here are some online demos of each component:

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.

Friends

Here are some great components built on top of react-virtualized:

  • react-infinite-calendar: Infinite scrolling date-picker with localization, themes, keyboard support, and more
  • react-sortable-hoc: Higher-order components to turn any list into an animated, touch-friendly, sortable list
  • react-sortable-tree: Drag-and-drop sortable representation of hierarchical data
  • react-virtualized-checkbox: Checkbox group component with virtualization for large number of options
  • react-virtualized-select: Drop-down menu for React with windowing to support large numbers of options.
  • react-virtualized-tree: A reactive tree component that aims to render large sets of tree structured data in an elegant and performant way
  • react-timeline-9000: A calendar timeline component that is capable of displaying and interacting with a large number of items

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.

More Repositories

1

react-window

React components for efficiently rendering large lists and tabular data
JavaScript
15,571
star
2

react-error-boundary

Simple reusable React error boundary component
TypeScript
6,712
star
3

react-resizable-panels

TypeScript
3,668
star
4

react-highlight-words

React component to highlight words within a larger body of text
JavaScript
2,153
star
5

js-search

JS Search is an efficient, client-side search library for JavaScript and JSON objects
JavaScript
2,150
star
6

progress-estimator

Logs a progress bar and estimation for how long a Promise will take to complete
JavaScript
2,139
star
7

redux-search

Redux bindings for client-side search
JavaScript
1,404
star
8

react-virtualized-select

HOC that uses react-virtualized and react-select to display large lists of options in a drop-down
JavaScript
1,165
star
9

react-devtools-experimental

Experimental rewrite of the React DevTools extension
966
star
10

react-window-infinite-loader

InfiniteLoader component inspired by react-virtualized but for use with react-window
JavaScript
894
star
11

react-virtualized-auto-sizer

Standalone version of the AutoSizer component from react-virtualized
TypeScript
600
star
12

planner

Lightweight, interactive planning tool that visualizes a series of tasks using an HTML canvas
JavaScript
545
star
13

react-presents

React slideshow framework
JavaScript
499
star
14

angular-form-for

Set of Angular directives to simplify creating and validating HTML forms.
JavaScript
428
star
15

js-worker-search

JavaScript client-side search API with web-worker support
JavaScript
415
star
16

react-flame-graph

React component for visualizing profiling data
JavaScript
390
star
17

suspense

Utilities for working with React Suspense
TypeScript
353
star
18

jest-react-profiler

Jest helpers for working with the React Profiler API.
JavaScript
278
star
19

highlight-words-core

Utility functions shared by react-highlight-words and react-native-highlight-words
JavaScript
229
star
20

react-select-fast-filter-options

react-select filterOptions function optimized to quickly filter large options lists
JavaScript
207
star
21

redux-devtools-filterable-log-monitor

Filterable tree view monitor for Redux DevTools
JavaScript
155
star
22

personal-logger

Webapp for tracking personal diet, sleep, and general wellness
JavaScript
124
star
23

react-highlight.js

A simple React wrapper around the Highlight.js library
JavaScript
106
star
24

use-context-menu

React components for displaying configurable context menus
TypeScript
93
star
25

debounce-decorator

Decorator for debouncing class methods
JavaScript
93
star
26

forward-js-2017

Forward - Web Technology Summit
JavaScript
85
star
27

infinite-list-reflow-examples

Examples illustrating reflow handling with infinite lists
JavaScript
62
star
28

tweets

Twitter-like demo with limited functionality
JavaScript
56
star
29

react-devtools-tutorial

Interactive tutorial featuring the React DevTools v4
JavaScript
55
star
30

turdle

Wordle clone dedicated to 💩
JavaScript
55
star
31

jasmine-promise-matchers

Custom matchers for use with Jasmine 1.3 - 2.2 and Angular Promise objects.
JavaScript
51
star
32

babel-repl

React powered Babel REPL
JavaScript
42
star
33

extensions-api-proposal-custom-performance-pane

Extensions API proposal for the Performance Panel
36
star
34

react-window-table

JavaScript
34
star
35

immutable-js-store

Tiny observable wrapper around Immutable JS with rewind/replay support
JavaScript
34
star
36

task-runner

Async utilities for JavaScript application development with a focus on interruptibility and error-handling
JavaScript
34
star
37

live-stream-deep-dive-react-profiler

Source from live stream "Deep dive with the React DevTools profiler"
JavaScript
32
star
38

react-window-vs-react-virtualized-synced-grids

Comparison of react-virtualized MultiGrid to two react-window synced Grids
JavaScript
29
star
39

fps-measurer

Tiny testing utility for gathering FPS statistics
JavaScript
29
star
40

react-suspend-in-parallel

TypeScript
29
star
41

console.pretty

Pretty console logging
JavaScript
27
star
42

palettable

Generates an HTML color palette from SASS or Stylus source.
JavaScript
26
star
43

jasmine-es6-promise-matchers

ES6 Promise compatible Jasmine matchers
JavaScript
24
star
44

print-color

Utility for printing colored text in Node or the Browser
JavaScript
21
star
45

scheduling-profiler-prototype

Custom profiler prototype for React's concurrent mode
JavaScript
18
star
46

ng2-virtualized

Angular 2 components for efficiently rendering large, scrollable lists and tabular data
JavaScript
18
star
47

react-ascii-image

React component that displays image data as colored text
JavaScript
18
star
48

react-resizable-panels-demo-ssr

TypeScript
16
star
49

connect-tech-2016

Connect Tech 2016 presentation
JavaScript
14
star
50

react-wait-to-render

A function, component and mixin to defer component rendering until all required props are present
JavaScript
13
star
51

forms-js

Core forms-js library
JavaScript
12
star
52

faux-codesandbox-client

Example Code Sandbox and React DevTools v4 integration
JavaScript
11
star
53

react-conf-2018-profiling-keynote

2018 React Conf Profiling keynote
JavaScript
10
star
54

resume

HTML
10
star
55

bsky

Bluesky web UI (just for fun)
TypeScript
8
star
56

flat-object

Utilities for working with nested data structures
JavaScript
7
star
57

source-map-parsing-benchmark

JavaScript
6
star
58

react-immutable-js-store

React wrapper around immutable-js-store
JavaScript
6
star
59

test-extension-network-caching

JavaScript
6
star
60

react-devtools-triage-bot

GitHub bot for labeling and assigns bug reports for React DevTools that don't include repro info
JavaScript
5
star
61

jasmine-object-matchers

Custom object equality matchers for use with Jasmine 2.0.
JavaScript
5
star
62

react-createRoot-Suspense-async-act

JavaScript
4
star
63

game-of-life

TypeScript
3
star
64

react-devtools-inline-node-and-web-poc

JavaScript
3
star
65

test-github-issue-template

https://gh-community.github.io/issue-template-feedback/structured
3
star
66

test-named-hooks

Example create-react-app project meant to test React DevTools named hooks functionality
JavaScript
3
star
67

temp-devtools-profiler

Partial fork of React DevTools for testing Profiler plugin UI
JavaScript
3
star
68

TaskManager

Task Manager is an ActionScript library designed to simplify the implementation of asynchronous processes. This article is an introduction-to (and overview-of) the library.
3
star
69

stardew-valley-fishing

Silly fishing mini-game
TypeScript
3
star
70

bootstrap-select-button

Creates an Angular-friendly bindable button dropdown using the Bootstrap CSS framework
JavaScript
3
star
71

parcel-alpha-postcss-bug

JavaScript
2
star
72

test-github-actions

JavaScript
2
star
73

galaxiga-upgrade-tool

Web app to accompany Galaxiga mobile game
TypeScript
2
star
74

jqolor

JavaScript color picker built on top of jQuery and Bootstrap.
JavaScript
2
star
75

bvaughn

2
star
76

.github

2
star
77

bug-repro-suspense-cache-read-extra-renders

JavaScript
1
star
78

briandavidvaughn

Angular website
HTML
1
star
79

example-eslint-rule-override-issue

Repro
JavaScript
1
star
80

react-suspense-transition-demo-app

Demo app
TypeScript
1
star
81

website

Personal website
TypeScript
1
star
82

SoundClouDownloader

Chrome extension enabling automatic downloads of any SoundCloud track, even when download option is disabled
JavaScript
1
star
83

gatsby-remark-prismjs-react-live-bug

Shows a bug between the 'gatsby-remark-prismjs' plugin and the 'react-live' library
CSS
1
star
84

transcluder

Another Angular directive to help with multiple transclusion within a single directive
JavaScript
1
star
85

jest-uncaught-error-repro

JavaScript
1
star
86

reflex-unit

Automatically exported from code.google.com/p/reflex-unit
HTML
1
star
87

TaskManagerCoffeeScript

CoffeeScript
1
star