1
|
import {Component, OnInit} from '@angular/core';
|
2
|
import {MenuItem} from '../models/menu-item.model';
|
3
|
import {Location, LocationStrategy, PathLocationStrategy} from '@angular/common';
|
4
|
import {MenuService} from '../services/util/menu.service';
|
5
|
|
6
|
@Component({
|
7
|
selector: 'app-menu',
|
8
|
templateUrl: './menu.component.html',
|
9
|
styleUrls: ['./menu.component.sass'],
|
10
|
providers: [Location, {provide: LocationStrategy, useClass: PathLocationStrategy}]
|
11
|
})
|
12
|
export class MenuComponent implements OnInit {
|
13
|
_menuItems: MenuItem[];
|
14
|
private _selectedMenuItem: MenuItem;
|
15
|
|
16
|
constructor(private location: Location, private menuService: MenuService) {
|
17
|
}
|
18
|
|
19
|
ngOnInit() {
|
20
|
this.menuService.getMenuItems()
|
21
|
.subscribe((data: MenuItem[]) => {
|
22
|
this._menuItems = data;
|
23
|
this._selectedMenuItem = this._menuItems[0];
|
24
|
const path = this.location.path().split('/');
|
25
|
const endOfPath = path[path.length - 1];
|
26
|
|
27
|
this.setCorrectItemMenu(endOfPath);
|
28
|
});
|
29
|
}
|
30
|
|
31
|
onSelect(menuItem: MenuItem): void {
|
32
|
this.menuService.getMenuItems(true)
|
33
|
.subscribe((menuItems: MenuItem[]) => {
|
34
|
this._menuItems = menuItems;
|
35
|
this.setCorrectItemMenu(menuItem.routePath);
|
36
|
});
|
37
|
}
|
38
|
|
39
|
private setCorrectItemMenu(routePath: string) {
|
40
|
for (const item of this._menuItems) {
|
41
|
if (item.routePath === routePath) {
|
42
|
this._selectedMenuItem = item;
|
43
|
}
|
44
|
}
|
45
|
}
|
46
|
}
|