blob: d978ef0001f350f343b1526fd923b2a06baf308e [file] [log] [blame]
import './nav.scss';
import {IXosNavigationService, IXosNavigationRoute} from '../services/navigation';
class NavCtrl {
static $inject = ['$state', 'NavigationService'];
public routes: IXosNavigationRoute[];
constructor(
private $state: angular.ui.IStateService,
private navigationService: IXosNavigationService
) {
// NOTE we'll need to have:
// - Base routes (defined from configuration based on BRAND)
// - Autogenerated routes (nested somewhere)
// - Service Routes (dynamically added)
this.routes = this.navigationService.query();
}
isRouteActive(route: IXosNavigationRoute) {
return this.$state.current.url === route.url ? 'active' : '';
}
}
export const xosNav: angular.IComponentOptions = {
template: require('./nav.html'),
controllerAs: 'vm',
controller: NavCtrl
};