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

72 lines
2.1 KiB
TypeScript
Raw Normal View History

2018-05-15 11:55:51 +02:00
import { distinct, distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators'
2019-03-14 14:05:36 +01:00
import { Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core'
2018-05-15 11:55:51 +02:00
import { fromEvent, Subscription } from 'rxjs'
2018-02-13 14:11:05 +01:00
@Directive({
selector: '[myInfiniteScroller]'
})
2018-03-19 18:00:31 +01:00
export class InfiniteScrollerDirective implements OnInit, OnDestroy {
2018-02-13 14:11:05 +01:00
@Input() percentLimit = 70
@Input() autoInit = false
2019-03-14 14:05:36 +01:00
@Input() onItself = false
2018-02-13 14:11:05 +01:00
@Output() nearOfBottom = new EventEmitter<void>()
private decimalLimit = 0
private lastCurrentBottom = -1
2018-03-19 18:00:31 +01:00
private scrollDownSub: Subscription
2019-03-14 14:05:36 +01:00
private container: HTMLElement
2018-02-13 14:11:05 +01:00
2019-03-14 14:05:36 +01:00
constructor (private el: ElementRef) {
2018-02-13 14:11:05 +01:00
this.decimalLimit = this.percentLimit / 100
}
ngOnInit () {
if (this.autoInit === true) return this.initialize()
2018-02-13 14:11:05 +01:00
}
2018-03-19 18:00:31 +01:00
ngOnDestroy () {
if (this.scrollDownSub) this.scrollDownSub.unsubscribe()
}
2018-02-13 14:11:05 +01:00
initialize () {
2019-03-14 14:05:36 +01:00
if (this.onItself) {
this.container = this.el.nativeElement
}
2018-03-08 10:46:12 +01:00
// Emit the last value
2018-03-09 09:21:34 +01:00
const throttleOptions = { leading: true, trailing: true }
2018-03-08 10:46:12 +01:00
2019-03-14 14:05:36 +01:00
const scrollObservable = fromEvent(this.container || window, 'scroll')
2018-05-15 11:55:51 +02:00
.pipe(
2019-07-25 16:23:44 +02:00
startWith(null as string), // FIXME: typings
2018-05-15 11:55:51 +02:00
throttleTime(200, undefined, throttleOptions),
2019-03-14 14:05:36 +01:00
map(() => this.getScrollInfo()),
2018-05-15 11:55:51 +02:00
distinctUntilChanged((o1, o2) => o1.current === o2.current),
share()
)
2018-02-13 14:11:05 +01:00
// Scroll Down
2018-03-19 18:00:31 +01:00
this.scrollDownSub = scrollObservable
2018-05-15 11:55:51 +02:00
.pipe(
// Check we scroll down
filter(({ current }) => {
const res = this.lastCurrentBottom < current
2018-02-13 14:11:05 +01:00
2018-05-15 11:55:51 +02:00
this.lastCurrentBottom = current
return res
}),
filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit)
)
2018-02-13 14:11:05 +01:00
.subscribe(() => this.nearOfBottom.emit())
2018-03-08 10:46:12 +01:00
}
2019-03-14 14:05:36 +01:00
private getScrollInfo () {
if (this.container) {
return { current: this.container.scrollTop, maximumScroll: this.container.scrollHeight }
}
return { current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight }
}
2018-02-13 14:11:05 +01:00
}