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=186597a3a04d9bd911a8e113a191b30704f0658b;hpb=e2f01c47e08d26a30ad47068d195b3d21d0df8a1;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 186597a3a..5f8a1dd6e 100644 --- a/client/src/app/shared/video/infinite-scroller.directive.ts +++ b/client/src/app/shared/video/infinite-scroller.directive.ts @@ -1,31 +1,23 @@ import { distinct, distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' -import { Directive, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' +import { Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' import { fromEvent, Subscription } from 'rxjs' @Directive({ selector: '[myInfiniteScroller]' }) export class InfiniteScrollerDirective implements OnInit, OnDestroy { - @Input() containerHeight: number - @Input() pageHeight: number - @Input() firstLoadedPage = 1 @Input() percentLimit = 70 @Input() autoInit = false - @Input() container = document.body + @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 scrollUpSub: Subscription - private pageChangeSub: Subscription - private middleScreen: number + private container: HTMLElement - constructor () { + constructor (private el: ElementRef) { this.decimalLimit = this.percentLimit / 100 } @@ -35,21 +27,21 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy { ngOnDestroy () { if (this.scrollDownSub) this.scrollDownSub.unsubscribe() - if (this.scrollUpSub) this.scrollUpSub.unsubscribe() - if (this.pageChangeSub) this.pageChangeSub.unsubscribe() } initialize () { - this.middleScreen = window.innerHeight / 2 + if (this.onItself) { + this.container = this.el.nativeElement + } // Emit the last value const throttleOptions = { leading: true, trailing: true } - const scrollObservable = fromEvent(window, 'scroll') + const scrollObservable = fromEvent(this.container || window, 'scroll') .pipe( startWith(null), throttleTime(200, undefined, throttleOptions), - map(() => ({ current: window.scrollY, maximumScroll: this.container.clientHeight - window.innerHeight })), + map(() => this.getScrollInfo()), distinctUntilChanged((o1, o2) => o1.current === o2.current), share() ) @@ -67,39 +59,13 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy { filter(({ current, maximumScroll }) => maximumScroll <= 0 || (current / maximumScroll) > this.decimalLimit) ) .subscribe(() => this.nearOfBottom.emit()) - - // Scroll up - this.scrollUpSub = scrollObservable - .pipe( - // 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 - this.pageChangeSub = scrollObservable - .pipe( - distinct(), - map(({ current }) => this.calculateCurrentPage(current)), - distinctUntilChanged() - ) - .subscribe(res => this.pageChanged.emit(res)) } - private calculateCurrentPage (current: number) { - const scrollY = current + this.middleScreen - - const page = Math.max(1, Math.ceil(scrollY / this.pageHeight)) + private getScrollInfo () { + if (this.container) { + return { current: this.container.scrollTop, maximumScroll: this.container.scrollHeight } + } - // Offset page - return page + (this.firstLoadedPage - 1) + return { current: window.scrollY, maximumScroll: document.body.clientHeight - window.innerHeight } } }