X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fmenu%2Fmenu.component.ts;h=410abe6fa474c436ff2b801613d3ef73dbd66e0c;hb=8527f4b163c41d13820ff0ccf6427643547ab745;hp=2f7e0cf07bea2699929d169934e03fdfc62b2d25;hpb=8f608a4cb22ab232cfab20665050764b38bac9c7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/menu/menu.component.ts b/client/src/app/menu/menu.component.ts index 2f7e0cf07..410abe6fa 100644 --- a/client/src/app/menu/menu.component.ts +++ b/client/src/app/menu/menu.component.ts @@ -1,14 +1,16 @@ import { HotkeysService } from 'angular2-hotkeys' import * as debug from 'debug' -import { switchMap } from 'rxjs/operators' +import { forkJoin, Subscription } from 'rxjs' +import { first, switchMap } from 'rxjs/operators' import { ViewportScroller } from '@angular/common' -import { Component, OnInit, ViewChild } from '@angular/core' +import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' import { Router } from '@angular/router' import { AuthService, AuthStatus, AuthUser, - MenuLink, + HooksService, + MenuSection, MenuService, RedirectService, ScreenService, @@ -20,16 +22,16 @@ import { LanguageChooserComponent } from '@app/menu/language-chooser.component' import { QuickSettingsModalComponent } from '@app/modal/quick-settings-modal.component' import { PeertubeModalService } from '@app/shared/shared-main/peertube-modal/peertube-modal.service' import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap' -import { ServerConfig, UserRight, VideoConstant } from '@shared/models' +import { HTMLServerConfig, ServerConfig, UserRight, VideoConstant } from '@shared/models' -const logger = debug('peertube:menu:MenuComponent') +const debugLogger = debug('peertube:menu:MenuComponent') @Component({ selector: 'my-menu', templateUrl: './menu.component.html', - styleUrls: ['./menu.component.scss'] + styleUrls: [ './menu.component.scss' ] }) -export class MenuComponent implements OnInit { +export class MenuComponent implements OnInit, OnDestroy { @ViewChild('languageChooserModal', { static: true }) languageChooserModal: LanguageChooserComponent @ViewChild('quickSettingsModal', { static: true }) quickSettingsModal: QuickSettingsModalComponent @ViewChild('dropdown') dropdown: NgbDropdown @@ -45,10 +47,13 @@ export class MenuComponent implements OnInit { currentInterfaceLanguage: string - commonMenuLinks: MenuLink[] = [] + menuSections: MenuSection[] = [] private languages: VideoConstant[] = [] + + private htmlServerConfig: HTMLServerConfig private serverConfig: ServerConfig + private routesPerRight: { [role in UserRight]?: string } = { [UserRight.MANAGE_USERS]: '/admin/users', [UserRight.MANAGE_SERVER_FOLLOW]: '/admin/friends', @@ -58,6 +63,11 @@ export class MenuComponent implements OnInit { [UserRight.MANAGE_CONFIGURATION]: '/admin/config' } + private languagesSub: Subscription + private modalSub: Subscription + private hotkeysSub: Subscription + private authSub: Subscription + constructor ( private viewportScroller: ViewportScroller, private authService: AuthService, @@ -68,86 +78,70 @@ export class MenuComponent implements OnInit { private screenService: ScreenService, private menuService: MenuService, private modalService: PeertubeModalService, - private router: Router + private router: Router, + private hooks: HooksService ) { } get isInMobileView () { return this.screenService.isInMobileView() } - get dropdownContainer () { - if (this.isInMobileView) return null - - return 'body' as 'body' - } - get language () { return this.languageChooserModal.getCurrentLanguage() } - get instanceName () { - return this.serverConfig.instance.name + get requiresApproval () { + return this.serverConfig.signup.requiresApproval } ngOnInit () { - this.serverConfig = this.serverService.getTmpConfig() - this.serverService.getConfig() - .subscribe(config => { - this.serverConfig = config - this.buildMenuLinks() - }) - - this.isLoggedIn = this.authService.isLoggedIn() - if (this.isLoggedIn === true) { - this.user = this.authService.getUser() - - this.computeNSFWPolicy() - this.computeVideosLink() - } - - this.computeAdminAccess() - + this.htmlServerConfig = this.serverService.getHTMLConfig() this.currentInterfaceLanguage = this.languageChooserModal.getCurrentLanguage() - this.authService.loginChangedSource.subscribe( - status => { - if (status === AuthStatus.LoggedIn) { - this.isLoggedIn = true - this.user = this.authService.getUser() - - this.computeAdminAccess() - this.computeVideosLink() - - logger('Logged in.') - } else if (status === AuthStatus.LoggedOut) { - this.isLoggedIn = false - this.user = undefined - - this.computeAdminAccess() - - logger('Logged out.') - } else { - console.error('Unknown auth status: ' + status) - } + this.isLoggedIn = this.authService.isLoggedIn() + this.updateUserState() + this.buildMenuSections() + + this.authSub = this.authService.loginChangedSource.subscribe(status => { + if (status === AuthStatus.LoggedIn) { + this.isLoggedIn = true + } else if (status === AuthStatus.LoggedOut) { + this.isLoggedIn = false } - ) - this.hotkeysService.cheatSheetToggle + this.updateUserState() + this.buildMenuSections() + }) + + this.hotkeysSub = this.hotkeysService.cheatSheetToggle .subscribe(isOpen => this.helpVisible = isOpen) - this.serverService.getVideoLanguages() - .subscribe(languages => { - this.languages = languages + this.languagesSub = forkJoin([ + this.serverService.getVideoLanguages(), + this.authService.userInformationLoaded.pipe(first()) + ]).subscribe(([ languages ]) => { + this.languages = languages - this.authService.userInformationLoaded - .subscribe(() => this.buildUserLanguages()) - }) + this.buildUserLanguages() + }) + + this.serverService.getConfig() + .subscribe(config => this.serverConfig = config) - this.modalService.openQuickSettingsSubject + this.modalSub = this.modalService.openQuickSettingsSubject .subscribe(() => this.openQuickSettings()) } + ngOnDestroy () { + if (this.modalSub) this.modalSub.unsubscribe() + if (this.languagesSub) this.languagesSub.unsubscribe() + if (this.hotkeysSub) this.hotkeysSub.unsubscribe() + if (this.authSub) this.authSub.unsubscribe() + } + isRegistrationAllowed () { + if (!this.serverConfig) return false + return this.serverConfig.signup.allowed && this.serverConfig.signup.allowedForCurrentIP } @@ -202,9 +196,9 @@ export class MenuComponent implements OnInit { toggleUseP2P () { if (!this.user) return - this.user.webTorrentEnabled = !this.user.webTorrentEnabled + this.user.p2pEnabled = !this.user.p2pEnabled - this.userService.updateMyProfile({ webTorrentEnabled: this.user.webTorrentEnabled }) + this.userService.updateMyProfile({ p2pEnabled: this.user.p2pEnabled }) .subscribe(() => this.authService.refreshUserInformation()) } @@ -256,8 +250,20 @@ export class MenuComponent implements OnInit { } } - private buildMenuLinks () { - this.commonMenuLinks = this.menuService.buildCommonLinks(this.serverConfig) + private async buildMenuSections () { + const menuSections = [] + + if (this.isLoggedIn) { + menuSections.push( + this.menuService.buildLibraryLinks(this.user?.canSeeVideosLink) + ) + } + + menuSections.push( + this.menuService.buildCommonLinks(this.htmlServerConfig) + ) + + this.menuSections = await this.hooks.wrapObject(menuSections, 'common', 'filter:left-menu.links.create.result') } private buildUserLanguages () { @@ -267,7 +273,7 @@ export class MenuComponent implements OnInit { } if (!this.user.videoLanguages) { - this.videoLanguages = [$localize`any language`] + this.videoLanguages = [ $localize`any language` ] return } @@ -283,12 +289,14 @@ export class MenuComponent implements OnInit { } private computeVideosLink () { + if (!this.isLoggedIn) return + this.authService.userInformationLoaded .pipe( switchMap(() => this.user.computeCanSeeVideosLink(this.userService.getMyVideoQuotaUsed())) ).subscribe(res => { - if (res === true) logger('User can see videos link.') - else logger('User cannot see videos link.') + if (res === true) debugLogger('User can see videos link.') + else debugLogger('User cannot see videos link.') }) } @@ -312,4 +320,14 @@ export class MenuComponent implements OnInit { break } } + + private updateUserState () { + this.user = this.isLoggedIn + ? this.authService.getUser() + : undefined + + this.computeAdminAccess() + this.computeNSFWPolicy() + this.computeVideosLink() + } }