mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-15 12:38:06 +01:00
71 lines
2 KiB
TypeScript
71 lines
2 KiB
TypeScript
|
|
import {Component, ViewEncapsulation, Input, Output, EventEmitter} from '@angular/core';
|
||
|
|
import {Router, RouterConfig, NavigationEnd} from '@angular/router';
|
||
|
|
import {Subscription} from 'rxjs/Rx';
|
||
|
|
|
||
|
|
import {BaSlimScroll} from '../../../theme/directives';
|
||
|
|
import {BaMenuService} from './baMenu.service';
|
||
|
|
import {BaMenuItem} from './components/baMenuItem';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'ba-menu',
|
||
|
|
encapsulation: ViewEncapsulation.None,
|
||
|
|
styles: [require('./baMenu.scss')],
|
||
|
|
template: require('./baMenu.html'),
|
||
|
|
providers: [BaMenuService],
|
||
|
|
directives: [BaMenuItem, BaSlimScroll]
|
||
|
|
})
|
||
|
|
export class BaMenu {
|
||
|
|
|
||
|
|
@Input() menuRoutes:RouterConfig = [];
|
||
|
|
@Input() sidebarCollapsed:boolean = false;
|
||
|
|
@Input() menuHeight:number;
|
||
|
|
|
||
|
|
@Output() expandMenu = new EventEmitter<any>();
|
||
|
|
|
||
|
|
public menuItems:any[];
|
||
|
|
public showHoverElem:boolean;
|
||
|
|
public hoverElemHeight:number;
|
||
|
|
public hoverElemTop:number;
|
||
|
|
protected _onRouteChange:Subscription;
|
||
|
|
|
||
|
|
constructor(private _router:Router, private _service:BaMenuService) {
|
||
|
|
|
||
|
|
this._onRouteChange = this._router.events.subscribe((event) => {
|
||
|
|
if (this.menuItems && event instanceof NavigationEnd) {
|
||
|
|
this.menuItems = this._service.selectMenuItem(this.menuItems);
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
public ngOnInit():void {
|
||
|
|
this.menuItems = this._service.convertRoutesToMenus(this.menuRoutes);
|
||
|
|
}
|
||
|
|
|
||
|
|
public ngOnDestroy():void {
|
||
|
|
this._onRouteChange.unsubscribe();
|
||
|
|
}
|
||
|
|
|
||
|
|
public hoverItem($event):void {
|
||
|
|
this.showHoverElem = true;
|
||
|
|
this.hoverElemHeight = $event.currentTarget.clientHeight;
|
||
|
|
// TODO: get rid of magic 66 constant
|
||
|
|
this.hoverElemTop = $event.currentTarget.getBoundingClientRect().top - 66;
|
||
|
|
}
|
||
|
|
|
||
|
|
public toggleSubMenu($event):boolean {
|
||
|
|
var submenu = jQuery($event.currentTarget).next();
|
||
|
|
|
||
|
|
if (this.sidebarCollapsed) {
|
||
|
|
this.expandMenu.emit(null);
|
||
|
|
if (!$event.item.expanded) {
|
||
|
|
$event.item.expanded = true;
|
||
|
|
}
|
||
|
|
} else {
|
||
|
|
$event.item.expanded = !$event.item.expanded;
|
||
|
|
submenu.slideToggle();
|
||
|
|
}
|
||
|
|
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|