projects/ngui-common/src/lib/ngui-list/src/ngui-virtual-list.component.ts
Virtual List
The <ngui-inview ..>
inserts <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.
selector | ngui-virtual-list |
styles |
:host {display: block}
|
template |
Properties |
|
Methods |
Outputs |
constructor(renderer: Renderer2, element: ElementRef, dynamicComponentService: DynamicComponentService, cdr: ChangeDetectorRef)
|
|||||||||||||||
Parameters :
|
escaped | |
Type : EventEmitter<any>
|
|
Fired when |
selected | |
Type : EventEmitter<any>
|
|
Fired when child |
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 :
Returns :
void
|
ngAfterViewInit |
ngAfterViewInit()
|
Check if necessary input and output is provided
Returns :
void
|
_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 |