X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Finfinite-scroller.directive.ts;h=f09c3d1fc62742244f934b3383d3a67a85a93e3c;hb=338eb9d33af690db716805fd2277bf68f473b58f;hp=186597a3a04d9bd911a8e113a191b30704f0658b;hpb=e2f01c47e08d26a30ad47068d195b3d21d0df8a1;p=github%2FChocobozzz%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..f09c3d1fc 100644 --- a/client/src/app/shared/video/infinite-scroller.directive.ts +++ b/client/src/app/shared/video/infinite-scroller.directive.ts @@ -1,55 +1,61 @@ -import { distinct, distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' -import { Directive, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' -import { fromEvent, Subscription } from 'rxjs' +import { distinctUntilChanged, filter, map, share, startWith, throttleTime } from 'rxjs/operators' +import { AfterContentChecked, Directive, ElementRef, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core' +import { fromEvent, Observable, Subscription } from 'rxjs' @Directive({ selector: '[myInfiniteScroller]' }) -export class InfiniteScrollerDirective implements OnInit, OnDestroy { - @Input() containerHeight: number - @Input() pageHeight: number - @Input() firstLoadedPage = 1 +export class InfiniteScrollerDirective implements OnInit, OnDestroy, AfterContentChecked { @Input() percentLimit = 70 @Input() autoInit = false - @Input() container = document.body + @Input() onItself = false + @Input() dataObservable: Observable @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 () { + private checkScroll = false + + constructor (private el: ElementRef) { this.decimalLimit = this.percentLimit / 100 } + ngAfterContentChecked () { + if (this.checkScroll) { + this.checkScroll = false + + console.log('Checking if the initial state has a scroll.') + + if (this.hasScroll() === false) this.nearOfBottom.emit() + } + } + ngOnInit () { if (this.autoInit === true) return this.initialize() } 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 + this.container = this.onItself + ? this.el.nativeElement + : document.documentElement // Emit the last value const throttleOptions = { leading: true, trailing: true } - const scrollObservable = fromEvent(window, 'scroll') + const scrollableElement = this.onItself ? this.container : window + const scrollObservable = fromEvent(scrollableElement, 'scroll') .pipe( - startWith(null), + startWith(true), 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() ) @@ -57,49 +63,34 @@ export class InfiniteScrollerDirective implements OnInit, OnDestroy { // Scroll Down 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) + filter(({ current }) => this.isScrollingDown(current)), + filter(({ current, maximumScroll }) => (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()) + if (this.dataObservable) { + this.dataObservable + .pipe(filter(d => d.length !== 0)) + .subscribe(() => this.checkScroll = true) + } + } - // Page change - this.pageChangeSub = scrollObservable - .pipe( - distinct(), - map(({ current }) => this.calculateCurrentPage(current)), - distinctUntilChanged() - ) - .subscribe(res => this.pageChanged.emit(res)) + private getScrollInfo () { + return { current: this.container.scrollTop, maximumScroll: this.getMaximumScroll() } } - private calculateCurrentPage (current: number) { - const scrollY = current + this.middleScreen + private getMaximumScroll () { + return this.container.scrollHeight - window.innerHeight + } + + private hasScroll () { + return this.getMaximumScroll() > 0 + } - const page = Math.max(1, Math.ceil(scrollY / this.pageHeight)) + private isScrollingDown (current: number) { + const result = this.lastCurrentBottom < current - // Offset page - return page + (this.firstLoadedPage - 1) + this.lastCurrentBottom = current + return result } }