X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2F%2Bmy-account%2Fmy-account.component.ts;h=450454ca2659940d83d7b24da3e71e604da32a2b;hb=2c8380a46f34631e705b1564938343cacfa4b0bc;hp=d98d06f8e7f619c25a2ee8c95b73a17dfd7e5dbc;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/+my-account/my-account.component.ts b/client/src/app/+my-account/my-account.component.ts index d98d06f8e..450454ca2 100644 --- a/client/src/app/+my-account/my-account.component.ts +++ b/client/src/app/+my-account/my-account.component.ts @@ -1,99 +1,67 @@ -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' +import { Component, OnInit } from '@angular/core' +import { AuthUser, ScreenService } from '@app/core' +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 constructor ( - private serverService: ServerService, - private i18n: I18n - ) { + private screenService: ScreenService + ) { } - const libraryEntries: TopMenuDropdownParam = { - label: this.i18n('My library'), - children: [ - { - label: this.i18n('My channels'), - routerLink: '/my-account/video-channels', - iconName: 'folder' - }, - { - 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' + iconName: 'user-x' }, { - label: this.i18n('Muted instances'), + label: $localize`Muted servers`, routerLink: '/my-account/blocklist/servers', - iconName: 'server' + iconName: 'peertube-x' }, { - label: this.i18n('Ownership changes'), - routerLink: '/my-account/ownership', - iconName: 'im-with-her' + 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.serverService.getConfig().import.videos + { + label: $localize`Applications`, + routerLink: '/my-account/applications' + }, - return importConfig.http.enabled || importConfig.torrent.enabled + moderationEntries + ] } - }