Don't forget to clean up subscriptions

This commit is contained in:
Chocobozzz 2018-03-19 18:00:31 +01:00
parent 606ca5bccf
commit 9af61e8430
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
7 changed files with 68 additions and 26 deletions

View File

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core' import { Component, OnInit, OnDestroy } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router' import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils' import { immutableAssign } from '@app/shared/misc/utils'
import { ComponentPagination } from '@app/shared/rest/component-pagination.model' import { ComponentPagination } from '@app/shared/rest/component-pagination.model'
@ -17,18 +17,19 @@ import { VideoService } from '../../shared/video/video.service'
templateUrl: './account-videos.component.html', templateUrl: './account-videos.component.html',
styleUrls: [ './account-videos.component.scss' ] styleUrls: [ './account-videos.component.scss' ]
}) })
export class AccountVideosComponent extends AbstractVideoList implements OnInit { export class AccountVideosComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'My videos' titlePage = 'My videos'
currentRoute = '/account/videos' currentRoute = '/account/videos'
checkedVideos: { [ id: number ]: boolean } = {} checkedVideos: { [ id: number ]: boolean } = {}
videoHeight = 155
videoWidth = -1
pagination: ComponentPagination = { pagination: ComponentPagination = {
currentPage: 1, currentPage: 1,
itemsPerPage: 10, itemsPerPage: 10,
totalItems: null totalItems: null
} }
protected baseVideoWidth = -1
protected baseVideoHeight = 155
constructor (protected router: Router, constructor (protected router: Router,
protected route: ActivatedRoute, protected route: ActivatedRoute,
protected authService: AuthService, protected authService: AuthService,
@ -42,6 +43,10 @@ export class AccountVideosComponent extends AbstractVideoList implements OnInit
super.ngOnInit() super.ngOnInit()
} }
ngOnDestroy () {
super.ngOnDestroy()
}
abortSelectionMode () { abortSelectionMode () {
this.checkedVideos = {} this.checkedVideos = {}
} }

View File

@ -1,4 +1,4 @@
import { ElementRef, OnInit, ViewChild } from '@angular/core' import { ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router' import { ActivatedRoute, Router } from '@angular/router'
import { isInMobileView } from '@app/shared/misc/utils' import { isInMobileView } from '@app/shared/misc/utils'
import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.directive' import { InfiniteScrollerDirective } from '@app/shared/video/infinite-scroller.directive'
@ -6,12 +6,13 @@ import { NotificationsService } from 'angular2-notifications'
import 'rxjs/add/operator/debounceTime' import 'rxjs/add/operator/debounceTime'
import { Observable } from 'rxjs/Observable' import { Observable } from 'rxjs/Observable'
import { fromEvent } from 'rxjs/observable/fromEvent' import { fromEvent } from 'rxjs/observable/fromEvent'
import { Subscription } from 'rxjs/Subscription'
import { AuthService } from '../../core/auth' import { AuthService } from '../../core/auth'
import { ComponentPagination } from '../rest/component-pagination.model' import { ComponentPagination } from '../rest/component-pagination.model'
import { SortField } from './sort-field.type' import { SortField } from './sort-field.type'
import { Video } from './video.model' import { Video } from './video.model'
export abstract class AbstractVideoList implements OnInit { export abstract class AbstractVideoList implements OnInit, OnDestroy {
private static LINES_PER_PAGE = 3 private static LINES_PER_PAGE = 3
@ViewChild('videoElement') videosElement: ElementRef @ViewChild('videoElement') videosElement: ElementRef
@ -30,6 +31,9 @@ export abstract class AbstractVideoList implements OnInit {
videoHeight: number videoHeight: number
videoPages: Video[][] = [] videoPages: Video[][] = []
protected baseVideoWidth = 215
protected baseVideoHeight = 230
protected abstract notificationsService: NotificationsService protected abstract notificationsService: NotificationsService
protected abstract authService: AuthService protected abstract authService: AuthService
protected abstract router: Router protected abstract router: Router
@ -40,6 +44,8 @@ export abstract class AbstractVideoList implements OnInit {
protected loadedPages: { [ id: number ]: Video[] } = {} protected loadedPages: { [ id: number ]: Video[] } = {}
protected otherRouteParams = {} protected otherRouteParams = {}
private resizeSubscription: Subscription
abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}> abstract getVideosObservable (page: number): Observable<{ videos: Video[], totalVideos: number}>
get user () { get user () {
@ -51,7 +57,7 @@ export abstract class AbstractVideoList implements OnInit {
const routeParams = this.route.snapshot.params const routeParams = this.route.snapshot.params
this.loadRouteParams(routeParams) this.loadRouteParams(routeParams)
fromEvent(window, 'resize') this.resizeSubscription = fromEvent(window, 'resize')
.debounceTime(500) .debounceTime(500)
.subscribe(() => this.calcPageSizes()) .subscribe(() => this.calcPageSizes())
@ -59,6 +65,10 @@ export abstract class AbstractVideoList implements OnInit {
if (this.loadOnInit === true) this.loadMoreVideos(this.pagination.currentPage) if (this.loadOnInit === true) this.loadMoreVideos(this.pagination.currentPage)
} }
ngOnDestroy () {
if (this.resizeSubscription) this.resizeSubscription.unsubscribe()
}
onNearOfTop () { onNearOfTop () {
this.previousPage() this.previousPage()
} }
@ -168,15 +178,15 @@ export abstract class AbstractVideoList implements OnInit {
} }
private calcPageSizes () { private calcPageSizes () {
if (isInMobileView()) { if (isInMobileView() || this.baseVideoWidth === -1) {
this.pagination.itemsPerPage = 5 this.pagination.itemsPerPage = 5
// Video takes all the width // Video takes all the width
this.videoWidth = -1 this.videoWidth = -1
this.pageHeight = this.pagination.itemsPerPage * this.videoHeight this.pageHeight = this.pagination.itemsPerPage * this.videoHeight
} else { } else {
this.videoWidth = 215 this.videoWidth = this.baseVideoWidth
this.videoHeight = 230 this.videoHeight = this.baseVideoHeight
const videosWidth = this.videosElement.nativeElement.offsetWidth const videosWidth = this.videosElement.nativeElement.offsetWidth
this.pagination.itemsPerPage = Math.floor(videosWidth / this.videoWidth) * AbstractVideoList.LINES_PER_PAGE this.pagination.itemsPerPage = Math.floor(videosWidth / this.videoWidth) * AbstractVideoList.LINES_PER_PAGE
@ -194,7 +204,12 @@ export abstract class AbstractVideoList implements OnInit {
i++ 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) console.log('Rebuilt pages with %s elements per page.', this.pagination.itemsPerPage)
} }

View File

@ -1,18 +1,19 @@
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/debounceTime'
import 'rxjs/add/operator/distinct' import 'rxjs/add/operator/distinct'
import 'rxjs/add/operator/distinctUntilChanged' import 'rxjs/add/operator/distinctUntilChanged'
import 'rxjs/add/operator/filter' import 'rxjs/add/operator/filter'
import 'rxjs/add/operator/map' import 'rxjs/add/operator/map'
import 'rxjs/add/operator/share'
import 'rxjs/add/operator/startWith' import 'rxjs/add/operator/startWith'
import 'rxjs/add/operator/throttleTime' import 'rxjs/add/operator/throttleTime'
import { fromEvent } from 'rxjs/observable/fromEvent' import { fromEvent } from 'rxjs/observable/fromEvent'
import 'rxjs/add/operator/share' import { Subscription } from 'rxjs/Subscription'
@Directive({ @Directive({
selector: '[myInfiniteScroller]' selector: '[myInfiniteScroller]'
}) })
export class InfiniteScrollerDirective implements OnInit { export class InfiniteScrollerDirective implements OnInit, OnDestroy {
private static PAGE_VIEW_TOP_MARGIN = 500 private static PAGE_VIEW_TOP_MARGIN = 500
@Input() containerHeight: number @Input() containerHeight: number
@ -27,6 +28,9 @@ export class InfiniteScrollerDirective implements OnInit {
private decimalLimit = 0 private decimalLimit = 0
private lastCurrentBottom = -1 private lastCurrentBottom = -1
private lastCurrentTop = 0 private lastCurrentTop = 0
private scrollDownSub: Subscription
private scrollUpSub: Subscription
private pageChangeSub: Subscription
constructor () { constructor () {
this.decimalLimit = this.percentLimit / 100 this.decimalLimit = this.percentLimit / 100
@ -36,6 +40,12 @@ export class InfiniteScrollerDirective implements OnInit {
if (this.autoLoading === true) return this.initialize() 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 () { initialize () {
// Emit the last value // Emit the last value
const throttleOptions = { leading: true, trailing: true } const throttleOptions = { leading: true, trailing: true }
@ -48,7 +58,7 @@ export class InfiniteScrollerDirective implements OnInit {
.share() .share()
// Scroll Down // Scroll Down
scrollObservable this.scrollDownSub = scrollObservable
// Check we scroll down // Check we scroll down
.filter(({ current }) => { .filter(({ current }) => {
const res = this.lastCurrentBottom < current const res = this.lastCurrentBottom < current
@ -60,7 +70,7 @@ export class InfiniteScrollerDirective implements OnInit {
.subscribe(() => this.nearOfBottom.emit()) .subscribe(() => this.nearOfBottom.emit())
// Scroll up // Scroll up
scrollObservable this.scrollUpSub = scrollObservable
// Check we scroll up // Check we scroll up
.filter(({ current }) => { .filter(({ current }) => {
const res = this.lastCurrentTop > current const res = this.lastCurrentTop > current
@ -74,7 +84,7 @@ export class InfiniteScrollerDirective implements OnInit {
.subscribe(() => this.nearOfTop.emit()) .subscribe(() => this.nearOfTop.emit())
// Page change // Page change
scrollObservable this.pageChangeSub = scrollObservable
.distinct() .distinct()
.map(({ current }) => this.calculateCurrentPage(current)) .map(({ current }) => this.calculateCurrentPage(current))
.distinctUntilChanged() .distinctUntilChanged()

View File

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core' import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router' import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils' import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications' import { NotificationsService } from 'angular2-notifications'
@ -12,7 +12,7 @@ import { VideoService } from '../../shared/video/video.service'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ], styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html' 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' titlePage = 'Local videos'
currentRoute = '/videos/local' currentRoute = '/videos/local'
sort = '-createdAt' as SortField sort = '-createdAt' as SortField
@ -29,6 +29,10 @@ export class VideoLocalComponent extends AbstractVideoList implements OnInit {
super.ngOnInit() super.ngOnInit()
} }
ngOnDestroy () {
super.ngOnDestroy()
}
getVideosObservable (page: number) { getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page }) const newPagination = immutableAssign(this.pagination, { currentPage: page })

View File

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core' import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router' import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils' import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications' import { NotificationsService } from 'angular2-notifications'
@ -12,7 +12,7 @@ import { VideoService } from '../../shared/video/video.service'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ], styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html' 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' titlePage = 'Recently added'
currentRoute = '/videos/recently-added' currentRoute = '/videos/recently-added'
sort: SortField = '-createdAt' sort: SortField = '-createdAt'
@ -29,6 +29,10 @@ export class VideoRecentlyAddedComponent extends AbstractVideoList implements On
super.ngOnInit() super.ngOnInit()
} }
ngOnDestroy () {
super.ngOnDestroy()
}
getVideosObservable (page: number) { getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page }) const newPagination = immutableAssign(this.pagination, { currentPage: page })

View File

@ -47,9 +47,9 @@ export class VideoSearchComponent extends AbstractVideoList implements OnInit, O
} }
ngOnDestroy () { ngOnDestroy () {
if (this.subActivatedRoute) { super.ngOnDestroy()
this.subActivatedRoute.unsubscribe()
} if (this.subActivatedRoute) this.subActivatedRoute.unsubscribe()
} }
getVideosObservable (page: number) { getVideosObservable (page: number) {

View File

@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core' import { Component, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, Router } from '@angular/router' import { ActivatedRoute, Router } from '@angular/router'
import { immutableAssign } from '@app/shared/misc/utils' import { immutableAssign } from '@app/shared/misc/utils'
import { NotificationsService } from 'angular2-notifications' import { NotificationsService } from 'angular2-notifications'
@ -12,7 +12,7 @@ import { VideoService } from '../../shared/video/video.service'
styleUrls: [ '../../shared/video/abstract-video-list.scss' ], styleUrls: [ '../../shared/video/abstract-video-list.scss' ],
templateUrl: '../../shared/video/abstract-video-list.html' templateUrl: '../../shared/video/abstract-video-list.html'
}) })
export class VideoTrendingComponent extends AbstractVideoList implements OnInit { export class VideoTrendingComponent extends AbstractVideoList implements OnInit, OnDestroy {
titlePage = 'Trending' titlePage = 'Trending'
currentRoute = '/videos/trending' currentRoute = '/videos/trending'
defaultSort: SortField = '-views' defaultSort: SortField = '-views'
@ -29,6 +29,10 @@ export class VideoTrendingComponent extends AbstractVideoList implements OnInit
super.ngOnInit() super.ngOnInit()
} }
ngOnDestroy () {
super.ngOnDestroy()
}
getVideosObservable (page: number) { getVideosObservable (page: number) {
const newPagination = immutableAssign(this.pagination, { currentPage: page }) const newPagination = immutableAssign(this.pagination, { currentPage: page })
return this.videoService.getVideos(newPagination, this.sort) return this.videoService.getVideos(newPagination, this.sort)