]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/menu/top-menu-dropdown.component.ts
Fix videos more dropdown position/loading
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / menu / top-menu-dropdown.component.ts
CommitLineData
ddb83e49
C
1import { Component, Input, OnDestroy, OnInit } from '@angular/core'
2import { filter, take } from 'rxjs/operators'
80bfd33c 3import { NavigationEnd, Router } from '@angular/router'
ddb83e49
C
4import { Subscription } from 'rxjs'
5import { NgbDropdown } from '@ng-bootstrap/ng-bootstrap'
a55052c9 6import { GlobalIconName } from '@app/shared/images/global-icon.component'
ddb83e49
C
7
8export type TopMenuDropdownParam = {
9 label: string
10 routerLink?: string
11
12 children?: {
13 label: string
14 routerLink: string
a55052c9
C
15
16 iconName?: GlobalIconName
ddb83e49
C
17 }[]
18}
19
20@Component({
21 selector: 'my-top-menu-dropdown',
22 templateUrl: './top-menu-dropdown.component.html',
23 styleUrls: [ './top-menu-dropdown.component.scss' ]
24})
25export class TopMenuDropdownComponent implements OnInit, OnDestroy {
26 @Input() menuEntries: TopMenuDropdownParam[] = []
27
28 suffixLabels: { [ parentLabel: string ]: string }
a55052c9 29 hasIcons = false
ddb83e49
C
30
31 private openedOnHover = false
32 private routeSub: Subscription
33
34 constructor (private router: Router) {}
35
36 ngOnInit () {
37 this.updateChildLabels(window.location.pathname)
38
39 this.routeSub = this.router.events
80bfd33c 40 .pipe(filter(event => event instanceof NavigationEnd))
ddb83e49 41 .subscribe(() => this.updateChildLabels(window.location.pathname))
a55052c9
C
42
43 this.hasIcons = this.menuEntries.some(
44 e => e.children && e.children.some(c => !!c.iconName)
45 )
ddb83e49
C
46 }
47
48 ngOnDestroy () {
49 if (this.routeSub) this.routeSub.unsubscribe()
50 }
51
52 openDropdownOnHover (dropdown: NgbDropdown) {
53 this.openedOnHover = true
54 dropdown.open()
55
56 // Menu was closed
57 dropdown.openChange
58 .pipe(take(1))
a55052c9 59 .subscribe(() => this.openedOnHover = false)
ddb83e49
C
60 }
61
80bfd33c
C
62 dropdownAnchorClicked (dropdown: NgbDropdown) {
63 if (this.openedOnHover) {
64 this.openedOnHover = false
65 return
66 }
67
68 return dropdown.toggle()
69 }
70
ddb83e49
C
71 closeDropdownIfHovered (dropdown: NgbDropdown) {
72 if (this.openedOnHover === false) return
73
74 dropdown.close()
75 this.openedOnHover = false
76 }
77
78 private updateChildLabels (path: string) {
79 this.suffixLabels = {}
80
81 for (const entry of this.menuEntries) {
82 if (!entry.children) continue
83
84 for (const child of entry.children) {
85 if (path.startsWith(child.routerLink)) {
86 this.suffixLabels[entry.label] = child.label
87 }
88 }
89 }
90 }
91}