Socket
Socket
Sign inDemoInstall

@loadingio/vscroll

Package Overview
Dependencies
3
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @loadingio/vscroll

Remove elements that are not near visible regions while maintain the scroll bar height and position.


Version published
Weekly downloads
3
decreased by-57.14%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

vscroll

Remove elements that are not near visible regions while maintain the scroll bar height and position.

Why

Reflow is expensive especially when there are too many elements in webpage. By only inserting elements in visible ranges, we can effectively limit the amount of elements.

This is designed to be an alternative or replacement for Clusterize.js. The reason for making an alternative is because Clusterize.js uses GPL License and you have to purchase license for commercial use, thus is not suitable as a fundamental dependency of other open source projects.

Install

npm install --save @loadingio/vscroll

Usage

include required js file:

<script src="path-to-dist/index.js"></script>

initialize by passing the container element:

vs = new vscroll.fixed({root: mycontainer});
vs.update!

You can update child elements just as if it is a regular DOM element. Just remember to call update after:

vs.insertBefore(newNode, vs.childNodes[0]);
vs.removeChild(vs.childNodes[vs.childNodes.length - 1]);
vs.update();

Please note that:

  • we expect the container ( root parameter ) is limited in height and scrollable.
  • we expect nodes to be visible when calling update, otherwise we can't correctly calcualte its diemsion.

Also, update may still take a long time if there are many children since it scans all children to determine line height and row count. Even a simple getBoundingClientRect takes quite long.

Thus, pass an optional probe-len option to limit the size of test set of children:

vs.update(30);

probe-len should at least larger than the count of child in a row, but may need a longer length if children's position may be different ( e.g., in a flexbox ) when there are not enough amount of children.

You can always re-calculate the content to be shown by calling locate():

vs.locate();

Variations

vscroll (plans to) provides different types of virtual scroller, based on how they handle scroll events and manage DOM elements.

vscroll.fixed

Only attach elements that are near visible region of the container. Expect following conditions:

  • height per row are the same
  • amount of element per row are the same

vscroll.dummy

A dummy scroll wrapper. No virtualization, reflects DOM operations directly to root.

License

MIT

FAQs

Last updated on 27 Apr 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc