aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account.component.ts
blob: 7100638c8deeb522e600d22215fb050f68cbd93d (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
import { Component, 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'

@Component({
  selector: 'my-my-account',
  templateUrl: './my-account.component.html',
  styleUrls: [ './my-account.component.scss' ]
})
export class MyAccountComponent implements OnInit {

  libraryLabel = ''

  constructor (
    private serverService: ServerService,
    private router: Router,
    private i18n: I18n
  ) {}

  ngOnInit () {
    this.updateLibraryLabel(this.router.url)

    this.router.events
        .pipe(filter(event => event instanceof NavigationStart))
        .subscribe((event: NavigationStart) => this.updateLibraryLabel(event.url))
  }

  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 = ''
    }
  }
}