2016-04-22 18:49:52 +02:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular
|
|
|
|
.module('harbor.project.member')
|
|
|
|
.directive('switchRole', switchRole);
|
|
|
|
|
2016-04-26 12:23:34 +02:00
|
|
|
SwitchRoleController.$inject = ['getRole', '$scope'];
|
2016-04-22 18:49:52 +02:00
|
|
|
|
2016-04-26 12:23:34 +02:00
|
|
|
function SwitchRoleController(getRole, $scope) {
|
2016-04-22 18:49:52 +02:00
|
|
|
var vm = this;
|
|
|
|
|
2016-05-04 12:42:05 +02:00
|
|
|
$scope.$watch('vm.roleName', function(current,origin) {
|
|
|
|
if(current) {
|
|
|
|
vm.currentRole = getRole({'key': 'roleName', 'value': current});
|
|
|
|
}
|
|
|
|
});
|
2016-04-22 18:49:52 +02:00
|
|
|
vm.selectRole = selectRole;
|
|
|
|
|
|
|
|
function selectRole(role) {
|
2016-04-26 12:23:34 +02:00
|
|
|
vm.currentRole = getRole({'key': 'roleName', 'value': role.roleName});
|
2016-05-04 12:42:05 +02:00
|
|
|
vm.roleName = role.roleName;
|
2016-04-22 18:49:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function switchRole() {
|
|
|
|
var directive = {
|
|
|
|
'restrict': 'E',
|
|
|
|
'templateUrl': '/static/ng/resources/js/components/project-member/switch-role.directive.html',
|
|
|
|
'scope': {
|
|
|
|
'roles': '=',
|
|
|
|
'editMode': '=',
|
|
|
|
'userId': '=',
|
2016-04-26 12:23:34 +02:00
|
|
|
'roleName': '='
|
2016-04-22 18:49:52 +02:00
|
|
|
},
|
|
|
|
'controller' : SwitchRoleController,
|
|
|
|
'controllerAs': 'vm',
|
|
|
|
'bindToController': true
|
|
|
|
};
|
|
|
|
return directive;
|
|
|
|
}
|
|
|
|
|
|
|
|
})();
|