All Projects → hmarcelodn → aurelia-virtual-scroll

hmarcelodn / aurelia-virtual-scroll

Licence: CC0-1.0 license
Aurelia Virtual Scroller

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to aurelia-virtual-scroll

React Virtualized
React components for efficiently rendering large lists and tabular data
Stars: ✭ 22,963 (+152986.67%)
Mutual labels:  grid, virtualization, windowing
aurelia-datatable
A 100% aurelia based data table component.
Stars: ✭ 32 (+113.33%)
Mutual labels:  grid, aurelia
aurelia-fontawesome
Font Awesome 5 Aurelia component
Stars: ✭ 15 (+0%)
Mutual labels:  aurelia, aurelia-plugins
vue-virtual-scroll-grid
A Vue 3 component that can render a list with 1000+ items as a grid in a performant way.
Stars: ✭ 64 (+326.67%)
Mutual labels:  grid, windowing
React Tiny Virtual List
A tiny but mighty 3kb list virtualization library, with zero dependencies 💪 Supports variable heights/widths, sticky items, scrolling to index, and more!
Stars: ✭ 2,057 (+13613.33%)
Mutual labels:  virtualization, windowing
Aurelia Slickgrid
Aurelia-Slickgrid a wrapper of the lightning fast & customizable SlickGrid datagrid with a few Styling Themes
Stars: ✭ 100 (+566.67%)
Mutual labels:  grid, aurelia
aurelia-knockout
Adds support for Knockout binding syntax to make transition from Durandal and Knockout to Aurelia simpler.
Stars: ✭ 22 (+46.67%)
Mutual labels:  aurelia, aurelia-plugins
aurelia-mdl-plugin
Material Design Lite plugin for Aurelia.
Stars: ✭ 19 (+26.67%)
Mutual labels:  aurelia, aurelia-plugins
react-bolivianite-grid
React grid component for virtualized rendering large tabular data.
Stars: ✭ 95 (+533.33%)
Mutual labels:  grid, virtualization
Grid
Declarative React Canvas Grid primitive for Data table, Pivot table, Excel Worksheets and more 💥
Stars: ✭ 573 (+3720%)
Mutual labels:  grid, virtualization
aurelia-mdc-plugin
MDC (Material Design UI Components) plugin for Aurelia.
Stars: ✭ 13 (-13.33%)
Mutual labels:  aurelia, aurelia-plugins
react-functional-select
Micro-sized & micro-optimized select component for React.js
Stars: ✭ 165 (+1000%)
Mutual labels:  virtualization, windowing
uvmm
Virtual machine monitor for L4Re
Stars: ✭ 22 (+46.67%)
Mutual labels:  virtualization
ModernOperatingSystems AndrewTanenbaum
My notes after reading 'Modern Operating Systems' book by Andrew Tanenbaum and Herbert Bos.
Stars: ✭ 71 (+373.33%)
Mutual labels:  virtualization
bootstrap-grid-ms
Missing grid range in Bootstrap 3, micro-small from 480-767px.
Stars: ✭ 34 (+126.67%)
Mutual labels:  grid
flutter examples
Random flutter examples
Stars: ✭ 18 (+20%)
Mutual labels:  grid
module-page-builder-grid
Example Page Builder Grid Module
Stars: ✭ 17 (+13.33%)
Mutual labels:  grid
slickgrid-es6
SlickGrid fork rewrites for ES6 for use under npm and Babel / Rollup builds
Stars: ✭ 100 (+566.67%)
Mutual labels:  grid
grid-trade-helper
📜A tool for generating grid trade data table.
Stars: ✭ 13 (-13.33%)
Mutual labels:  grid
NiftyGrid
DataGrid for Nette Framework
Stars: ✭ 34 (+126.67%)
Mutual labels:  grid

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.

Demo

http://aurelia-virtual-scroll-site.azurewebsites.net

Installation

npm install aurelia-virtual-scroller --save

Open your package.json adding the following lines:

"aurelia": {
	"build": {
  		"resources": [
    		"aurelia-virtual-scroll/aurelia-virtual-scroll"
  		]
	}
}

All samples below refer to the plugin demo site configuration.

Window Scroll Setup

<div class="lazy-scroll-container" style="border: 1px solid yellow;">
    <div v-scroll="slot-height.bind: 400;
                      slot-line-height.bind: 60;
                      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: 150 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 60 }
                        ];
                     enable-fetch-mode.bind: false;
                     fetch-buffer.bind: 20">  
    </div>
</div>  

Window + Polling Scroll Setup

<div class="lazy-scroll-container">
    <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: 150 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 70 }
                        ];
                     enable-fetch-mode.bind: false;
                     fetch-buffer.bind: 20;
                     array-polling-mode: true">  
    </div>
</div>   

Window + Fetch Scroll Setup

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 class="lazy-scroll-container" style="border: 1px solid yellow;">
    <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: 150 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 70 }
                        ];
                     enable-fetch-mode.bind: true;
                     fetch-buffer.bind: 20">  
    </div>
</div>  

Window + Headers Scroll Setup

<div class="lazy-scroll-container" style="border: 1px solid yellow;">
    <div v-scroll="slot-height.bind: 400;
                      slot-line-height.bind: 60;
                      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: 150 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 60 }
                        ];
                     enable-fetch-mode.bind: false;
                     fetch-buffer.bind: 20;
                     header-callback.bind: buildHeaderCallback;">  
    </div>
</div>  

Contained Scroll Setup

 <div class="lazy-scroll-container" style="border: 1px solid yellow;">
    <div v-scroll="slot-height.bind: 400;
                      slot-line-height.bind: 70;
                      fetcher.bind: fetcher;
                      storage.bind: list;
                      debug.bind: true;
                      window-scroller.bind: false;
                      viewport-element.bind: 'lazy-scroll-container';
                      callback.bind: buildRowCallback;
                      breakpoints.bind: 
                        [
                            { breakpointFrom: 400, breakpointTo: 900, height: 150 },
                            { breakpointFrom: 100, breakpointTo: 399, height: 200 },
                            { breakpointFrom: 900, breakpointTo: 3000, height: 70 }
                        ];
                     enable-fetch-mode.bind: true;
                     fetch-buffer.bind: 20">         
    </div>
</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. (Mandatory for contained scroll)
  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. headerCallback: A callback which will be return a string with the template for a header.
  9. breakpoints: Specify for a width range which height will the rows measure.
  10. enableFetchMode: Turn on infinite scroll functionality. In order to have this working its required to pass fetcher a function which returns a promise.
  11. fetchBuffer: This indicates tha buffer below visible area to start fetching further data. If the scroll is getting the last item in the buffer then it will invoke the fetcher callback in order to retrieve extra data. Always try to keep this number low to render as less as possible items.
  12. arrayPollingMode: If the array passed to storage function is overwritten then the screen and scroll will be re-computed. If the array is not overwritten but changes are happenning like searches then set this value to true so the plugin will poll every 200 ms to the array in order to check its length. If the length changed the screen will be computed.

Callback Parameter Sample

 buildRowCallback(item, itemIndex, firstIndex, lastIndex){
    return "<div class='row'>" +
             "<div class='col-sm-4'><img class='img-responsive' src='http://vignette3.wikia.nocookie.net/wreckitralph/images/5/58/Blinky8bit.png/revision/latest?cb=20130625170114' class='img-rounded' alt='Red Phantom' width='40' height='40'></div>" +
             "<div class='col-sm-4 text-center'><a href='#' click.trigger='navigate()'>${propertyOne}</a></div>" +
             "<div class='col-sm-4'><input class='form-control' type='text' value.bind='propertyOne' /></div>" +
           "</div>";     
}

Fetcher Sample

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

Header Callback Sample

buildHeaderCallback(){
    return "<div class='row'>" +
             "<div class='col-sm-4'>Image</div>" +
             "<div class='col-sm-4'>Text</div>" +
             "<div class='col-sm-4'>Editor</div>" +
           "</div>";
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].