]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/menu/menu.component.ts
Use pvar() instead of SCSS variables
[github/Chocobozzz/PeerTube.git] / client / src / app / menu / menu.component.ts
CommitLineData
67ed6552 1import { HotkeysService } from 'angular2-hotkeys'
dfe3f7b7
K
2import * as debug from 'debug'
3import { switchMap } from 'rxjs/operators'
2570fd9c 4import { environment } from 'src/environments/environment'
27f4a1ec 5import { ViewportScroller } from '@angular/common'
8afc19a6 6import { Component, OnInit, ViewChild } from '@angular/core'
30d55e75 7import { Router } from '@angular/router'
2539932e
C
8import {
9 AuthService,
10 AuthStatus,
11 AuthUser,
8beea2d3
C
12 HooksService,
13 MenuSection,
2539932e
C
14 MenuService,
15 RedirectService,
16 ScreenService,
17 ServerService,
18 UserService
19} from '@app/core'
27f4a1ec 20import { scrollToTop } from '@app/helpers'
8afc19a6 21import { LanguageChooserComponent } from '@app/menu/language-chooser.component'
d3217560 22import { QuickSettingsModalComponent } from '@app/modal/quick-settings-modal.component'
43a3d281 23import { PeertubeModalService } from '@app/shared/shared-main/peertube-modal/peertube-modal.service'
27f4a1ec 24import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap'
0bc53e20 25import { PluginsManager } from '@root-helpers/plugins-manager'
2989628b 26import { HTMLServerConfig, ServerConfig, UserRight, VideoConstant } from '@shared/models'
602eb142 27
42b40636 28const debugLogger = debug('peertube:menu:MenuComponent')
dfe3f7b7 29
602eb142
C
30@Component({
31 selector: 'my-menu',
383bfc83 32 templateUrl: './menu.component.html',
9df52d66 33 styleUrls: [ './menu.component.scss' ]
602eb142
C
34})
35export class MenuComponent implements OnInit {
f36da21e 36 @ViewChild('languageChooserModal', { static: true }) languageChooserModal: LanguageChooserComponent
d3217560 37 @ViewChild('quickSettingsModal', { static: true }) quickSettingsModal: QuickSettingsModalComponent
51a83970 38 @ViewChild('dropdown') dropdown: NgbDropdown
8afc19a6 39
dfe3f7b7 40 user: AuthUser
df98563e 41 isLoggedIn: boolean
d3217560 42
954605a8 43 userHasAdminAccess = false
4a216666 44 helpVisible = false
954605a8 45
111fdc26 46 videoLanguages: string[] = []
68f6c87a
C
47 nsfwPolicy: string
48
68f6c87a 49 currentInterfaceLanguage: string
111fdc26 50
8beea2d3 51 menuSections: MenuSection[] = []
2539932e 52
111fdc26 53 private languages: VideoConstant<string>[] = []
2989628b
C
54
55 private htmlServerConfig: HTMLServerConfig
ba430d75 56 private serverConfig: ServerConfig
2989628b 57
dfe3f7b7 58 private routesPerRight: { [role in UserRight]?: string } = {
954605a8 59 [UserRight.MANAGE_USERS]: '/admin/users',
4610bc5b 60 [UserRight.MANAGE_SERVER_FOLLOW]: '/admin/friends',
d95d1559 61 [UserRight.MANAGE_ABUSES]: '/admin/moderation/abuses',
3487330d 62 [UserRight.MANAGE_VIDEO_BLACKLIST]: '/admin/moderation/video-blocks',
ad76628b
C
63 [UserRight.MANAGE_JOBS]: '/admin/jobs',
64 [UserRight.MANAGE_CONFIGURATION]: '/admin/config'
954605a8 65 }
602eb142
C
66
67 constructor (
f3081d64 68 private viewportScroller: ViewportScroller,
602eb142 69 private authService: AuthService,
d3217560 70 private userService: UserService,
db7af09b 71 private serverService: ServerService,
8c985ef5 72 private redirectService: RedirectService,
d3217560 73 private hotkeysService: HotkeysService,
30d55e75
K
74 private screenService: ScreenService,
75 private menuService: MenuService,
43a3d281 76 private modalService: PeertubeModalService,
8beea2d3
C
77 private router: Router,
78 private hooks: HooksService
27f4a1ec 79 ) { }
51a83970
K
80
81 get isInMobileView () {
82 return this.screenService.isInMobileView()
83 }
84
85 get dropdownContainer () {
27f4a1ec
C
86 if (this.isInMobileView) return null
87
88 return 'body' as 'body'
51a83970
K
89 }
90
91 get language () {
92 return this.languageChooserModal.getCurrentLanguage()
93 }
ca4b1594 94
9589907c
C
95 get requiresApproval () {
96 return this.serverConfig.signup.requiresApproval
97 }
98
df98563e 99 ngOnInit () {
2989628b 100 this.htmlServerConfig = this.serverService.getHTMLConfig()
68f6c87a
C
101 this.currentInterfaceLanguage = this.languageChooserModal.getCurrentLanguage()
102
27bc9586 103 this.isLoggedIn = this.authService.isLoggedIn()
8beea2d3
C
104 this.updateUserState()
105 this.buildMenuSections()
106
602eb142
C
107 this.authService.loginChangedSource.subscribe(
108 status => {
109 if (status === AuthStatus.LoggedIn) {
df98563e 110 this.isLoggedIn = true
602eb142 111 } else if (status === AuthStatus.LoggedOut) {
df98563e 112 this.isLoggedIn = false
602eb142 113 }
8beea2d3
C
114
115 this.updateUserState()
116 this.buildMenuSections()
602eb142 117 }
df98563e 118 )
4a216666 119
111fdc26 120 this.hotkeysService.cheatSheetToggle
dfe3f7b7 121 .subscribe(isOpen => this.helpVisible = isOpen)
111fdc26
C
122
123 this.serverService.getVideoLanguages()
dfe3f7b7
K
124 .subscribe(languages => {
125 this.languages = languages
d3217560 126
dfe3f7b7
K
127 this.authService.userInformationLoaded
128 .subscribe(() => this.buildUserLanguages())
129 })
43a3d281 130
98fb490e
C
131 this.serverService.getConfig()
132 .subscribe(config => this.serverConfig = config)
133
43a3d281 134 this.modalService.openQuickSettingsSubject
135 .subscribe(() => this.openQuickSettings())
d3217560
RK
136 }
137
0bc53e20 138 getExternalLoginHref () {
2570fd9c 139 return PluginsManager.getDefaultLoginHref(environment.apiUrl, this.serverConfig)
0bc53e20
C
140 }
141
291e8d3e 142 isRegistrationAllowed () {
2989628b
C
143 if (!this.serverConfig) return false
144
ba430d75 145 return this.serverConfig.signup.allowed &&
dfe3f7b7 146 this.serverConfig.signup.allowedForCurrentIP
a184c71b
C
147 }
148
954605a8
C
149 getFirstAdminRightAvailable () {
150 const user = this.authService.getUser()
151 if (!user) return undefined
152
153 const adminRights = [
154 UserRight.MANAGE_USERS,
4610bc5b 155 UserRight.MANAGE_SERVER_FOLLOW,
d95d1559 156 UserRight.MANAGE_ABUSES,
3487330d 157 UserRight.MANAGE_VIDEO_BLACKLIST,
ad76628b
C
158 UserRight.MANAGE_JOBS,
159 UserRight.MANAGE_CONFIGURATION
954605a8
C
160 ]
161
162 for (const adminRight of adminRights) {
163 if (user.hasRight(adminRight)) {
164 return adminRight
165 }
166 }
167
168 return undefined
169 }
170
171 getFirstAdminRouteAvailable () {
172 const right = this.getFirstAdminRightAvailable()
173
174 return this.routesPerRight[right]
602eb142
C
175 }
176
b33f657c
C
177 logout (event: Event) {
178 event.preventDefault()
179
df98563e 180 this.authService.logout()
602eb142 181 // Redirect to home page
b1d40cff 182 this.redirectService.redirectToHomepage()
602eb142 183 }
954605a8 184
8afc19a6
C
185 openLanguageChooser () {
186 this.languageChooserModal.show()
187 }
188
4a216666
RK
189 openHotkeysCheatSheet () {
190 this.hotkeysService.cheatSheetToggle.next(!this.helpVisible)
191 }
192
d3217560
RK
193 openQuickSettings () {
194 this.quickSettingsModal.show()
195 }
196
197 toggleUseP2P () {
198 if (!this.user) return
a9bfa85d 199 this.user.p2pEnabled = !this.user.p2pEnabled
111fdc26 200
a9bfa85d 201 this.userService.updateMyProfile({ p2pEnabled: this.user.p2pEnabled })
dfe3f7b7 202 .subscribe(() => this.authService.refreshUserInformation())
d3217560
RK
203 }
204
8ada87ac 205 langForLocale (localeId: string) {
66357162 206 if (localeId === '_unknown') return $localize`Unknown`
bb3933ef 207
111fdc26
C
208 return this.languages.find(lang => lang.id === localeId).label
209 }
210
f3081d64 211 onActiveLinkScrollToAnchor (link: HTMLAnchorElement) {
30d55e75
K
212 const linkURL = link.getAttribute('href')
213 const linkHash = link.getAttribute('fragment')
214
215 // On same url without fragment restore top scroll position
216 if (!linkHash && this.router.url.includes(linkURL)) {
f3081d64 217 scrollToTop('smooth')
30d55e75
K
218 }
219
220 // On same url with fragment restore anchor scroll position
221 if (linkHash && this.router.url === linkURL) {
f3081d64 222 this.viewportScroller.scrollToAnchor(linkHash)
30d55e75
K
223 }
224
225 if (this.screenService.isInSmallView()) {
226 this.menuService.toggleMenu()
227 }
228 }
229
51a83970
K
230 // Lock menu scroll when menu scroll to avoid fleeing / detached dropdown
231 onMenuScrollEvent () {
232 document.querySelector('menu').scrollTo(0, 0)
233 }
234
235 onDropdownOpenChange (opened: boolean) {
236 if (this.screenService.isInMobileView()) return
237
238 // Close dropdown when window scroll to avoid dropdown quick jump for re-position
239 const onWindowScroll = () => {
56f08761 240 this.dropdown?.close()
51a83970
K
241 window.removeEventListener('scroll', onWindowScroll)
242 }
243
244 if (opened) {
245 window.addEventListener('scroll', onWindowScroll)
246 document.querySelector('menu').scrollTo(0, 0) // Reset menu scroll to easy lock
247 document.querySelector('menu').addEventListener('scroll', this.onMenuScrollEvent)
248 } else {
249 document.querySelector('menu').removeEventListener('scroll', this.onMenuScrollEvent)
250 }
251 }
252
8beea2d3
C
253 private async buildMenuSections () {
254 const menuSections = []
255
256 if (this.isLoggedIn) {
257 menuSections.push(
258 this.menuService.buildLibraryLinks(this.user?.canSeeVideosLink)
259 )
260 }
261
262 menuSections.push(
263 this.menuService.buildCommonLinks(this.htmlServerConfig)
264 )
265
266 this.menuSections = await this.hooks.wrapObject(menuSections, 'common', 'filter:left-menu.links.create.result')
2539932e
C
267 }
268
111fdc26
C
269 private buildUserLanguages () {
270 if (!this.user) {
271 this.videoLanguages = []
272 return
273 }
274
275 if (!this.user.videoLanguages) {
8beea2d3 276 this.videoLanguages = [ $localize`any language` ]
111fdc26
C
277 return
278 }
279
280 this.videoLanguages = this.user.videoLanguages
dfe3f7b7
K
281 .map(locale => this.langForLocale(locale))
282 .map(value => value === undefined ? '?' : value)
d3217560
RK
283 }
284
dfe3f7b7 285 private computeAdminAccess () {
954605a8
C
286 const right = this.getFirstAdminRightAvailable()
287
288 this.userHasAdminAccess = right !== undefined
289 }
dfe3f7b7
K
290
291 private computeVideosLink () {
8beea2d3
C
292 if (!this.isLoggedIn) return
293
dfe3f7b7
K
294 this.authService.userInformationLoaded
295 .pipe(
296 switchMap(() => this.user.computeCanSeeVideosLink(this.userService.getMyVideoQuotaUsed()))
297 ).subscribe(res => {
42b40636
C
298 if (res === true) debugLogger('User can see videos link.')
299 else debugLogger('User cannot see videos link.')
dfe3f7b7
K
300 })
301 }
68f6c87a
C
302
303 private computeNSFWPolicy () {
304 if (!this.user) {
305 this.nsfwPolicy = null
306 return
307 }
308
309 switch (this.user.nsfwPolicy) {
310 case 'do_not_list':
311 this.nsfwPolicy = $localize`hide`
312 break
313
314 case 'blur':
315 this.nsfwPolicy = $localize`blur`
316 break
317
318 case 'display':
319 this.nsfwPolicy = $localize`display`
320 break
321 }
322 }
8beea2d3
C
323
324 private updateUserState () {
325 this.user = this.isLoggedIn
326 ? this.authService.getUser()
327 : undefined
328
329 this.computeAdminAccess()
330 this.computeNSFWPolicy()
331 this.computeVideosLink()
332 }
602eb142 333}