X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Finfinite-scroller.directive.ts;h=5f8a1dd6e49606ec65294f8b4ad9b22a02db8a0a;hb=0f4905e120e66c5227ca3c57074e3e8554424621;hp=16e901c34f1208d7d978ffd9efbf7f6129547e4d;hpb=a9ca764e7e23c0c14949c308a9ce54d4fdb9a361;p=oweals%2Fpeertube.git diff --git a/client/src/app/shared/video/infinite-scroller.directive.ts b/client/src/app/shared/video/infinite-scroller.directive.ts index 16e901c34..5f8a1dd6e 100644 --- a/client/src/app/shared/video/infinite-scroller.directive.ts +++ b/client/src/app/shared/video/infinite-scroller.directive.ts @@ -1,80 +1,71 @@ -import { Directive, EventEmitter, Input, OnInit, Output } from '@angular/core' -import 'rxjs/add/operator/debounceTime' -import 'rxjs/add/operator/distinct' -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' +import { distinct, distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' +import { Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' +import { fromEvent, Subscription } from 'rxjs' @Directive({ selector: '[myInfiniteScroller]' }) -export class InfiniteScrollerDirective implements OnInit { - private static PAGE_VIEW_TOP_MARGIN = 500 - - @Input() containerHeight: number - @Input() pageHeight: number +export class InfiniteScrollerDirective implements OnInit, OnDestroy { @Input() percentLimit = 70 - @Input() autoLoading = false + @Input() autoInit = false + @Input() onItself = false @Output() nearOfBottom = new EventEmitter() - @Output() nearOfTop = new EventEmitter() - @Output() pageChanged = new EventEmitter() private decimalLimit = 0 private lastCurrentBottom = -1 - private lastCurrentTop = 0 + private scrollDownSub: Subscription + private container: HTMLElement - constructor () { + constructor (private el: ElementRef) { this.decimalLimit = this.percentLimit / 100 } ngOnInit () { - if (this.autoLoading === true) return this.initialize() + if (this.autoInit === true) return this.initialize() + } + + ngOnDestroy () { + if (this.scrollDownSub) this.scrollDownSub.unsubscribe() } initialize () { - const scrollObservable = fromEvent(window, 'scroll') - .startWith(true) - .throttleTime(200) - .map(() => ({ current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight })) + if (this.onItself) { + this.container = this.el.nativeElement + } + + // Emit the last value + const throttleOptions = { leading: true, trailing: true } + + const scrollObservable = fromEvent(this.container || window, 'scroll') + .pipe( + startWith(null), + throttleTime(200, undefined, throttleOptions), + map(() => this.getScrollInfo()), + distinctUntilChanged((o1, o2) => o1.current === o2.current), + share() + ) // Scroll Down - scrollObservable - // Check we scroll down - .filter(({ current }) => { - const res = this.lastCurrentBottom < current + this.scrollDownSub = scrollObservable + .pipe( + // 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) - .distinct() + 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 - }) - .distinct() - .subscribe(() => this.nearOfTop.emit()) + private getScrollInfo () { + if (this.container) { + return { current: this.container.scrollTop, maximumScroll: this.container.scrollHeight } + } - // Page change - scrollObservable - .distinct() - .map(({ current }) => Math.max(1, Math.round((current + InfiniteScrollerDirective.PAGE_VIEW_TOP_MARGIN) / this.pageHeight))) - .distinctUntilChanged() - .subscribe(res => this.pageChanged.emit(res)) + return { current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight } } - }