X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fshared%2Fvideo%2Fabstract-video-list.ts;h=b8fd7f8eb21b85b289881c48bda96eb891b30aab;hb=f5b0af50c85e2f8b6b2b054ac1f47123cacbe08d;hp=d8a4b03afa804487d6f7ce621d51785e119458ec;hpb=136cce4d6744bef7fd316b929157c1e4e3984fe3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/shared/video/abstract-video-list.ts b/client/src/app/shared/video/abstract-video-list.ts index d8a4b03af..b8fd7f8eb 100644 --- a/client/src/app/shared/video/abstract-video-list.ts +++ b/client/src/app/shared/video/abstract-video-list.ts @@ -1,17 +1,17 @@ +import { debounceTime } from 'rxjs/operators' import { ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core' import { ActivatedRoute, Router } from '@angular/router' import { Location } from '@angular/common' -import { isInMobileView } from '@app/shared/misc/utils' import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.directive' import { NotificationsService } from 'angular2-notifications' -import 'rxjs/add/operator/debounceTime' -import { Observable } from 'rxjs/Observable' -import { fromEvent } from 'rxjs/observable/fromEvent' -import { Subscription } from 'rxjs/Subscription' +import { fromEvent, Observable, Subscription } from 'rxjs' import { AuthService } from '../../core/auth' import { ComponentPagination } from '../rest/component-pagination.model' import { VideoSortField } from './sort-field.type' import { Video } from './video.model' +import { I18n } from '@ngx-translate/i18n-polyfill' +import { ScreenService } from '@app/shared/misc/screen.service' +import { OwnerDisplayType } from '@app/shared/video/video-miniature.component' export abstract class AbstractVideoList implements OnInit, OnDestroy { private static LINES_PER_PAGE = 4 @@ -25,6 +25,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { totalItems: null } sort: VideoSortField = '-publishedAt' + categoryOneOf?: number defaultSort: VideoSortField = '-publishedAt' syndicationItems = [] @@ -34,6 +35,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { videoWidth: number videoHeight: number videoPages: Video[][] = [] + ownerDisplayType: OwnerDisplayType = 'account' protected baseVideoWidth = 215 protected baseVideoHeight = 230 @@ -42,11 +44,14 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { protected abstract authService: AuthService protected abstract router: Router protected abstract route: ActivatedRoute + protected abstract screenService: ScreenService + protected abstract i18n: I18n protected abstract location: Location protected abstract currentRoute: string abstract titlePage: string protected loadedPages: { [ id: number ]: Video[] } = {} + protected loadingPage: { [ id: number ]: boolean } = {} protected otherRouteParams = {} private resizeSubscription: Subscription @@ -64,7 +69,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { this.loadRouteParams(routeParams) this.resizeSubscription = fromEvent(window, 'resize') - .debounceTime(500) + .pipe(debounceTime(500)) .subscribe(() => this.calcPageSizes()) this.calcPageSizes() @@ -97,11 +102,15 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { loadMoreVideos (page: number) { if (this.loadedPages[page] !== undefined) return + if (this.loadingPage[page] === true) return + this.loadingPage[page] = true const observable = this.getVideosObservable(page) observable.subscribe( ({ videos, totalVideos }) => { + this.loadingPage[page] = false + // Paging is too high, return to the first one if (this.pagination.currentPage > 1 && totalVideos <= ((this.pagination.currentPage - 1) * this.pagination.itemsPerPage)) { this.pagination.currentPage = 1 @@ -119,7 +128,10 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { setTimeout(() => this.infiniteScroller.initialize(), 500) } }, - error => this.notificationsService.error('Error', error.message) + error => { + this.loadingPage[page] = false + this.notificationsService.error(this.i18n('Error'), error.message) + } ) } @@ -158,7 +170,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { protected loadRouteParams (routeParams: { [ key: string ]: any }) { this.sort = routeParams['sort'] as VideoSortField || this.defaultSort - + this.categoryOneOf = routeParams['categoryOneOf'] if (routeParams['page'] !== undefined) { this.pagination.currentPage = parseInt(routeParams['page'], 10) } else { @@ -191,7 +203,7 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy { } private calcPageSizes () { - if (isInMobileView() || this.baseVideoWidth === -1) { + if (this.screenService.isInMobileView() || this.baseVideoWidth === -1) { this.pagination.itemsPerPage = 5 // Video takes all the width