File

projects/ngui-common/src/lib/ngui-list/src/ngui-virtual-list.component.ts

Description

Virtual List

The <ngui-inview ..> inserts into <div #pages> when it is in viewport When it's inserted, it will be pushed down, which makes it out of viewport. User scrolls down to see the bottom of the list, then it will insert another <ngui-inview-page> again.

listens to (nguiInview) and (nguiOutview) events, when is out of view port, it empties out the contents. and it restores back the contents when it is in viewport again.

Example

<ngui-virtual-list (bottomInview)="loadItems($event)">
<ng-template let-items="items">
<div *ngIf="!items">Loading</div>
<li *ngFor="let num of items; trackBy: num">row number: {{ num }}</li>
</ng-template>
</ngui-virtual-list>

Implements

AfterViewInit

Metadata

Index

Properties
Methods
Outputs

Constructor

constructor(renderer: Renderer2, element: ElementRef, dynamicComponentService: DynamicComponentService, cdr: ChangeDetectorRef)
Parameters :
Name Type Optional
renderer Renderer2 No
element ElementRef No
dynamicComponentService DynamicComponentService No
cdr ChangeDetectorRef No

Outputs

bottomInview
Type : EventEmitter<any>

Event fired when bottom of the virtual list is in view The handler of this event must call $event.addItems(items: Array<any>) to fill contents If not, only the first page is loaded, and rest of the pages won't be loaded;

Example

<ngui-virtual-list (bottomInview)="loadItems($event)">
<ng-template let-items="items">
<div *ngIf="items else noItems">
<li *ngFor="let num of items; trackBy: num">row number: {{ num }}</li>
</div>
<ng-template #noItems>Loading</ng-template>
</ng-template>
</ngui-virtual-list>
escaped
Type : EventEmitter<any>

Fired when ESC key is pressed from <ngui-list-item>

selected
Type : EventEmitter<any>

Fired when child <ngui-list-item> is selected

Methods

addAnInviewPageToPages
addAnInviewPageToPages()

When the bottom is inview port, this function is called It will insert a dynamicall created NguiInviewPageComponent with the given template. It will also fires (bottomInview) event, so that user can fill up items for the page.

Returns : void
addList
addList(items: Array)
Parameters :
Name Type Optional
items Array<any> No
Returns : void
ngAfterViewInit
ngAfterViewInit()

Check if necessary input and output is provided

Returns : void

Properties

_focused
Default value : false
Public cdr
Type : ChangeDetectorRef
Public dynamicComponentService
Type : DynamicComponentService
Public element
Type : ElementRef
inviewPage
Type : ComponentRef<NguiInviewPageComponent>

The last NguiInviewPageComponent being inserted

inviewPages
Type : Array<ComponentRef<NguiInviewPageComponent>>
Default value : []
isListLoading
Type : boolean

Indicates if a page is still loading

pagesRef
Type : ViewContainerRef
Decorators :
@ViewChild('pages', {read: ViewContainerRef})

the container NguiInviewPage will be inserted

Public renderer
Type : Renderer2
template
Type : TemplateRef<any>
Decorators :
@ContentChild(TemplateRef)

Template of NguiInviewPage. Allow users to define their own template

import {
  AfterViewInit,
  ChangeDetectorRef,
  Component,
  ComponentRef,
  ContentChild,
  ElementRef,
  EventEmitter,
  Output,
  Renderer2,
  TemplateRef,
  ViewChild,
  ViewContainerRef
} from '@angular/core';

import { DynamicComponentService } from '../../ngui-utils/src/dynamic-component.service';
import { NguiInviewPageComponent } from './ngui-inview-page.component';

/**
 * Virtual List
 *
 * The `<ngui-inview ..>` inserts <ngui-inview-page> into
 * `<div #pages>` when it is in viewport
 * When it's inserted, it will be pushed down, which makes it out of viewport.
 * User scrolls down to see the bottom of the list,
 * then it will insert another `<ngui-inview-page>` again.
 *
 * <ngui-inview-page> listens to (nguiInview) and (nguiOutview) events,
 * when <ngui-inview-page> is out of view port, it empties out the contents.
 * and it restores back the contents when it is in viewport again.

 ### Example
 ```html
 <ngui-virtual-list (bottomInview)="loadItems($event)">
   <ng-template let-items="items">
     <div *ngIf="!items">Loading</div>
     <li *ngFor="let num of items; trackBy: num">row number: {{ num }}</li>
   </ng-template>
 </ngui-virtual-list>
 ```
 */
@Component({
  selector: 'ngui-virtual-list',
  template: `
    <div class="ngui-virtual-list"
      (focus)="_focused = true"
      (click)="_focused = true">
      <!-- hold multiple <ngui-inview-page> -->
      <div #pages></div>
      <!-- insert <ngui-inview-page> into #pages -->
    </div>
    <ngui-inview (inview)="addAnInviewPageToPages()"></ngui-inview>
  `,
  styles: [`
    :host {display: block}
  `]
})
export class NguiVirtualListComponent implements AfterViewInit {

  /** the container NguiInviewPage will be inserted */
  @ViewChild('pages', { read: ViewContainerRef }) pagesRef: ViewContainerRef;
  /** Template of NguiInviewPage. Allow users to define their own template  */
  @ContentChild(TemplateRef) template: TemplateRef<any>;
  /** Fired when child `<ngui-list-item>` is selected */
  @Output() selected: EventEmitter<any> = new EventEmitter();
  /** Fired when `ESC` key is pressed from `<ngui-list-item>` */
  @Output() escaped: EventEmitter<any> = new EventEmitter();

  /**
   * Event fired when bottom of the virtual list is in view
   * The handler of this event must call `$event.addItems(items: Array<any>)` to fill contents
   * If not, only the first page is loaded, and rest of the pages won't be loaded;

   ### Example
   ```html
   <ngui-virtual-list (bottomInview)="loadItems($event)">
     <ng-template let-items="items">
       <div *ngIf="items else noItems">
          <li *ngFor="let num of items; trackBy: num">row number: {{ num }}</li>
       </div>
       <ng-template #noItems>Loading</ng-template>
     </ng-template>
   </ngui-virtual-list>
   ```
   */
  @Output() bottomInview: EventEmitter<any> = new EventEmitter();

  /** The last NguiInviewPageComponent being inserted */
  inviewPage: ComponentRef<NguiInviewPageComponent>;
  _focused = false;
  /** Indicates if a page is still loading */
  isListLoading: boolean;
  inviewPages: Array<ComponentRef<NguiInviewPageComponent>> = [];

  constructor(
    public renderer: Renderer2,
    public element: ElementRef,
    public dynamicComponentService: DynamicComponentService,
    public cdr: ChangeDetectorRef
  ) {}

  /** Check if necessary input and output is provided */
  ngAfterViewInit(): void {
    if (!this.template || !this.bottomInview.observers.length) {
      console.error('<ngui-virtual-list> requires [template] and {bottomInview)');
    }
  }

  /**
   * When the bottom is inview port, this function is called
   * It will insert a dynamicall created NguiInviewPageComponent with the given template.
   * It will also fires (bottomInview) event, so that user can fill up items for the page.
   */
  addAnInviewPageToPages(): void {
    if (!this.isListLoading) {
      this.isListLoading = true;

      this.inviewPage =
        this.dynamicComponentService.createComponent(NguiInviewPageComponent, this.pagesRef);
      this.dynamicComponentService.insertComponent(this.inviewPage);

      this.inviewPage.instance.template = this.template;
      this.inviewPages.push(this.inviewPage);

      this.bottomInview.emit(this); // fire event, so that user can load items
    }
  }

  // set items of NguiInviewPageComponent
  addList(items: Array<any>): void {
    this.isListLoading = false;
    this.inviewPage.instance.setItems(items);
  }

}

    :host {display: block}
  
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""