Virtual Scroll displays a virtual, "infinite" list. Supports horizontal/vertical, variable heights, & multi-column.
Renamed from angular2-virtual-scroll to ngx-virtual-scroller
About
This module displays a small subset of records just enough to fill the viewport and uses the same DOM elements as the user scrolls.
This method is effective because the number of DOM elements are always constant and tiny irrespective of the size of the list. Thus virtual scroll can display an infinitely growing list of items in an efficient way.
Angular 4+ compatible module
Supports multi-column
Easy to use apis
OpenSource and available in GitHub
Breaking Changes:
v0.4.13: resizeBypassRefreshTheshold renamed to resizeBypassRefreshThreshold (typo)
v0.4.12: The start and end values of the change/start/end events were including bufferAmount, which made them confusing. This has been corrected.
viewPortIndices.arrayStartIndex renamed to viewPortIndices.startIndex and viewPortIndices.arrayEndIndex renamed to viewPortIndices.endIndex
v0.4.4: The value of ChangeEvent.end wasn't intuitive. This has been corrected. Both ChangeEvent.start and ChangeEvent.end are the 0-based array indexes of the items being rendered in the viewport. (Previously Change.End was the array index + 1)
New features:
Added API to query for current scroll px position (also passed as argument to ChangeEvent listeners)
Added API to invalidate cached child item measurements (if your child item sizes change dynamically)
Added API to scroll to specific px position
If scroll container resizes, the items will auto-refresh. Can be disabled if it causes any performance issues by setting [checkResizeInterval]="0"
useMarginInsteadOfTranslate flag. Defaults to false. This can affect performance (better/worse depending on your circumstances), and also creates a workaround for the transform+position:fixed browser bug.
Support for horizontal scrollbars
Support for elements with different sizes
Added ability to put other elements inside of scroll (Need to wrap list itself in @ContentChild('container'))
Added ability to use any parent with scrollbar instead of this element (@Input() parentScroll)
'my-custom-component' must be a custom angular2 component, outside of this library.
Child component is not necessary if your item is simple enough. See below.
<virtual-scroll #scroll [items]="items"><div *ngFor="let item of scroll.viewPortItems">{{item?.name}}</div></virtual-scroll>
API
Attribute
Type
Description
checkResizeInterval
number
How often in milliseconds to check if virtual-scroll (or parentScroll) has been resized. If resized, it'll call Refresh() method. Defaults to 1000. Can be injected by DI with token "virtualScroll.checkResizeInterval".
resizeBypassRefreshThreshold
number
How many pixels to ignore during resize check if virtual-scroll (or parentScroll) are only resized by a very small amount. Defaults to 5. Can be injected by DI with token "virtualScroll.resizeBypassRefreshThreshold".
enableUnequalChildrenSizes
boolean
If you want to use the "unequal size" children feature. This is not perfect, but hopefully "close-enough" for most situations. Defaults to false.
scrollThrottlingTime
number
Milliseconds to delay refreshing viewport if user is scrolling quickly (for performance reasons). Default is 0. Can be injected by DI with token "virtualScroll.scrollThrottlingTime".
useMarginInsteadOfTranslate
boolean
Defaults to false. Translate is faster in many scenarios because it can use GPU acceleration, but it can be slower if your scroll container or child elements don't use any transitions or opacity. More importantly, translate creates a new "containing block" which breaks position:fixed because it'll be relative to the transform rather than the window. If you're experiencing issues with position:fixed on your child elements, turn this flag on.
scrollbarWidth
number
If you want to override the auto-calculated scrollbar width. This is used to determine the dimensions of the viewable area when calculating the number of items to render. Can be injected by DI with token "virtualScroll.scrollbarWidth".
scrollbarHeight
number
If you want to override the auto-calculated scrollbar height. This is used to determine the dimensions of the viewable area when calculating the number of items to render. Can be injected by DI with token "virtualScroll.scrollbarHeight".
horizontal
boolean
Whether the scrollbars should be vertical or horizontal. Defaults to false.
items
any[]
The data that builds the templates within the virtual scroll. This is the same data that you'd pass to ngFor. It's important to note that when this data has changed, then the entire virtual scroll is refreshed.
childWidth (DEPRECATED)
number
The minimum width of the item template's cell. Use this if enableUnequalChildrenSizes isn't working well enough. (The actual rendered size of the first cell is used by default if not specified.)
childHeight (DEPRECATED)
number
The minimum height of the item template's cell. Use this if enableUnequalChildrenSizes isn't working well enough. (The actual rendered size of the first cell is used by default if not specified.)
bufferAmount (DEPRECATED)
number
The number of elements to be rendered above & below the current container's viewport. Increase this if enableUnequalChildrenSizes isn't working well enough. (defaults to enableUnequalChildrenSizes ? 5 : 0)
scrollAnimationTime
number
The time in milliseconds for the scroll animation to run for. Default value is 750. 0 will completely disable the tween/animation. Can be injected by DI with token "virtualScroll.scrollAnimationTime".
parentScroll
Element / Window
Element (or window), which will have scrollbar. This element must be one of the parents of virtual-scroll
compareItems
Function
Predicate of syntax (item1:any, item2:any)=>boolean which is used when items array is modified to determine which items have been changed (determines if cached child size measurements need to be refreshed or not for enableUnequalChildrenSizes). Defaults to === comparison.
start (DEPRECATED) / vsStart
Event
This event is fired every time start index changes and emits ChangeEvent which is of format: { start: number, end: number, scrollStartPosition:number, scrollEndPosition:number }
end (DEPRECATED) / vsEnd
Event
This event is fired every time end index changes and emits ChangeEvent which is of format: { start: number, end: number, scrollStartPosition:number, scrollEndPosition:number }
update (DEPRECATED) / vsUpdate
Event
This event is fired every time the start or end indexes change and emits the list of items which should be visible based on the current scroll position from start to end. The list emitted by this event must be used with *ngFor to render the actual list of items within <virtual-scroll>
change (DEPRECATED) / vsChange
Event
This event is fired every time the start or end indexes or scroll position change and emits ChangeEvent which is of format: { start: number, end: number, scrollStartPosition:number, scrollEndPosition:number }
viewPortIndices (DEPRECATED. use viewPortInfo instead)
{ startIndex: number, endIndex: number }
Allows querying the visible item indexes in the viewport on demand rather than listening for events.
The hard-coded width of the item template's cell to use if rendering via Angular Universal/Server-Side-Rendering
ssrChildHeight
number
The hard-coded height of the item template's cell to use if rendering via Angular Universal/Server-Side-Rendering
ssrViewportWidth
number
The hard-coded visible width of the virtual-scroll (or [parentScroll]) to use if rendering via Angular Universal/Server-Side-Rendering. Defaults to 1920.
ssrViewportHeight
number
The hard-coded visible height of the virtual-scroll (or [parentScroll]) to use if rendering via Angular Universal/Server-Side-Rendering. Defaults to 1080.
Note: The Events without the "vs" prefix have been deprecated because they might conflict with native DOM events due to their "bubbling" nature. See https://github.com/angular/angular/issues/13997
An example is if an element inside emits a "change" event which bubbles up to the (change) handler of virtual-scroll. Using the vs prefix will prevent this bubbling conflict because there are currently no official DOM events prefixed with vs.
Getting view port items without events
If you are using AOT compilation (I hope you are) then with classic usage (listening to update event) you are required to create a public field viewPortItems in your component.
Here's a way to avoid it:
<virtual-scroll #scroll [items]="items"><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></virtual-scroll>
Additional elements in scroll
If you want to nest additional elements inside virtual scroll besides the list itself (e.g. search field), you need to wrap those elements in a tag with an angular selector name of #container.
<virtual-scroll #scroll [items]="items"><inputtype="search"><div #container><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></div></virtual-scroll>
Use parent scrollbar
If you want to use the scrollbar of a parent element, set parentScroll to a native DOM element.
<div #scrollingBlock><virtual-scroll #scroll [items]="items" [parentScroll]="scrollingBlock"><inputtype="search"><div #container><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></div></virtual-scroll></div>
If the parentScroll is a custom angular component (instead of a native HTML element such as DIV), Angular will wrap the #scrollingBlock variable in an ElementRef https://angular.io/api/core/ElementRef in which case you'll need to use the .nativeElement property to get to the underlying javascript DOM element reference.
<custom-angular-component #scrollingBlock><virtual-scroll #scroll [items]="items" [parentScroll]="scrollingBlock.nativeElement"><inputtype="search"><div #container><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></div></virtual-scroll></custom-angular-component>
Note: The parent element should have a width and height defined.
Use scrollbar of window
If you want to use the window's scrollbar, set parentScroll.
<virtual-scroll #scroll [items]="items" [parentScroll]="scroll.window"><inputtype="search"><div #container><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></div></virtual-scroll>
Items with variable size
Items must have fixed height and width for this module to work perfectly. If not, set [enableUnequalChildrenSizes]="true".
(DEPRECATED): If enableUnequalChildrenSizes isn't working, you can set inputs childWidth and childHeight to their smallest possible values. You can also modify bufferAmount which causes extra items to be rendered on the edges of the scrolling area.
<virtual-scroll #scroll [items]="items" [enableUnequalChildrenSizes]="true"><my-custom-component *ngFor="let item of scroll.viewPortItems"></my-custom-component></virtual-scroll>
Loading in chunks
The event end is fired every time the scrollbar reaches the end of the list. You could use this to dynamically load more items at the end of the scroll. See below.
Note: There is no support for a fixed-to-top-header.
<virtual-scroll #scroll [items]="myItems"><table><thead><th>Index</th><th>Name</th><th>Gender</th><th>Age</th><th>Address</th></thead><tbody #container><tr *ngFor="let item of scroll.viewPortItems"><td>{{item.index}}</td><td>{{item.name}}</td><td>{{item.gender}}</td><td>{{item.age}}</td><td>{{item.address}}</td></tr></tbody></table></virtual-scroll>
If child size changes
virtual-scroll caches the measurements for the rendered items. If enableUnequalChildrenSizes===true then each item is measured and cached separately. Otherwise, the 1st measured item is used for all items.
If your items can change sizes dynamically, you'll need to notify virtual-scroll to re-measure them. There are 3 methods for doing this:
Note: This should now be auto-detected, however the 'refresh' method can still force it if neeeded.
This was implemented using the setInterval method which may cause minor performance issues. It shouldn't be noticeable, but can be disabled via [checkResizeInterval]="0"
Performance will be improved once "Resize Observer" (https://wicg.github.io/ResizeObserver/) is fully implemented.
Refresh method (DEPRECATED)
If virtual scroll is used within a dropdown or collapsible menu, virtual scroll needs to know when the container size changes. Use refresh() function after container is resized (include time for animation as well).
import { Component, ViewChild } from'@angular/core';
import { VirtualScrollComponent } from'ngx-virtual-scroller';
@Component({
selector: 'rj-list',
template: `
<virtual-scroll [items]="items" (vsUpdate)="scrollList = $event">
<div *ngFor="let item of scrollList; let i = index"> {{i}}: {{item}} </div>
</virtual-scroll>
`
})
exportclassListComponent {
protected items = ['Item1', 'Item2', 'Item3'];
@ViewChild(VirtualScrollComponent)
privatevirtualScroll: VirtualScrollComponent;
// call this function after resize + animation endafterResize() {
this.virtualScroll.refresh();
}
}
Focus an item
You can use the scrollInto(item, alignToBeginning?, additionalOffset?, animationMilliseconds?, animationCompletedCallback?) api to scroll into an item in the list.
You can also use the scrollToIndex(index, alignToBeginning?, additionalOffset?, animationMilliseconds?, animationCompletedCallback?) api for the same purpose.
See below:
import { Component, ViewChild } from'@angular/core';
import { VirtualScrollComponent } from'ngx-virtual-scroller';
@Component({
selector: 'rj-list',
template: `
<virtual-scroll [items]="items" (vsUpdate)="scrollList = $event">
<div *ngFor="let item of scrollList; let i = index"> {{i}}: {{item}} </div>
</virtual-scroll>
`
})
exportclassListComponent {
protected items = ['Item1', 'Item2', 'Item3'];
@ViewChild(VirtualScrollComponent)
privatevirtualScroll: VirtualScrollComponent;
// call this function whenever you have to focus on second itemfocusOnAnItem() {
this.virtualScroll.items = this.items;
this.virtualScroll.scrollInto(items[1]);
}
}
Dependency Injection of configuration settings
Some config settings can be set via DI, so you can set them globally instead of on each instance of virtual-scroll.
Always be sure to send an immutable copy of items to virtual scroll to avoid unintended behavior. You need to be careful when doing non-immutable operations such as sorting:
The initial SSR render isn't a fully functioning site, it's essentially an HTML "screenshot" (HTML/CSS, but no JS). However, it immediately swaps out your "screenshot" with the real site as soon as the full app has downloaded in the background. The intent of SSR is to give a correct visual very quickly, because a full angular app could take a long time to download. This makes the user think your site is fast, because hopefully they won't click on anything that requires JS before the fully-functioning site has finished loading in the background. Also, it allows screen scrapers without javascript to work correctly (example: Facebook posts/etc).
virtual-scroll relies on javascript APIs to measure the size of child elements and the scrollable area of their parent. These APIs do not work in SSR because the HTML/CSS "screenshot" is generated on the server via Node, it doesn't execute/render the site as a browser would. This means virtual-scroll will see all measurements as undefined and the "screenshot" will not be generated correctly. Most likely, only 1 child element will appear in your virtual-scroll. This "screenshot" can be fixed with polyfills. However, when the browser renders the "screenshot", the scrolling behaviour still won't work until the full app has loaded.
SSR is an advanced (and complex) topic that can't be fully addressed here. Please research this on your own. However, here are some suggestions:
Determine a default screen size you want to use for the SSR "screenshot" calculations (suggestion: 1920x1080). This won't be accurate for all users, but will hopefully be close enough. Once the full Angular app loads in the background, their real device screensize will take over.
Run your app in a real browser without SSR and determine the average width/height of the child elements inside virtual-scroll as well as the width/height of the virtual-scroll (or [parentScroll] element). Use these values to set the [ssrChildWidth]/[ssrChildHeight]/[ssrViewportWidth]/[ssrViewportHeight] properties.
The MIT License (MIT)
Copyright (c) 2016 Rinto Jose (rintoj)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
v0.4.15
New properties to support AngularUniversal/ServerSideRendering (SSR)
Angular module for virtual -infinite- list. Supports horizontal/vertical, variable heights, & multi-column
The npm package ngx-virtual-scroller receives a total of 9,263 weekly downloads. As such, ngx-virtual-scroller popularity was classified as popular.
We found that ngx-virtual-scroller demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.It has 1 open source maintainer collaborating on the project.
Package last updated on 24 Sep 2018
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.
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.