Snappy React Grid is a simple to use windowing solution for React, built with performance and simplicity in mind.
npm install @jetshop/snappy-react-gridSnappy React Grid is a simple to use windowing solution for React, built with performance and simplicity in mind.
Use yarn to add it to your React app:
``bash`
$ yarn add snappy-react-grid
`javascript
import { SnappyReactGrid } from 'snappy-react-grid';
const items = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const Item = ({ style, innerRef, item }) => (
const App = () =>
`
The data that is used to render the grid. This is passed down to the render component, but could be anything really.
This is used to render all the items. Some important props are passed down to this component:
#### item: any
The item data from the items array.
#### style: Object
Apply this to the outermost DOM node for the styling to work.
#### innerRef: ref
Apply this as ref on the outermost DOM node. It is used to measure the item height and make sure that all items have the proper offset.
The amount of items to show by default. Used for server side rendering.
If you want to offset the default rendering (i.e. not start with the first item), you can override this. You should rarely have to touch this.
The amount of items to render per row.
The amount of rows outside the view that should be rendered. A higher number means less glitching when you scroll fast, but might cause performance issues.
CSS class that is applied to the div element that wraps the grid.
Called whenever the user scrolls with the current range of items in view as arguments. This can be used to implement side effects based on scrolling behaviour, such as automatically fetching more data etc.
#### firstVisibleIndex: number
Index of the first item that is in view.
#### lastVisibleIndex: number
Index of the last item that is in view.
If you have any problems with this module, please don't hesitate to open an issue in this repository.
Contributions are always appreciated!
To build this module, run yarn build.
To start the test runner, run yarn test`.