2016-07-08 18:03:48 +03:00
|
|
|
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;
|
2016-07-11 11:09:35 +03:00
|
|
|
public outOfArea:number = -200;
|
2016-07-08 18:03:48 +03:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|