Skip to content

Infinite/virtual scroll for Angular

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
license-banner.txt
Notifications You must be signed in to change notification settings

markdBC/ngx-ui-scroll

 
 

Repository files navigation

Build Status npm version

NgxUiScroll

Unlimited bidirectional scrolling over limited viewport. A directive for Angular framework. Built with angular-library-starter. Inspired by angular-ui-scroll (AngularJS, since 2013). Demo is available at dhilt.github.io/ngx-ui-scroll.

Motivation

Scrolling large date sets may cause performance issues. Many DOM elements, many data-bindings, many event listeners... The common way to improve this case is to render only a small portion of the data set visible to a user. Other data set elements that are not visible to a user are virtualized with upward and downward empty padding elements which should give us a consistent viewport with consistent scrollbar parameters.

The *uiScroll is structural directive that works like *ngFor and renders a templated element once per item from a collection. By requesting the external Datasource (the implementation of which is a developer responsibility) the *uiScroll directive fetches necessary portion of the data set and renders corresponded elements until the visible part of the viewport is filled out. It starts to retrieve new data to render new elements again if a user scrolls to the edge of visible element list. It dynamically destroys elements as they become invisible and recreates them if they become visible again.

Features

  • unlimited bidirectional virtual scroll
  • lots of virtualization settings
  • super easy templating
  • infinite mode, demo
  • horizontal mode, demo
  • entire window scrollable, demo
  • items with non-constant heights, demo
  • API Adapter object to manipulate and assess the scroller, demos

Getting

The *uiScroll directive is a part of UiScrollModule which is available via npm –

npm install ngx-ui-scroll

The UiScrollModule has to be imported in the App/feature module where it is going to be used.

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { UiScrollModule } from 'ngx-ui-scroll';
import { AppComponent } from './app.component';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    UiScrollModule
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

Usage

Basic usage template may look like

<div class="viewport">
  <div *uiScroll="let item of datasource">
    <b>{{item.text}}</b>
  </div>
</div>

where the viewport is a scrollable area of finite height:

.viewport {
    height: 300px;
    overflow-y: auto;
    overflow-anchor: none;
}

If the viewport's height is not constrained, it will pull the entire content of the datasource and no scrollbar will appear. Also, here is a few words on the scroll anchoring issue.

*uiScroll acts like *ngFor, but the datasource is an object of special type (IDatasource). It implements method get to be used by the *uiScroll directive to access the data by index and count parameters. The directive calls Datasource.get method each time a user scrolls to the edge of visible element list. That's the API provided by the *uiScroll.

import { IDatasource } from 'ngx-ui-scroll';

export class AppComponent {
  datasource: IDatasource = {
    get: (index, count, success) => {
      const data = [];
      for (let i = index; i <= index + count - 1; i++) {
        data.push({ text: 'item #' + i });
      }
      success(data);
    }
  };
}

Datasource.get method must provide an array of count data-items started from index position. If there are no items within given range [index; index + count - 1], an empty array has to be passed. Empty result (or result which length is less than count) is being treated as the edge of the dataset (eof/bof), and no further requests for preceding/tailing items will be issued.

Datasource.get has 3 signatures: callback based, Promise based and Observable based. So, if we want some remote API to be a source of our data, basically it may look like

  datasource: IDatasource = {
    get: (index, count) =>
      this.http.get(`${myApiUrl}?index=${index}&count=${count}`)
  };

More details could be found on the Datasource demo page.

Settings

Datasource implementation along with get method property may include settings object property:

  datasource: IDatasource = {
    get: ...,
    settings: {
      minIndex: 0,
      startIndex: 0,
      ...
    }
  };

Settings are being applied during the uiScroll initialization and have an impact on how the uiScroll behaves. Below is the list of available settings with descriptions, defaults, types and demos.

Name Type Default Description
bufferSize number,
integer
5 Fixes minimal size of the pack of the datasource items to be requested per single Datasource.get call. Can't be less than 1.
padding number,
float
0.5 Determines viewport outlets relative to the viewport's size that need to be filled. For example, 0.5 means that we'll have as many items at a moment as needed to fill out 100% of the visible part of the viewport, + 50% of the viewport size in backward direction and + 50% in forward direction. The value can't be less than 0.01.
startIndex number,
integer
1 Specifies item index to be requested/rendered first. Can be any, but real datasource boundaries should be taken into account.
minIndex number,
integer
-Infinity Fixes absolute minimal index of the data set. The datasource left boundary.
maxIndex number,
integer
+Infinity Fixes absolute maximal index of the data set. The datasource right boundary.
infinite boolean false Allows to run "infinite" mode, when items rendered once are never removed.
horizontal boolean false Allows to run "horizontal" mode, when the viewport's orientation is horizontal.
windowViewport boolean false Allows to run "entire window scrollable" mode, when the entire window becomes the scrollable viewport.

Adapter API

The uiScroll has API to assess its parameters and provide some manipulations run-time. This API is available via special Adapter object. The datasource needs to be instantiated via operator "new" for the Adapter object to be added to it:

import { Datasource } from 'ngx-ui-scroll';
...
  datasource = new Datasource({
    get: ... ,
    settings: { ... }
  });

Then this.datasource.adapter.version, this.datasource.adapter.reload() and other Adapter expressions become legal. Below is the list of read-only properties of the Adapter API.

Name Type Description
version string Current version of ngx-ui-scroll library
isLoading boolean Indicates whether the uiScroll is working ot not.
isLoading$ Subject
<boolean>
An Observable version of "isLoading" property.
itemsCount number A number of items that are rendered in the viewport at a moment.
bof boolean Indicates whether the beginning of the dataset is reached or not.
bof$ Subject
<boolean>
An Observable version of "bof" property.
eof boolean Indicates whether the end of the dataset is reached or not.
eof$ Subject
<boolean>
An Observable version of "eof" property.
firstVisible ItemAdapter {
  $index: number;
  data: any;
  element?: HTMLElement;
}
Object of ItemAdapter type containing information about first visible item, where "$index" corresponds to the datasource item index value, "data" is exactly the item's content, "element" is a link to DOM element which is relevant to the item.
firstVisible$ BehaviorSubject
<ItemAdapter>
An observable version of "firstVisible" property.
lastVisible ItemAdapter {
  $index: number;
  data: any;
  element?: HTMLElement;
}
Object of ItemAdapter type containing information about last visible item.
lastVisible$ BehaviorSubject
<ItemAdapter>
An observable version of "lastVisible" property.

Below is the list of invocable methods of the Adapter API.

Name Parameters Description
reload (startIndex?: number) Resets the items buffer, resets the viewport params and starts fetching items from "startIndex" (if set).
append (items: any | any[], eof?: boolean) Adds items or single item to the end of the uiScroll dataset. If eof parameter is not set, items will be added and rendered immediately, they will be placed right after the last item in the uiScroll buffer. If eof parameter is set to true, items will be added and rendered only if the end of the dataset is reached; otherwise, these items will be virtualized.
prepend (items: any | any[], bof?: boolean) Adds items or single item to the beginning of the uiScroll dataset. If bof parameter is not set, items will be added and rendered immediately, they will be placed right before the first item in the uiScroll buffer. If bof parameter is set to true, items will be added and rendered only if the beginning of the dataset is reached; otherwise, these items will be virtualized.
check Checks if any of current items changed it's size and runs a procedure to provide internal consistency and new items fetching if needed.
remove (predicate: (item: ItemAdapter) => boolean) Removes items from current buffer. Predicate is a function to be applied to every item presently in the buffer. Predicate must return boolean value. If predicate's return value is true, the item will be removed. Note! Current implementation allows to remove only a continuous series of items per call. If you want to remove, say, 5 and 7 items, you should call the remove method twice. Removing a series of items from 5 to 7 could be done in a single call.
clip (options?: {
  forwardOnly?: boolean,
  backwardOnly?: boolean
})
Removes out-of-viewport items on demand. Passing an options object, the direction in which invisible items will be clipped could be specified. If no options is passed, clipping will affect both forward and backward directions.

Along with the documented API there are some undocumented features that can be treated as experimental. They are not tested enough and might change over time. Some of them can be found on the experimental tab of the demo app.

Development

There are some npm scripts available from package.json:

  • npm start to run demo App on port 4200
  • npm test to run Karma tests
  • npm run build to build the ngx-ui-scroll module into the ./dist folder
  • npm run pack:install to build tar-gzipped version of package and install it locally into ./node_modules
  • npm run build-app to build demo App into the ./dist-app folder

Along with settings object the datasource implementation may include also devSettings object:

import { Datasource } from 'ngx-ui-scroll';
...
  datasource = new Datasource({
    get: ... ,
    settings: { ... },
    devSettings: {
      debug: true,
      immediateLog: true,
      ...
    }
  });

Like the experimental features, the development settings are not documented. Information about them can be obtained directly from the source code. The uiScroll has "debug" mode with powerful logging which can be enabled via devSettings.debug = true. Also, with devSettings.immediateLog = false the console logging will be postponed until the undocumented Adapter method showLog is called (datasource.adapter.showLog()). This case could be important from the performance view: there might be too many logs and pushing them to the console output immediately could slow down the App.

At last, any participation is welcome, so feel free to submit new Issues and open Pull Requests.


2020 © dhilt, Hill30 Inc

About

Infinite/virtual scroll for Angular

Resources

License

MIT, Unknown licenses found

Licenses found

MIT
LICENSE
Unknown
license-banner.txt

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 96.0%
  • JavaScript 3.8%
  • CSS 0.2%