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 () {
import 'rxjs/add/operator/startWith'
import 'rxjs/add/operator/throttleTime'
import { fromEvent } from 'rxjs/observable/fromEvent'
+import 'rxjs/add/operator/share'
@Directive({
selector: '[myInfiniteScroller]'
}
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
return res
})
.filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit)
- .distinct()
.subscribe(() => this.nearOfBottom.emit())
// Scroll up
.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))
+ }
}