-import { Component, OnInit } from '@angular/core'
+import { Component, OnInit, OnDestroy } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils'
import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
templateUrl: './account-videos.component.html',
styleUrls: [ './account-videos.component.scss' ]
})
-export class AccountVideosComponent extends AbstractVideoList implements OnInit {
+export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'My videos'
currentRoute = '/account/videos'
checkedVideos: { [ id: number ]: boolean } = {}
- videoHeight = 155
- videoWidth = -1
pagination: ComponentPagination = {
currentPage: 1,
itemsPerPage: 10,
totalItems: null
}
+ protected baseVideoWidth = -1
+ protected baseVideoHeight = 155
+
constructor (protected router: Router,
protected route: ActivatedRoute,
protected authService: AuthService,
super.ngOnInit()
}
+ ngOnDestroy () {
+ super.ngOnDestroy()
+ }
+
abortSelectionMode () {
this.checkedVideos = {}
}
-import { ElementRef, OnInit, ViewChild } from '@angular/core'
+import { ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { isInMobileView } from '@app/shared/misc/utils'
import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.directive'
import 'rxjs/add/operator/debounceTime'
import { Observable } from 'rxjs/Observable'
import { fromEvent } from 'rxjs/observable/fromEvent'
+import { Subscription } from 'rxjs/Subscription'
import { AuthService } from '../../core/auth'
import { ComponentPagination } from '../rest/component-pagination.model'
import { SortField } from './sort-field.type'
import { Video } from './video.model'
-export abstract class AbstractVideoList implements OnInit {
+export abstract class AbstractVideoList implements OnInit, OnDestroy {
private static LINES_PER_PAGE = 3
@ViewChild('videoElement') videosElement: ElementRef
videoHeight: number
videoPages: Video[][] = []
+ protected baseVideoWidth = 215
+ protected baseVideoHeight = 230
+
protected abstract notificationsService: NotificationsService
protected abstract authService: AuthService
protected abstract router: Router
protected loadedPages: { [ id: number ]: Video[] } = {}
protected otherRouteParams = {}
+ private resizeSubscription: Subscription
+
abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}>
get user () {
const routeParams = this.route.snapshot.params
this.loadRouteParams(routeParams)
- fromEvent(window, 'resize')
+ this.resizeSubscription = fromEvent(window, 'resize')
.debounceTime(500)
.subscribe(() => this.calcPageSizes())
if (this.loadOnInit === true) this.loadMoreVideos(this.pagination.currentPage)
}
+ ngOnDestroy () {
+ if (this.resizeSubscription) this.resizeSubscription.unsubscribe()
+ }
+
onNearOfTop () {
this.previousPage()
}
}
private calcPageSizes () {
- if (isInMobileView()) {
+ if (isInMobileView() || this.baseVideoWidth === -1) {
this.pagination.itemsPerPage = 5
// Video takes all the width
this.videoWidth = -1
this.pageHeight = this.pagination.itemsPerPage * this.videoHeight
} else {
- this.videoWidth = 215
- this.videoHeight = 230
+ this.videoWidth = this.baseVideoWidth
+ this.videoHeight = this.baseVideoHeight
const videosWidth = this.videosElement.nativeElement.offsetWidth
this.pagination.itemsPerPage = Math.floor(videosWidth / this.videoWidth) * AbstractVideoList.LINES_PER_PAGE
i++
}
- this.buildVideoPages()
+ // Re fetch the last page
+ if (videos.length !== 0) {
+ this.loadMoreVideos(i)
+ } else {
+ this.buildVideoPages()
+ }
console.log('Rebuilt pages with %s elements per page.', this.pagination.itemsPerPage)
}
-import { Directive, EventEmitter, Input, OnInit, Output } from '@angular/core'
+import { Directive, EventEmitter, Input, OnDestroy, 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/share'
import 'rxjs/add/operator/startWith'
import 'rxjs/add/operator/throttleTime'
import { fromEvent } from 'rxjs/observable/fromEvent'
-import 'rxjs/add/operator/share'
+import { Subscription } from 'rxjs/Subscription'
@Directive({
selector: '[myInfiniteScroller]'
})
-export class InfiniteScrollerDirective implements OnInit {
+export class InfiniteScrollerDirective implements OnInit, OnDestroy {
private static PAGE_VIEW_TOP_MARGIN = 500
@Input() containerHeight: number
private decimalLimit = 0
private lastCurrentBottom = -1
private lastCurrentTop = 0
+ private scrollDownSub: Subscription
+ private scrollUpSub: Subscription
+ private pageChangeSub: Subscription
constructor () {
this.decimalLimit = this.percentLimit / 100
if (this.autoLoading === true) return this.initialize()
}
+ ngOnDestroy () {
+ if (this.scrollDownSub) this.scrollDownSub.unsubscribe()
+ if (this.scrollUpSub) this.scrollUpSub.unsubscribe()
+ if (this.pageChangeSub) this.pageChangeSub.unsubscribe()
+ }
+
initialize () {
// Emit the last value
const throttleOptions = { leading: true, trailing: true }
.share()
// Scroll Down
- scrollObservable
+ this.scrollDownSub = scrollObservable
// Check we scroll down
.filter(({ current }) => {
const res = this.lastCurrentBottom < current
.subscribe(() => this.nearOfBottom.emit())
// Scroll up
- scrollObservable
+ this.scrollUpSub = scrollObservable
// Check we scroll up
.filter(({ current }) => {
const res = this.lastCurrentTop > current
.subscribe(() => this.nearOfTop.emit())
// Page change
- scrollObservable
+ this.pageChangeSub = scrollObservable
.distinct()
.map(({ current }) => this.calculateCurrentPage(current))
.distinctUntilChanged()
-import { Component, OnInit } from '@angular/core'
+import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html'
})
-export class VideoLocalComponent extends AbstractVideoList implements OnInit {
+export class VideoLocalComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'Local videos'
currentRoute = '/videos/local'
sort = '-createdAt' as SortField
super.ngOnInit()
}
+ ngOnDestroy () {
+ super.ngOnDestroy()
+ }
+
getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page })
-import { Component, OnInit } from '@angular/core'
+import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html'
})
-export class VideoRecentlyAddedComponent extends AbstractVideoList implements OnInit {
+export class VideoRecentlyAddedComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'Recently added'
currentRoute = '/videos/recently-added'
sort: SortField = '-createdAt'
super.ngOnInit()
}
+ ngOnDestroy () {
+ super.ngOnDestroy()
+ }
+
getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page })
}
ngOnDestroy () {
- if (this.subActivatedRoute) {
- this.subActivatedRoute.unsubscribe()
- }
+ super.ngOnDestroy()
+
+ if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe()
}
getVideosObservable (page: number) {
-import { Component, OnInit } from '@angular/core'
+import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html'
})
-export class VideoTrendingComponent extends AbstractVideoList implements OnInit {
+export class VideoTrendingComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'Trending'
currentRoute = '/videos/trending'
defaultSort: SortField = '-views'
super.ngOnInit()
}
+ ngOnDestroy () {
+ super.ngOnDestroy()
+ }
+
getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page })
return this.videoService.getVideos(newPagination, this.sort)