From caae7a0671df4cd513043ccf9c0b8a8d4b58845c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 19 Mar 2018 17:16:34 +0100 Subject: Better handling video resizing --- client/src/app/shared/video/abstract-video-list.ts | 23 +++++++++++++--------- .../videos/+video-watch/video-watch.component.ts | 3 ++- 2 files changed, 16 insertions(+), 10 deletions(-) (limited to 'client/src') diff --git a/client/src/app/shared/video/abstract-video-list.ts b/client/src/app/shared/video/abstract-video-list.ts index 7235b3425..570aaae9d 100644 --- a/client/src/app/shared/video/abstract-video-list.ts +++ b/client/src/app/shared/video/abstract-video-list.ts @@ -3,6 +3,7 @@ import { ActivatedRoute, Router } from '@angular/router' 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 { AuthService } from '../../core/auth' @@ -25,9 +26,9 @@ export abstract class AbstractVideoList implements OnInit { defaultSort: SortField = '-createdAt' loadOnInit = true pageHeight: number - videoWidth = 215 - videoHeight = 230 - videoPages: Video[][] + videoWidth: number + videoHeight: number + videoPages: Video[][] = [] protected abstract notificationsService: NotificationsService protected abstract authService: AuthService @@ -174,23 +175,27 @@ export abstract class AbstractVideoList implements OnInit { this.videoWidth = -1 this.pageHeight = this.pagination.itemsPerPage * this.videoHeight } else { + this.videoWidth = 215 + this.videoHeight = 230 + const videosWidth = this.videosElement.nativeElement.offsetWidth this.pagination.itemsPerPage = Math.floor(videosWidth / this.videoWidth) * AbstractVideoList.LINES_PER_PAGE this.pageHeight = this.videoHeight * AbstractVideoList.LINES_PER_PAGE } // Rebuild pages because maybe we modified the number of items per page - let videos: Video[] = [] - Object.values(this.loadedPages) - .forEach(videosPage => videos = videos.concat(videosPage)) + const videos = [].concat(...this.videoPages) this.loadedPages = {} - for (let i = 1; (i * this.pagination.itemsPerPage) <= videos.length; i++) { - this.loadedPages[i] = videos.slice((i - 1) * this.pagination.itemsPerPage, this.pagination.itemsPerPage * i) + let i = 1 + // Don't include the last page if it not complete + while (videos.length >= this.pagination.itemsPerPage && i < 10000) { // 10000 -> Hard limit in case of infinite loop + this.loadedPages[i] = videos.splice(0, this.pagination.itemsPerPage) + i++ } this.buildVideoPages() - console.log('Re calculated pages after a resize!') + console.log('Rebuilt pages with %s elements per page.', this.pagination.itemsPerPage) } } diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 7951e3927..b60e58fb0 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts @@ -7,6 +7,7 @@ import { NotificationsService } from 'angular2-notifications' import { Subscription } from 'rxjs/Subscription' import * as videojs from 'video.js' import 'videojs-hotkeys' +import * as WebTorrent from 'webtorrent' import { UserVideoRateType, VideoRateType } from '../../../../../shared' import '../../../assets/player/peertube-videojs-plugin' import { AuthService, ConfirmService } from '../../core' @@ -74,7 +75,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { } ngOnInit () { - if (localStorage.getItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY) === 'true') { + if (WebTorrent.WEBRTC_SUPPORT === false || localStorage.getItem(VideoWatchComponent.LOCAL_STORAGE_PRIVACY_CONCERN_KEY) === 'true') { this.hasAlreadyAcceptedPrivacyConcern = true } -- cgit v1.2.3