blob: fed6e6b0494a7f7572350f88925689fdcf6e85b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import { Component, OnDestroy, OnInit } from '@angular/core'
import { ServerService } from '@app/core'
import { NavigationStart, Router } from '@angular/router'
import { filter } from 'rxjs/operators'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { Subscription } from 'rxjs'
@Component({
selector: 'my-my-account',
templateUrl: './my-account.component.html',
styleUrls: [ './my-account.component.scss' ]
})
export class MyAccountComponent implements OnInit, OnDestroy {
libraryLabel = ''
private routeSub: Subscription
constructor (
private serverService: ServerService,
private router: Router,
private i18n: I18n
) {}
ngOnInit () {
this.updateLibraryLabel(this.router.url)
this.routeSub = this.router.events
.pipe(filter(event => event instanceof NavigationStart))
.subscribe((event: NavigationStart) => this.updateLibraryLabel(event.url))
}
ngOnDestroy () {
if (this.routeSub) this.routeSub.unsubscribe()
}
isVideoImportEnabled () {
const importConfig = this.serverService.getConfig().import.videos
return importConfig.http.enabled || importConfig.torrent.enabled
}
private updateLibraryLabel (url: string) {
const [ path ] = url.split('?')
if (path === '/my-account/video-channels') {
this.libraryLabel = this.i18n('Channels')
} else if (path === '/my-account/videos') {
this.libraryLabel = this.i18n('Videos')
} else if (path === '/my-account/subscriptions') {
this.libraryLabel = this.i18n('Subscriptions')
} else if (path === '/my-account/video-imports') {
this.libraryLabel = this.i18n('Video imports')
} else {
this.libraryLabel = ''
}
}
}
|