mirror of https://github.com/Chocobozzz/PeerTube
Unsubscribe from the router
parent
432e7ddcc8
commit
d7639f66af
|
@ -1,18 +1,21 @@
|
||||||
import { Component, OnInit } from '@angular/core'
|
import { Component, OnDestroy, OnInit } from '@angular/core'
|
||||||
import { ServerService } from '@app/core'
|
import { ServerService } from '@app/core'
|
||||||
import { NavigationStart, Router } from '@angular/router'
|
import { NavigationStart, Router } from '@angular/router'
|
||||||
import { filter } from 'rxjs/operators'
|
import { filter } from 'rxjs/operators'
|
||||||
import { I18n } from '@ngx-translate/i18n-polyfill'
|
import { I18n } from '@ngx-translate/i18n-polyfill'
|
||||||
|
import { Subscription } from 'rxjs'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'my-my-account',
|
selector: 'my-my-account',
|
||||||
templateUrl: './my-account.component.html',
|
templateUrl: './my-account.component.html',
|
||||||
styleUrls: [ './my-account.component.scss' ]
|
styleUrls: [ './my-account.component.scss' ]
|
||||||
})
|
})
|
||||||
export class MyAccountComponent implements OnInit {
|
export class MyAccountComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
libraryLabel = ''
|
libraryLabel = ''
|
||||||
|
|
||||||
|
private routeSub: Subscription
|
||||||
|
|
||||||
constructor (
|
constructor (
|
||||||
private serverService: ServerService,
|
private serverService: ServerService,
|
||||||
private router: Router,
|
private router: Router,
|
||||||
|
@ -22,11 +25,15 @@ export class MyAccountComponent implements OnInit {
|
||||||
ngOnInit () {
|
ngOnInit () {
|
||||||
this.updateLibraryLabel(this.router.url)
|
this.updateLibraryLabel(this.router.url)
|
||||||
|
|
||||||
this.router.events
|
this.routeSub = this.router.events
|
||||||
.pipe(filter(event => event instanceof NavigationStart))
|
.pipe(filter(event => event instanceof NavigationStart))
|
||||||
.subscribe((event: NavigationStart) => this.updateLibraryLabel(event.url))
|
.subscribe((event: NavigationStart) => this.updateLibraryLabel(event.url))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ngOnDestroy () {
|
||||||
|
if (this.routeSub) this.routeSub.unsubscribe()
|
||||||
|
}
|
||||||
|
|
||||||
isVideoImportEnabled () {
|
isVideoImportEnabled () {
|
||||||
const importConfig = this.serverService.getConfig().import.videos
|
const importConfig = this.serverService.getConfig().import.videos
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue