PeerTube/client/src/app/shared/video/infinite-scroller.directive.ts

87 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-02-13 14:11:05 +01:00
import { Directive, EventEmitter, Input, OnInit, Output } from '@angular/core'
import 'rxjs/add/operator/debounceTime'
2018-02-13 14:11:05 +01:00
import 'rxjs/add/operator/distinct'
import 'rxjs/add/operator/distinctUntilChanged'
import 'rxjs/add/operator/filter'
import 'rxjs/add/operator/map'
2018-02-13 14:11:05 +01:00
import 'rxjs/add/operator/startWith'
2018-02-22 16:41:02 +01:00
import 'rxjs/add/operator/throttleTime'
2018-02-13 14:11:05 +01:00
import { fromEvent } from 'rxjs/observable/fromEvent'
2018-03-08 10:46:12 +01:00
import 'rxjs/add/operator/share'
2018-02-13 14:11:05 +01:00
@Directive({
selector: '[myInfiniteScroller]'
})
export class InfiniteScrollerDirective implements OnInit {
private static PAGE_VIEW_TOP_MARGIN = 500
@Input() containerHeight: number
@Input() pageHeight: number
@Input() percentLimit = 70
@Input() autoLoading = false
@Output() nearOfBottom = new EventEmitter<void>()
@Output() nearOfTop = new EventEmitter<void>()
@Output() pageChanged = new EventEmitter<number>()
private decimalLimit = 0
private lastCurrentBottom = -1
private lastCurrentTop = 0
constructor () {
this.decimalLimit = this.percentLimit / 100
}
ngOnInit () {
if (this.autoLoading === true) return this.initialize()
}
initialize () {
2018-03-08 10:46:12 +01:00
// Emit the last value
const throttleOptions = { leading: false, trailing: true }
2018-02-13 14:11:05 +01:00
const scrollObservable = fromEvent(window, 'scroll')
.startWith(true)
2018-03-08 10:46:12 +01:00
.throttleTime(200, undefined, throttleOptions)
2018-02-13 14:11:05 +01:00
.map(() => ({ current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight }))
2018-03-08 10:46:12 +01:00
.share()
2018-02-13 14:11:05 +01:00
// Scroll Down
scrollObservable
// Check we scroll down
.filter(({ current }) => {
const res = this.lastCurrentBottom < current
this.lastCurrentBottom = current
return res
})
.filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit)
.subscribe(() => this.nearOfBottom.emit())
// Scroll up
scrollObservable
// Check we scroll up
.filter(({ current }) => {
const res = this.lastCurrentTop > current
this.lastCurrentTop = current
return res
})
.filter(({ current, maximumScroll }) => {
return current !== 0 && (1 - (current / maximumScroll)) > this.decimalLimit
})
.subscribe(() => this.nearOfTop.emit())
// Page change
scrollObservable
.distinct()
2018-03-08 10:46:12 +01:00
.map(({ current }) => this.calculateCurrentPage(current))
2018-02-13 14:11:05 +01:00
.distinctUntilChanged()
.subscribe(res => this.pageChanged.emit(res))
}
2018-03-08 10:46:12 +01:00
private calculateCurrentPage (current: number) {
return Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight))
}
2018-02-13 14:11:05 +01:00
}