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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
import { Component } from '@angular/core'
import { ServerService } from '@app/core'
import { I18n } from '@ngx-translate/i18n-polyfill'
import { TopMenuDropdownParam } from '@app/shared/menu/top-menu-dropdown.component'
@Component({
selector: 'my-my-account',
templateUrl: './my-account.component.html',
styleUrls: [ './my-account.component.scss' ]
})
export class MyAccountComponent {
menuEntries: TopMenuDropdownParam[] = []
constructor (
private serverService: ServerService,
private i18n: I18n
) {
const libraryEntries: TopMenuDropdownParam = {
label: this.i18n('My library'),
children: [
{
label: this.i18n('My channels'),
routerLink: '/my-account/video-channels'
},
{
label: this.i18n('My videos'),
routerLink: '/my-account/videos'
},
{
label: this.i18n('My subscriptions'),
routerLink: '/my-account/subscriptions'
},
{
label: this.i18n('My history'),
routerLink: '/my-account/history/videos'
}
]
}
if (this.isVideoImportEnabled()) {
libraryEntries.children.push({
label: 'My imports',
routerLink: '/my-account/video-imports'
})
}
const miscEntries: TopMenuDropdownParam = {
label: this.i18n('Misc'),
children: [
{
label: this.i18n('Muted accounts'),
routerLink: '/my-account/blocklist/accounts'
},
{
label: this.i18n('Muted instances'),
routerLink: '/my-account/blocklist/servers'
},
{
label: this.i18n('Ownership changes'),
routerLink: '/my-account/ownership'
}
]
}
this.menuEntries = [
{
label: this.i18n('My settings'),
routerLink: '/my-account/settings'
},
libraryEntries,
miscEntries
]
}
isVideoImportEnabled () {
const importConfig = this.serverService.getConfig().import.videos
return importConfig.http.enabled || importConfig.torrent.enabled
}
}
|