]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+my-account/my-account.component.ts
Update build steps for localization
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account.component.ts
index d98d06f8e7f619c25a2ee8c95b73a17dfd7e5dbc..56373e5f18efd08080eaeb17c8c5476f5b26c734 100644 (file)
@@ -1,33 +1,63 @@
-import { Component } from '@angular/core'
-import { ServerService } from '@app/core'
+import { Component, OnInit } from '@angular/core'
+import { AuthService, ScreenService, ServerService, AuthUser } from '@app/core'
 import { I18n } from '@ngx-translate/i18n-polyfill'
-import { TopMenuDropdownParam } from '@app/shared/menu/top-menu-dropdown.component'
+import { ServerConfig } from '@shared/models'
+import { TopMenuDropdownParam } from '../shared/shared-main/misc/top-menu-dropdown.component'
 
 @Component({
   selector: 'my-my-account',
   templateUrl: './my-account.component.html',
   styleUrls: [ './my-account.component.scss' ]
 })
-export class MyAccountComponent {
+export class MyAccountComponent implements OnInit {
   menuEntries: TopMenuDropdownParam[] = []
+  user: AuthUser
+
+  private serverConfig: ServerConfig
 
   constructor (
     private serverService: ServerService,
+    private authService: AuthService,
+    private screenService: ScreenService,
     private i18n: I18n
-  ) {
+  ) { }
+
+  get isBroadcastMessageDisplayed () {
+    return this.screenService.isBroadcastMessageDisplayed
+  }
+
+  ngOnInit (): void {
+    this.serverConfig = this.serverService.getTmpConfig()
+    this.serverService.getConfig()
+        .subscribe(config => this.serverConfig = config)
+
+    this.user = this.authService.getUser()
+
+    this.authService.userInformationLoaded.subscribe(
+      () => this.buildMenu()
+    )
+  }
+
+  isVideoImportEnabled () {
+    const importConfig = this.serverConfig.import.videos
+
+    return importConfig.http.enabled || importConfig.torrent.enabled
+  }
 
+  private buildMenu () {
     const libraryEntries: TopMenuDropdownParam = {
       label: this.i18n('My library'),
       children: [
         {
           label: this.i18n('My channels'),
           routerLink: '/my-account/video-channels',
-          iconName: 'folder'
+          iconName: 'channel'
         },
         {
           label: this.i18n('My videos'),
           routerLink: '/my-account/videos',
-          iconName: 'videos'
+          iconName: 'videos',
+          isDisplayed: () => this.user.canSeeVideosLink
         },
         {
           label: this.i18n('My playlists'),
@@ -51,7 +81,8 @@ export class MyAccountComponent {
       libraryEntries.children.push({
         label: 'My imports',
         routerLink: '/my-account/video-imports',
-        iconName: 'cloud-download'
+        iconName: 'cloud-download',
+        isDisplayed: () => this.user.canSeeVideosLink
       })
     }
 
@@ -61,17 +92,22 @@ export class MyAccountComponent {
         {
           label: this.i18n('Muted accounts'),
           routerLink: '/my-account/blocklist/accounts',
-          iconName: 'user'
+          iconName: 'user-x'
         },
         {
-          label: this.i18n('Muted instances'),
+          label: this.i18n('Muted servers'),
           routerLink: '/my-account/blocklist/servers',
-          iconName: 'server'
+          iconName: 'peertube-x'
+        },
+        {
+          label: this.i18n('My abuse reports'),
+          routerLink: '/my-account/abuses',
+          iconName: 'flag'
         },
         {
           label: this.i18n('Ownership changes'),
           routerLink: '/my-account/ownership',
-          iconName: 'im-with-her'
+          iconName: 'download'
         }
       ]
     }
@@ -89,11 +125,4 @@ export class MyAccountComponent {
       miscEntries
     ]
   }
-
-  isVideoImportEnabled () {
-    const importConfig = this.serverService.getConfig().import.videos
-
-    return importConfig.http.enabled || importConfig.torrent.enabled
-  }
-
 }