harbor/static/ng/resources/js/layout/navigation/navigation-details.directive.js

66 lines
1.6 KiB
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.layout.navigation')
.directive('navigationDetails', navigationDetails);
NavigationDetailsController.$inject = ['$window', '$location', '$scope', 'getParameterByName'];
function NavigationDetailsController($window, $location, $scope, getParameterByName) {
var vm = this;
vm.projectId = getParameterByName('project_id', $location.absUrl());
$scope.$on('$locationChangeSuccess', function() {
vm.projectId = getParameterByName('project_id', $location.absUrl());
2016-05-01 19:46:50 +02:00
});
vm.path = $location.path();
}
function navigationDetails() {
var directive = {
restrict: 'E',
templateUrl: '/ng/navigation_detail',
link: link,
scope: {
'target': '='
},
replace: true,
controller: NavigationDetailsController,
controllerAs: 'vm',
bindToController: true
2016-05-23 12:29:17 +02:00
};
return directive;
function link(scope, element, attrs, ctrl) {
var visited = ctrl.path.substring(1);
2016-05-04 12:42:05 +02:00
if(visited.indexOf('?') >= 0) {
visited = ctrl.url.substring(1, ctrl.url.indexOf('?'));
2016-05-04 12:42:05 +02:00
}
if(visited) {
element.find('a[tag="' + visited + '"]').addClass('active');
}else{
element.find('a:first').addClass('active');
}
ctrl.target = visited;
element.find('a').on('click', click);
function click(event) {
element.find('a').removeClass('active');
$(event.target).addClass('active');
ctrl.target = $(this).attr('tag');
scope.$apply();
}
}
}
})();