2016-06-07 10:49:38 +02:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular
|
|
|
|
.module('harbor.system.management')
|
|
|
|
.directive('systemManagement', systemManagement);
|
2016-07-02 12:20:31 +02:00
|
|
|
|
|
|
|
SystemManagementController.$inject = ['$scope', '$location'];
|
2016-06-07 10:49:38 +02:00
|
|
|
|
2016-07-02 12:20:31 +02:00
|
|
|
function SystemManagementController($scope, $location) {
|
2016-07-02 18:22:45 +02:00
|
|
|
var vm = this;
|
|
|
|
var currentTarget = $location.path().substring(1);
|
|
|
|
|
|
|
|
switch(currentTarget) {
|
|
|
|
case 'destinations':
|
|
|
|
case 'replication':
|
|
|
|
$location.path('/' + currentTarget);
|
|
|
|
vm.target = currentTarget;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$location.path('/destinations');
|
|
|
|
vm.target = 'destinations';
|
|
|
|
}
|
|
|
|
|
2016-06-07 10:49:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function systemManagement() {
|
|
|
|
var directive = {
|
|
|
|
'restrict': 'E',
|
2016-06-16 08:10:35 +02:00
|
|
|
'templateUrl': '/static/resources/js/components/system-management/system-management.directive.html',
|
2016-06-07 10:49:38 +02:00
|
|
|
'scope': true,
|
|
|
|
'controller': SystemManagementController,
|
|
|
|
'controllerAs': 'vm',
|
|
|
|
'bindToController': true
|
|
|
|
};
|
|
|
|
return directive;
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|