blob: a1e912ce38c688d872457e1ed85cd39763c52851 [file] [log] [blame]
Iftekharul Islam99d199f2017-03-24 15:28:25 -05001window.angular && (function (angular) {
2 'use strict';
3
4 angular
5 .module('app.common.directives')
6 .directive('appNavigation', function () {
7 return {
8 'restrict': 'E',
9 'templateUrl': 'common/directives/app-navigation.html',
10 'scope': {
11 'path': '=',
12 'showNavigation': '='
13 },
Iftekharul Islamcd789502017-04-19 14:37:55 -050014 'controller': ['$scope', '$location', 'dataService', function($scope, $location, dataService){
15 $scope.change = function(firstLevel){
16 $scope.firstLevel = firstLevel;
Michael Davis272297b2017-04-24 12:11:53 -050017 //$location.path('/'+firstLevel);
18 };
19 $scope.closeSubnav = function(){
20 $scope.firstLevel = '';
21 };
Iftekharul Islam99d199f2017-03-24 15:28:25 -050022 $scope.$watch('showNavigation', function(){
23 var paddingTop = 0;
Michael Davis272297b2017-04-24 12:11:53 -050024 // var urlRoot = $location.path().split("/")[1];
25 // if(urlRoot != ""){
26 // $scope.firstLevel = urlRoot;
27 // }else{
28 // $scope.firstLevel = 'overview';
29 // }
Iftekharul Islamcd789502017-04-19 14:37:55 -050030
Iftekharul Islam99d199f2017-03-24 15:28:25 -050031 if($scope.showNavigation){
32 paddingTop = document.getElementById('header__wrapper').offsetHeight;
33 }
34 dataService.bodyStyle = {'padding-top': paddingTop + 'px'};
35 $scope.navStyle = {'top': paddingTop + 'px'};
36 });
37 }]
38 };
39 });
40})(window.angular);