Throttle infinite scroller
This commit is contained in:
parent
1f30a1853e
commit
a9ca764e7e
2 changed files with 14 additions and 11 deletions
|
@ -59,14 +59,6 @@ function immutableAssign <A, B> (target: A, source: B) {
|
|||
return Object.assign({}, target, source)
|
||||
}
|
||||
|
||||
function isInSmallView () {
|
||||
return window.innerWidth < 600
|
||||
}
|
||||
|
||||
function isInMobileView () {
|
||||
return window.innerWidth < 500
|
||||
}
|
||||
|
||||
// Thanks: https://gist.github.com/ghinda/8442a57f22099bdb2e34
|
||||
function objectToFormData (obj: any, form?: FormData, namespace?: string) {
|
||||
let fd = form || new FormData()
|
||||
|
@ -94,6 +86,18 @@ function lineFeedToHtml (obj: object, keyToNormalize: string) {
|
|||
})
|
||||
}
|
||||
|
||||
// Try to cache a little bit window.innerWidth
|
||||
let windowInnerWidth = window.innerWidth
|
||||
setInterval(() => windowInnerWidth = window.innerWidth, 500)
|
||||
|
||||
function isInSmallView () {
|
||||
return windowInnerWidth < 600
|
||||
}
|
||||
|
||||
function isInMobileView () {
|
||||
return windowInnerWidth < 500
|
||||
}
|
||||
|
||||
export {
|
||||
viewportHeight,
|
||||
getParameterByName,
|
||||
|
|
|
@ -5,6 +5,7 @@ import 'rxjs/add/operator/distinctUntilChanged'
|
|||
import 'rxjs/add/operator/filter'
|
||||
import 'rxjs/add/operator/map'
|
||||
import 'rxjs/add/operator/startWith'
|
||||
import 'rxjs/add/operator/throttleTime'
|
||||
import { fromEvent } from 'rxjs/observable/fromEvent'
|
||||
|
||||
@Directive({
|
||||
|
@ -37,6 +38,7 @@ export class InfiniteScrollerDirective implements OnInit {
|
|||
initialize () {
|
||||
const scrollObservable = fromEvent(window, 'scroll')
|
||||
.startWith(true)
|
||||
.throttleTime(200)
|
||||
.map(() => ({ current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight }))
|
||||
|
||||
// Scroll Down
|
||||
|
@ -49,7 +51,6 @@ export class InfiniteScrollerDirective implements OnInit {
|
|||
return res
|
||||
})
|
||||
.filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit)
|
||||
.debounceTime(200)
|
||||
.distinct()
|
||||
.subscribe(() => this.nearOfBottom.emit())
|
||||
|
||||
|
@ -65,13 +66,11 @@ export class InfiniteScrollerDirective implements OnInit {
|
|||
.filter(({ current, maximumScroll }) => {
|
||||
return current !== 0 && (1 - (current / maximumScroll)) > this.decimalLimit
|
||||
})
|
||||
.debounceTime(200)
|
||||
.distinct()
|
||||
.subscribe(() => this.nearOfTop.emit())
|
||||
|
||||
// Page change
|
||||
scrollObservable
|
||||
.debounceTime(500)
|
||||
.distinct()
|
||||
.map(({ current }) => Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight)))
|
||||
.distinctUntilChanged()
|
||||
|
|
Loading…
Reference in a new issue