]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account.component.ts
My account menu -> open entries on hover
[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'),
24 routerLink: '/my-account/videos'
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'
33 }
34 ]
35 }
5d08a6a7 36
ddb83e49
C
37 if (this.isVideoImportEnabled()) {
38 libraryEntries.children.push({
39 label: 'My imports',
40 routerLink: '/my-account/video-imports'
41 })
42 }
4c8e4e04 43
ddb83e49
C
44 const miscEntries: TopMenuDropdownParam = {
45 label: this.i18n('Misc'),
46 children: [
47 {
48 label: this.i18n('Muted accounts'),
49 routerLink: '/my-account/blocklist/accounts'
50 },
51 {
52 label: this.i18n('Muted instances'),
53 routerLink: '/my-account/blocklist/servers'
54 },
55 {
56 label: this.i18n('Ownership changes'),
57 routerLink: '/my-account/ownership'
58 }
59 ]
60 }
4c8e4e04 61
ddb83e49
C
62 this.menuEntries = [
63 {
64 label: this.i18n('My settings'),
65 routerLink: '/my-account/settings'
66 },
67 libraryEntries,
68 miscEntries
69 ]
d7639f66
C
70 }
71
5d08a6a7 72 isVideoImportEnabled () {
b0ee41df
C
73 const importConfig = this.serverService.getConfig().import.videos
74
75 return importConfig.http.enabled || importConfig.torrent.enabled
5d08a6a7 76 }
4c8e4e04 77
5d08a6a7 78}