projects/ngui-common/src/lib/ngui-list/src/ngui-inview-page.component.ts
A block of component that listens to inView and outView events, so that it empties contents when out of view after backup items and restores the contents when in view
selector | ngui-inview-page |
styles |
:host {display: block}
|
template |
Properties |
Methods |
Inputs |
constructor(element: ElementRef, renderer: Renderer2, cdRef: ChangeDetectorRef)
|
||||||||||||
Parameters :
|
items | |
Type : Array<any>
|
|
List of elements that are used to render this element |
observerOptions | |
Type : IntersectionObserverInit
|
|
Default value : {threshold: [0, .01]}
|
|
IntersectionObserver options |
emptyItems |
emptyItems()
|
Empty items when not in viewport, so that elements are not rendered
Returns :
void
|
ngOnDestroy |
ngOnDestroy()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
restoreItems |
restoreItems()
|
Restore items when in viewport, so that elements are rendered
Returns :
void
|
setItems | ||||||
setItems(items: Array
|
||||||
Parameters :
Returns :
void
|
contentsEl |
Type : HTMLElement
|
The first element of this component. The height of it remains the same even when items get empty out. |
destroyed |
Type : boolean
|
itemsBackup |
Type : Array<any>
|
Default value : []
|
The copy of items. This is set when this element is out of viewport |
outView |
Default value : false
|
Indicates that the page of out of viewport |
template |
Type : TemplateRef<any>
|
Decorators :
@ContentChild(TemplateRef, {static: true})
|
Allow users to change the contents |