]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.component.ts
Refactor how we use icons
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.component.ts
CommitLineData
ddb83e49 1import { Component } from '@angular/core'
5d08a6a7 2import { ServerService } from '@app/core'
4c8e4e04 3import { I18n } from '@ngx-translate/i18n-polyfill'
ddb83e49 4import { TopMenuDropdownParam } from '@app/shared/menu/top-menu-dropdown.component'
4bb6886d
C
5
6@Component({
0626e7af 7 selector: 'my-my-account',
4c8e4e04
C
8 templateUrl: './my-account.component.html',
9 styleUrls: [ './my-account.component.scss' ]
4bb6886d 10})
ddb83e49
C
11export class MyAccountComponent {
12 menuEntries: TopMenuDropdownParam[] = []
d7639f66 13
5d08a6a7 14 constructor (
4c8e4e04 15 private serverService: ServerService,
4c8e4e04 16 private i18n: I18n
ddb83e49
C
17 ) {
18
19 const libraryEntries: TopMenuDropdownParam = {
20 label: this.i18n('My library'),
21 children: [
22 {
23 label: this.i18n('My channels'),
80bfd33c 24 routerLink: '/my-account/video-channels'
ddb83e49
C
25 },
26 {
27 label: this.i18n('My videos'),
28 routerLink: '/my-account/videos'
29 },
30 {
31 label: this.i18n('My subscriptions'),
32 routerLink: '/my-account/subscriptions'
80bfd33c
C
33 },
34 {
35 label: this.i18n('My history'),
36 routerLink: '/my-account/history/videos'
ddb83e49
C
37 }
38 ]
39 }
5d08a6a7 40
ddb83e49
C
41 if (this.isVideoImportEnabled()) {
42 libraryEntries.children.push({
43 label: 'My imports',
44 routerLink: '/my-account/video-imports'
45 })
46 }
4c8e4e04 47
ddb83e49
C
48 const miscEntries: TopMenuDropdownParam = {
49 label: this.i18n('Misc'),
50 children: [
51 {
52 label: this.i18n('Muted accounts'),
53 routerLink: '/my-account/blocklist/accounts'
54 },
55 {
56 label: this.i18n('Muted instances'),
57 routerLink: '/my-account/blocklist/servers'
58 },
59 {
60 label: this.i18n('Ownership changes'),
61 routerLink: '/my-account/ownership'
62 }
63 ]
64 }
4c8e4e04 65
ddb83e49
C
66 this.menuEntries = [
67 {
68 label: this.i18n('My settings'),
69 routerLink: '/my-account/settings'
70 },
2f1548fd
C
71 {
72 label: this.i18n('My notifications'),
73 routerLink: '/my-account/notifications'
74 },
ddb83e49
C
75 libraryEntries,
76 miscEntries
77 ]
d7639f66
C
78 }
79
5d08a6a7 80 isVideoImportEnabled () {
b0ee41df
C
81 const importConfig = this.serverService.getConfig().import.videos
82
83 return importConfig.http.enabled || importConfig.torrent.enabled
5d08a6a7 84 }
4c8e4e04 85
5d08a6a7 86}