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

106 lines
3.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'
2018-03-19 18:00:31 +01:00
import { Directive, 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() containerHeight: number
@Input() pageHeight: number
2018-09-17 17:36:46 +02:00
@Input() firstLoadedPage = 1
2018-02-13 14:11:05 +01:00
@Input() percentLimit = 70
@Input() autoInit = false
2019-03-13 14:18:58 +01:00
@Input() container = document.body
2018-02-13 14:11:05 +01:00
@Output() nearOfBottom = new EventEmitter<void>()
@Output() nearOfTop = new EventEmitter<void>()
@Output() pageChanged = new EventEmitter<number>()
private decimalLimit = 0
private lastCurrentBottom = -1
private lastCurrentTop = 0
2018-03-19 18:00:31 +01:00
private scrollDownSub: Subscription
private scrollUpSub: Subscription
private pageChangeSub: Subscription
2018-09-17 17:36:46 +02:00
private middleScreen: number
2018-02-13 14:11:05 +01:00
constructor () {
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()
if (this.scrollUpSub) this.scrollUpSub.unsubscribe()
if (this.pageChangeSub) this.pageChangeSub.unsubscribe()
}
2018-02-13 14:11:05 +01:00
initialize () {
2018-09-17 17:36:46 +02:00
this.middleScreen = window.innerHeight / 2
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
2018-02-13 14:11:05 +01:00
const scrollObservable = fromEvent(window, 'scroll')
2018-05-15 11:55:51 +02:00
.pipe(
startWith(null),
throttleTime(200, undefined, throttleOptions),
2019-03-13 14:18:58 +01:00
map(() => ({ current: window.scrollY, maximumScroll: this.container.clientHeight - window.innerHeight })),
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())
// Scroll up
2018-03-19 18:00:31 +01:00
this.scrollUpSub = scrollObservable
2018-05-15 11:55:51 +02:00
.pipe(
// Check we scroll up
filter(({ current }) => {
const res = this.lastCurrentTop > current
2018-02-13 14:11:05 +01:00
2018-05-15 11:55:51 +02:00
this.lastCurrentTop = current
return res
}),
filter(({ current, maximumScroll }) => {
return current !== 0 && (1 - (current / maximumScroll)) > this.decimalLimit
})
)
2018-02-13 14:11:05 +01:00
.subscribe(() => this.nearOfTop.emit())
// Page change
2018-03-19 18:00:31 +01:00
this.pageChangeSub = scrollObservable
2018-05-15 11:55:51 +02:00
.pipe(
distinct(),
map(({ current }) => this.calculateCurrentPage(current)),
distinctUntilChanged()
)
2018-02-13 14:11:05 +01:00
.subscribe(res => this.pageChanged.emit(res))
}
2018-03-08 10:46:12 +01:00
private calculateCurrentPage (current: number) {
2018-09-17 17:36:46 +02:00
const scrollY = current + this.middleScreen
const page = Math.max(1, Math.ceil(scrollY / this.pageHeight))
// Offset page
return page + (this.firstLoadedPage - 1)
2018-03-08 10:46:12 +01:00
}
2018-02-13 14:11:05 +01:00
}