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

aurelia-virtual-scroller

v1.0.1

Published

Aurelia Virtual Scrolling for large lists w/breakpoints support for using Responsive Design.

Downloads

5

Readme

aurelia-virtual-scroller

Virtualize the list

aurelia-virtual-scroller allows to virtualize a list without losing you observer model context. It will help to reduce significantly the render time from the browser from lineal to constant time. It its mobile friendly (the reason it was created for) and with some configurations that allows to use this plugin in a responsive design application. Its open source and everybody can collaborate with its code base to improve and have a better plugin.

Installation

npm install aurelia-virtual-scroller --save

Usage

aurelia-virtual-scroller is a custom-attribute you can add to a markup section when you want to virtualize an observable list. Below is a full configuration example:

       <div v-scroll="slot-height.bind: 400;
                      slot-line-height.bind: 70;
                      fetcher.bind: fetcher;
                      storage.bind: list;
                      debug.bind: true;
                      window-scroller.bind: true;
                      viewport-element.bind: 'lazy-scroll-container';
                      callback.bind: buildRowCallback;
                      breakpoints.bind: 
                        [
                            { breakpointFrom: 400, breakpointTo: 900, height: 100 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 70 }
                        ];">         
    </div>

Parameters Table

  1. slot-height: If you want to virtualize a container you need to specify in pixels the total height for that container.
  2. slot-line-height: Its the initial height for every row. Its specific and any content overflowed will be hidden. If you want to support responsive behavior check the breakpoints option.
  3. fetcher: A function that will be called by the plugin for infinite scroll support.
  4. storage: An observable array to virtualize into the container.
  5. debug: Enable console information from the plugin.
  6. window-scroller: Enable full window virtualization.
  7. callback: A callback passed that can be used for build the row. Its a required parameter which returns a string type that supports aurelia syntax since the plugin will compile that. It retuns a promise.
  8. breakpoints: Specify for a width range which height will the rows measure.

Callback Parameter Sample

buildRowCallback(item){
       return "<div>${propertyOne}</div>";   
}

Fetcher Sample

fetcher(){
    return new Promise((resolve, reject) => {
       return resolve([{ "propertyOne": "Test" }]); 
    });        
}