npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-smart-scroll

v1.3.0

Published

Smart Scroll React Component for long lists

Downloads

80

Readme

react-smart-scroll

npm version

ReactSmartScroll is a lightweight, high-performance, easy-to-use way to render long lists efficiently in React. It only renders the visible rows, with a few buffer rows above and below.

ReactSmartScroll is (mostly) un-opinionated, with minimum configuration. It has automatic support for variable height rows, even if they change height at runtime due to resizing, expanding, etc.

Installation

// npm
npm i -S react-smart-scroll

// yarn
yarn add react-smart-scroll

Super Simple Sample:

import ReactSmartScroll from 'react-smart-scroll';

const data = [
    {id: 1, text: 'Hello'},
    {id: 2, text: 'World'},
];

const TestRow = ({data, rowRef}) => (
    <div ref={rowRef}>
        {data.text}
    </div>
);

export default () => (
    <ReactSmartScroll data={data} row={TestRow} />
);

TypeScript

Typing for your row components is included as a named export.

import {ReactSmartScrollRow} from 'react-smart-scroll';

const TypedTestRow: ReactSmartScrollRow = ({data, rowRef}) => (
    <div ref={rowRef}>
        {data.text}
    </div>
);

Working Demo with variable height rows:

This component uses React Hooks, so it requires React 16.8.x or above.

How To Use

ReactSmartScroll is designed to be simple to use. You can check the demo folder for an example, as well.

At its most basic, you pass an array of data and a row component to render the items in the array.

Props

  • className - A css className that will be applied to the component.
  • data - An array of items to be passed to your row component.
  • overflow - You can set this to auto or scroll ("auto" is the default).
  • row - Your row component.
  • rowHeight - Starting row height (100 by default) - it starts with this as an estimate for all rows, and then measures and caches the actual height of each row is as you scroll.
  • startAt - You can pass an index to start the list at (0 by default).
  • style - A style object applied to the component if you prefer using inline styling instead of css.
  • ...rowProps - Any additional props you pass will be applied to your row components, for example onClick.

All of the props are optional. If you don't provide any data or a row component, it won't render anything, but it won't cause any errors, either.

You need to apply height, either in the css class or the style object. You can use a specific height, or calc().

Due to a CSS limitation with how overflow works with padding, height: 100% does not work.

The overflow default value of auto is applied via style. If you want to use a css class to control it, you need to pass null, undefined, or an empty string to overflow. If you use a style object, you can set it there, since the default auto is applied before your style object and thus can be overwritten that way.

import ReactSmartScroll, {ReactSmartScrollRow} from 'react-smart-scroll';

<ReactSmartScroll 
    className="demo-smart-scroll" 
    data={data} 
    overflow="scroll"
    row={TestRow}
    startAt={5}
    onClick={() => console.log('Hello!')} // passed to row components
    label="My text is: " // passed to row components
/>

const TestRow: ReactSmartScrollRow = ({data, height, label, onClick, rowIndex, rowRef}) => (
    <div ref={rowRef} className="test-row" onClick={() => onClick(rowIndex)}>
        <strong>[{data.id}]</strong>: {height}px<br/>
        <label>{label}</label>:<p>{data.text}</p>
    </div>
);

The data array can be made up of objects or strings. ReactSmartScroll passes the items in the array directly to your row component so you have complete freedom in how the rows render. If you pass an object with an id property, it will use the id as the key for each row, which can be more efficient than using the row index.

Your row component receives the following props:

  • data - The item in the data array that corresponds to this row.
  • height - The current measured height of the row. It's provided for debugging or if you have a use for it.
  • rowIndex - The index of the item in the data array. Also provided for debugging, use if you like.
  • rowRef - required You need to include ref={rowRef} prop on your row component's container element.
  • ...rowProps - Any additional props you passed to the ReactSmartScroll component will be available on every row.

How It Works

ReactSmartScroll renders enough rows to fill the visible space of the scroll area, plus an extra one above and below. It measures the height of each of the visible row and caches that height as you scroll (or resize) so that the next render of the same row is more efficient. It simulates the total height of all the items by adjusting the padding top and bottom of the div that contains the rows as you scroll.

Unlike other virtual scrolling components/libraries, there are no unnecessary wrapper divs for your rows, it doesn't use absolute positioning, and doesn't require any polyfills.

Firefox Note

The latest version of Firefox doesn't seem to keep up with React's rendering speed with useLayoutEffect() or useEffect(), so if you grab the scrollbar and scroll up and down really fast, you'll see blank space momentarily. Other browsers don't appear to have this problem. Using the mouse wheel to scroll looks good in all browsers.

rowRef Note

Why does React Smart Scroll pass rowRef instead of just passing ref?

This removes the burden of having to wrap functional row components with React.forwardRef().

IMO, it's easier and more flexible for you to use rowRef.

Closing Note

I hope you enjoy using this component as much as I enjoyed making it!

Follow me:

  • twitter: https://twitter.com/stevensacks
  • github: https://github.com/stevensacks
  • gitlab: https://gitlab.com/stevensacks
  • linkedin: https://www.linkedin.com/in/stevensacks