]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account.component.ts
Reorganize left menu and account menu
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.component.ts
index 07cab37fc301ae2c851e7c2eb2ccd64162e966a4..d6e9d1c157211911184a7535fddfa8c6677dba88 100644 (file)
@@ -1,7 +1,5 @@
 import { Component, OnInit } from '@angular/core'
-import { ServerService } from '@app/core'
-import { I18n } from '@ngx-translate/i18n-polyfill'
-import { ServerConfig } from '@shared/models'
+import { AuthUser, ScreenService } from '@app/core'
 import { TopMenuDropdownParam } from '../shared/shared-main/misc/top-menu-dropdown.component'
 
 @Component({
@@ -11,97 +9,54 @@ import { TopMenuDropdownParam } from '../shared/shared-main/misc/top-menu-dropdo
 })
 export class MyAccountComponent implements OnInit {
   menuEntries: TopMenuDropdownParam[] = []
-
-  private serverConfig: ServerConfig
+  user: AuthUser
 
   constructor (
-    private serverService: ServerService,
-    private i18n: I18n
-  ) { }
-
-  ngOnInit (): void {
-    this.serverConfig = this.serverService.getTmpConfig()
-    this.serverService.getConfig()
-        .subscribe(config => this.serverConfig = config)
+    private screenService: ScreenService
+    ) { }
 
-    const libraryEntries: TopMenuDropdownParam = {
-      label: this.i18n('My library'),
-      children: [
-        {
-          label: this.i18n('My channels'),
-          routerLink: '/my-account/video-channels',
-          iconName: 'channel'
-        },
-        {
-          label: this.i18n('My videos'),
-          routerLink: '/my-account/videos',
-          iconName: 'videos'
-        },
-        {
-          label: this.i18n('My playlists'),
-          routerLink: '/my-account/video-playlists',
-          iconName: 'playlists'
-        },
-        {
-          label: this.i18n('My subscriptions'),
-          routerLink: '/my-account/subscriptions',
-          iconName: 'subscriptions'
-        },
-        {
-          label: this.i18n('My history'),
-          routerLink: '/my-account/history/videos',
-          iconName: 'history'
-        }
-      ]
-    }
+  get isBroadcastMessageDisplayed () {
+    return this.screenService.isBroadcastMessageDisplayed
+  }
 
-    if (this.isVideoImportEnabled()) {
-      libraryEntries.children.push({
-        label: 'My imports',
-        routerLink: '/my-account/video-imports',
-        iconName: 'cloud-download'
-      })
-    }
+  ngOnInit (): void {
+    this.buildMenu()
+  }
 
-    const miscEntries: TopMenuDropdownParam = {
-      label: this.i18n('Misc'),
+  private buildMenu () {
+    const moderationEntries: TopMenuDropdownParam = {
+      label: $localize`Moderation`,
       children: [
         {
-          label: this.i18n('Muted accounts'),
+          label: $localize`Muted accounts`,
           routerLink: '/my-account/blocklist/accounts',
           iconName: 'user-x'
         },
         {
-          label: this.i18n('Muted servers'),
+          label: $localize`Muted servers`,
           routerLink: '/my-account/blocklist/servers',
           iconName: 'peertube-x'
         },
         {
-          label: this.i18n('Ownership changes'),
-          routerLink: '/my-account/ownership',
-          iconName: 'download'
+          label: $localize`Abuse reports`,
+          routerLink: '/my-account/abuses',
+          iconName: 'flag'
         }
       ]
     }
 
     this.menuEntries = [
       {
-        label: this.i18n('My settings'),
+        label: $localize`Settings`,
         routerLink: '/my-account/settings'
       },
+
       {
-        label: this.i18n('My notifications'),
+        label: $localize`Notifications`,
         routerLink: '/my-account/notifications'
       },
-      libraryEntries,
-      miscEntries
-    ]
-  }
 
-  isVideoImportEnabled () {
-    const importConfig = this.serverConfig.import.videos
-
-    return importConfig.http.enabled || importConfig.torrent.enabled
+      moderationEntries
+    ]
   }
-
 }