X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fmenu%2Fmenu.component.ts;h=410abe6fa474c436ff2b801613d3ef73dbd66e0c;hb=8527f4b163c41d13820ff0ccf6427643547ab745;hp=348700c09fa609c967b3b072bc1b4c573493dc59;hpb=244b4ae3973bc1511464a08158a123767f83179c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/menu/menu.component.ts b/client/src/app/menu/menu.component.ts index 348700c09..410abe6fa 100644 --- a/client/src/app/menu/menu.component.ts +++ b/client/src/app/menu/menu.component.ts @@ -1,71 +1,149 @@ -import { Component, OnInit, ViewChild } from '@angular/core' -import { UserRight } from '../../../../shared/models/users/user-right.enum' -import { AuthService, AuthStatus, RedirectService, ServerService, ThemeService } from '../core' -import { User } from '../shared/users/user.model' -import { LanguageChooserComponent } from '@app/menu/language-chooser.component' import { HotkeysService } from 'angular2-hotkeys' +import * as debug from 'debug' +import { forkJoin, Subscription } from 'rxjs' +import { first, switchMap } from 'rxjs/operators' +import { ViewportScroller } from '@angular/common' +import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' +import { Router } from '@angular/router' +import { + AuthService, + AuthStatus, + AuthUser, + HooksService, + MenuSection, + MenuService, + RedirectService, + ScreenService, + ServerService, + UserService +} from '@app/core' +import { scrollToTop } from '@app/helpers' +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 { HTMLServerConfig, ServerConfig, UserRight, VideoConstant } from '@shared/models' + +const debugLogger = debug('peertube:menu:MenuComponent') @Component({ selector: 'my-menu', templateUrl: './menu.component.html', styleUrls: [ './menu.component.scss' ] }) -export class MenuComponent implements OnInit { - @ViewChild('languageChooserModal') languageChooserModal: LanguageChooserComponent +export class MenuComponent implements OnInit, OnDestroy { + @ViewChild('languageChooserModal', { static: true }) languageChooserModal: LanguageChooserComponent + @ViewChild('quickSettingsModal', { static: true }) quickSettingsModal: QuickSettingsModalComponent + @ViewChild('dropdown') dropdown: NgbDropdown - user: User + user: AuthUser isLoggedIn: boolean + userHasAdminAccess = false helpVisible = false - private routesPerRight: any = { + videoLanguages: string[] = [] + nsfwPolicy: string + + currentInterfaceLanguage: string + + 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', - [UserRight.MANAGE_VIDEO_ABUSES]: '/admin/moderation/video-abuses', - [UserRight.MANAGE_VIDEO_BLACKLIST]: '/admin/moderation/video-blacklist', + [UserRight.MANAGE_ABUSES]: '/admin/moderation/abuses', + [UserRight.MANAGE_VIDEO_BLACKLIST]: '/admin/moderation/video-blocks', [UserRight.MANAGE_JOBS]: '/admin/jobs', [UserRight.MANAGE_CONFIGURATION]: '/admin/config' } + private languagesSub: Subscription + private modalSub: Subscription + private hotkeysSub: Subscription + private authSub: Subscription + constructor ( + private viewportScroller: ViewportScroller, private authService: AuthService, + private userService: UserService, private serverService: ServerService, private redirectService: RedirectService, - private themeService: ThemeService, - private hotkeysService: HotkeysService - ) {} + private hotkeysService: HotkeysService, + private screenService: ScreenService, + private menuService: MenuService, + private modalService: PeertubeModalService, + private router: Router, + private hooks: HooksService + ) { } + + get isInMobileView () { + return this.screenService.isInMobileView() + } + + get language () { + return this.languageChooserModal.getCurrentLanguage() + } + + get requiresApproval () { + return this.serverConfig.signup.requiresApproval + } ngOnInit () { + this.htmlServerConfig = this.serverService.getHTMLConfig() + this.currentInterfaceLanguage = this.languageChooserModal.getCurrentLanguage() + this.isLoggedIn = this.authService.isLoggedIn() - if (this.isLoggedIn === true) this.user = this.authService.getUser() - this.computeIsUserHasAdminAccess() - - this.authService.loginChangedSource.subscribe( - status => { - if (status === AuthStatus.LoggedIn) { - this.isLoggedIn = true - this.user = this.authService.getUser() - this.computeIsUserHasAdminAccess() - console.log('Logged in.') - } else if (status === AuthStatus.LoggedOut) { - this.isLoggedIn = false - this.user = undefined - this.computeIsUserHasAdminAccess() - console.log('Logged out.') - } else { - console.error('Unknown auth status: ' + status) - } + 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.subscribe(isOpen => { - this.helpVisible = isOpen + this.updateUserState() + this.buildMenuSections() }) + + this.hotkeysSub = this.hotkeysService.cheatSheetToggle + .subscribe(isOpen => this.helpVisible = isOpen) + + this.languagesSub = forkJoin([ + this.serverService.getVideoLanguages(), + this.authService.userInformationLoaded.pipe(first()) + ]).subscribe(([ languages ]) => { + this.languages = languages + + this.buildUserLanguages() + }) + + this.serverService.getConfig() + .subscribe(config => this.serverConfig = config) + + 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 () { - return this.serverService.getConfig().signup.allowed && - this.serverService.getConfig().signup.allowedForCurrentIP + if (!this.serverConfig) return false + + return this.serverConfig.signup.allowed && + this.serverConfig.signup.allowedForCurrentIP } getFirstAdminRightAvailable () { @@ -75,7 +153,7 @@ export class MenuComponent implements OnInit { const adminRights = [ UserRight.MANAGE_USERS, UserRight.MANAGE_SERVER_FOLLOW, - UserRight.MANAGE_VIDEO_ABUSES, + UserRight.MANAGE_ABUSES, UserRight.MANAGE_VIDEO_BLACKLIST, UserRight.MANAGE_JOBS, UserRight.MANAGE_CONFIGURATION @@ -112,13 +190,144 @@ export class MenuComponent implements OnInit { this.hotkeysService.cheatSheetToggle.next(!this.helpVisible) } - toggleDarkTheme () { - this.themeService.toggleDarkTheme() + openQuickSettings () { + this.quickSettingsModal.show() + } + + toggleUseP2P () { + if (!this.user) return + this.user.p2pEnabled = !this.user.p2pEnabled + + this.userService.updateMyProfile({ p2pEnabled: this.user.p2pEnabled }) + .subscribe(() => this.authService.refreshUserInformation()) + } + + langForLocale (localeId: string) { + if (localeId === '_unknown') return $localize`Unknown` + + return this.languages.find(lang => lang.id === localeId).label + } + + onActiveLinkScrollToAnchor (link: HTMLAnchorElement) { + const linkURL = link.getAttribute('href') + const linkHash = link.getAttribute('fragment') + + // On same url without fragment restore top scroll position + if (!linkHash && this.router.url.includes(linkURL)) { + scrollToTop('smooth') + } + + // On same url with fragment restore anchor scroll position + if (linkHash && this.router.url === linkURL) { + this.viewportScroller.scrollToAnchor(linkHash) + } + + if (this.screenService.isInSmallView()) { + this.menuService.toggleMenu() + } + } + + // Lock menu scroll when menu scroll to avoid fleeing / detached dropdown + onMenuScrollEvent () { + document.querySelector('menu').scrollTo(0, 0) + } + + onDropdownOpenChange (opened: boolean) { + if (this.screenService.isInMobileView()) return + + // Close dropdown when window scroll to avoid dropdown quick jump for re-position + const onWindowScroll = () => { + this.dropdown?.close() + window.removeEventListener('scroll', onWindowScroll) + } + + if (opened) { + window.addEventListener('scroll', onWindowScroll) + document.querySelector('menu').scrollTo(0, 0) // Reset menu scroll to easy lock + document.querySelector('menu').addEventListener('scroll', this.onMenuScrollEvent) + } else { + document.querySelector('menu').removeEventListener('scroll', this.onMenuScrollEvent) + } + } + + 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 () { + if (!this.user) { + this.videoLanguages = [] + return + } + + if (!this.user.videoLanguages) { + this.videoLanguages = [ $localize`any language` ] + return + } + + this.videoLanguages = this.user.videoLanguages + .map(locale => this.langForLocale(locale)) + .map(value => value === undefined ? '?' : value) } - private computeIsUserHasAdminAccess () { + private computeAdminAccess () { const right = this.getFirstAdminRightAvailable() this.userHasAdminAccess = right !== undefined } + + private computeVideosLink () { + if (!this.isLoggedIn) return + + this.authService.userInformationLoaded + .pipe( + switchMap(() => this.user.computeCanSeeVideosLink(this.userService.getMyVideoQuotaUsed())) + ).subscribe(res => { + if (res === true) debugLogger('User can see videos link.') + else debugLogger('User cannot see videos link.') + }) + } + + private computeNSFWPolicy () { + if (!this.user) { + this.nsfwPolicy = null + return + } + + switch (this.user.nsfwPolicy) { + case 'do_not_list': + this.nsfwPolicy = $localize`hide` + break + + case 'blur': + this.nsfwPolicy = $localize`blur` + break + + case 'display': + this.nsfwPolicy = $localize`display` + break + } + } + + private updateUserState () { + this.user = this.isLoggedIn + ? this.authService.getUser() + : undefined + + this.computeAdminAccess() + this.computeNSFWPolicy() + this.computeVideosLink() + } }