A virtual scroll React component for efficiently rendering large scrollable lists, grids, tables, and feeds
React components for efficiently rendering large lists, grids, and tables with virtualization.
| Component | Purpose |
|---|---|
Virtuoso | Flat lists |
GroupedVirtuoso | Groups of items with sticky group headers |
VirtuosoGrid | Same-sized items in a responsive grid layout |
TableVirtuoso | Tables with virtualized rows |
startReached and endReached callbacks for loading data on demandnpm install react-virtuoso
Add the Virtuoso Component to your React project. The bare minimum it needs is a height for its container (either explicitly set, or adjusted through a parent flexbox), the number of items to display, and a callback to render the item content.
import { Virtuoso } from 'react-virtuoso'
export default function App() {
return <Virtuoso style={{ height: '100%' }} totalCount={200} itemContent={(index) => <div>Item {index}</div>} />
}
The GroupedVirtuoso component is similar to the "flat" Virtuoso, with the following differences:
totalCount, the Component accepts groupedCounts: number[], which specifies the amount of items in each group.
For example, passing [20, 30] will render two groups with 20 and 30 items each;item render prop, the Component requires an additional group render prop,
which renders the group header. The group callback receives the zero-based group index as a parameter;itemContent render prop gets called with an additional second parameter, groupIndex: number.import { GroupedVirtuoso } from 'react-virtuoso'
const groupCounts = []
for (let index = 0; index < 1000; index++) {
groupCounts.push(10)
}
export default function App() {
return (
<GroupedVirtuoso
style={{ height: '100%' }}
groupCounts={groupCounts}
groupContent={(index) => {
return (
// add background to the element to avoid seeing the items below it
<div>
Group {index * 10} – {index * 10 + 10}
</div>
)
}}
itemContent={(index, groupIndex) => {
return (
<div>
Item {groupIndex}.{index}
</div>
)
}}
/>
)
}
Check the grouped numbers, grouped by first letter and groups with load on demand examples.
The TableVirtuoso component works like the Virtuoso one, but with HTML tables. It supports window scrolling, sticky headers, and fixed columns.
import { TableVirtuoso } from 'react-virtuoso'
export default function App() {
return (
<TableVirtuoso
style={{ height: '100%' }}
data={Array.from({ length: 100 }, (_, index) => ({
name: `User ${index}`,
description: `${index} description`,
}))}
itemContent={(index, user) => (
<>
<td style={{ width: 150 }}>{user.name}</td>
<td>{user.description}</td>
</>
)}
/>
)
}
The VirtuosoGrid component displays same sized items in multiple columns.
The layout and item sizing is controlled CSS class properties or styled containers,
which allows you to use media queries, min-width, percentage, etc.
import { VirtuosoGrid, VirtuosoGridProps } from 'react-virtuoso'
import { forwardRef } from 'react'
// Ensure that the component definitions are not declared inline in the component function,
// Otherwise the grid will remount with each render due to new component instances.
const gridComponents: VirtuosoGridProps<undefined, undefined>['components'] = {
List: forwardRef(({ style, children, ...props }, ref) => (
<div
ref={ref}
{...props}
style={{
display: 'flex',
flexWrap: 'wrap',
...style,
}}
>
{children}
</div>
)),
Item: ({ children, ...props }) => (
<div
{...props}
style={{
padding: '0.5rem',
width: '33%',
display: 'flex',
flex: 'none',
alignContent: 'stretch',
boxSizing: 'border-box',
}}
>
{children}
</div>
),
}
const ItemWrapper = ({ children, ...props }) => (
<div
{...props}
style={{
display: 'flex',
flex: 1,
textAlign: 'center',
padding: '1rem 1rem',
border: '1px solid gray',
whiteSpace: 'nowrap',
}}
>
{children}
</div>
)
export default function App() {
return (
<>
<VirtuosoGrid
style={{ height: '100%' }}
totalCount={1000}
components={gridComponents}
itemContent={(index) => <ItemWrapper>Item {index}</ItemWrapper>}
/>
<style>{`html, body, #root { margin: 0; padding: 0 }`}</style>
</>
)
}
Several factors affect the component's performance.
The first and most important one is the size of the visible area.
Redrawing more items takes more time and reduces the frame rate.
To see if this affects you, reduce the component width or height;
Set the style property to something like {{width: '200px'}}.
Next, if the items are complex or slow to render, use React.memo for the itemContent contents.
// Item contents are cached properly with React.memo
const InnerItem = React.memo(({ index }) => {
React.useEffect(() => {
console.log('inner mounting', index)
return () => {
console.log('inner unmounting', index)
}
}, [index])
return <div style={{ height: 30 }}>Item {index}</div>
})
// The callback is executed often - don't inline complex components in here.
const itemContent = (index) => {
console.log('providing content', index)
return <InnerItem index={index} />
}
const App = () => {
return <Virtuoso totalCount={100} itemContent={itemContent} style={{ height: '100%' }} />
}
ReactDOM.render(<App />, document.getElementById('root'))
You can experiment with the increaseViewportBy property that specifies
how much more to render in addition to the viewport's visible height.
For example, if the component is 100px tall, setting the increaseViewportBy
to 150 will cause the list to render at least 250px of content.
Loading images and displaying complex components while scrolling can cause jank.
To fix that, you can hook to the isScrolling callback and replace
the problematic content in the item with a simplified one.
Check the scroll handling example for a possible implementation.
Setting CSS margins to the content or the item elements is the Kryptonite of Virtuoso's content measuring mechanism - the contentRect measurement does not include them.
If this affects you, the total scroll height will be miscalculated, and the user won't be able to scroll all the way down to the list.
To avoid that, if you are putting paragraphs and headings inside the item, make sure that the top/bottom elements' margins do not protrude outside of the item container.
<Virtuoso
totalCount={100}
item={(index) => (
<div>
<p style={{ margin: 0 }}>Item {index}</p>
</div>
)}
/>
A few more common problems are present in the troubleshooting section.