forked from mystiq/hydrogen-web
Remove code from loadList
We don't need this method so best to leave it empty. Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
parent
c0f7f0a8f1
commit
d4e923f9de
1 changed files with 4 additions and 7 deletions
|
@ -168,6 +168,8 @@ export class LazyListView extends ListView {
|
|||
|
||||
mount() {
|
||||
const root = super.mount();
|
||||
this._subscription = this._list.subscribe(this);
|
||||
this._childInstances = [];
|
||||
this._parent = el("div", {className: "LazyListParent"}, root);
|
||||
/*
|
||||
Hooking to scroll events can be expensive.
|
||||
|
@ -181,17 +183,12 @@ export class LazyListView extends ListView {
|
|||
update(attributes) {
|
||||
this._renderRange = null;
|
||||
super.update(attributes);
|
||||
this._childInstances = [];
|
||||
this._initialRender();
|
||||
}
|
||||
|
||||
loadList() {
|
||||
if (!this._list) { return; }
|
||||
this._subscription = this._list.subscribe(this);
|
||||
this._childInstances = [];
|
||||
/*
|
||||
super.loadList() would render the entire list at this point.
|
||||
We instead lazy render a part of the list in _renderIfNeeded
|
||||
*/
|
||||
// We don't render the entire list; so nothing to see here.
|
||||
}
|
||||
|
||||
_removeChild(child) {
|
||||
|
|
Loading…
Reference in a new issue