1
0
Fork 0

Fix infinite scroll

This commit is contained in:
Chocobozzz 2018-03-08 10:46:12 +01:00
parent 2b3b76abb0
commit 6a6d92b1ec
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 11 additions and 5 deletions

View File

@ -125,7 +125,7 @@ export abstract class AbstractVideoList implements OnInit {
if (!this.pagination.totalItems) return true
const maxPage = this.pagination.totalItems / this.pagination.itemsPerPage
return maxPage > this.pagination.currentPage
return maxPage > this.maxPageLoaded()
}
protected previousPage () {

View File

@ -7,6 +7,7 @@ import 'rxjs/add/operator/map'
import 'rxjs/add/operator/startWith'
import 'rxjs/add/operator/throttleTime'
import { fromEvent } from 'rxjs/observable/fromEvent'
import 'rxjs/add/operator/share'
@Directive({
selector: '[myInfiniteScroller]'
@ -36,10 +37,14 @@ export class InfiniteScrollerDirective implements OnInit {
}
initialize () {
// Emit the last value
const throttleOptions = { leading: false, trailing: true }
const scrollObservable = fromEvent(window, 'scroll')
.startWith(true)
.throttleTime(200)
.throttleTime(200, undefined, throttleOptions)
.map(() => ({ current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight }))
.share()
// Scroll Down
scrollObservable
@ -51,7 +56,6 @@ export class InfiniteScrollerDirective implements OnInit {
return res
})
.filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit)
.distinct()
.subscribe(() => this.nearOfBottom.emit())
// Scroll up
@ -66,15 +70,17 @@ export class InfiniteScrollerDirective implements OnInit {
.filter(({ current, maximumScroll }) => {
return current !== 0 && (1 - (current / maximumScroll)) > this.decimalLimit
})
.distinct()
.subscribe(() => this.nearOfTop.emit())
// Page change
scrollObservable
.distinct()
.map(({ current }) => Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight)))
.map(({ current }) => this.calculateCurrentPage(current))
.distinctUntilChanged()
.subscribe(res => this.pageChanged.emit(res))
}
private calculateCurrentPage (current: number) {
return Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight))
}
}