harbor/static/resources/js/components/user/list-user.directive.js

110 lines
3.1 KiB
JavaScript
Raw Normal View History

/*
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
(function() {
'use strict';
angular
.module('harbor.user')
.directive('listUser', listUser);
2016-07-02 12:20:31 +02:00
ListUserController.$inject = ['$scope', 'ListUserService', 'DeleteUserService', '$filter', 'trFilter'];
2016-07-02 12:20:31 +02:00
function ListUserController($scope, ListUserService, DeleteUserService, $filter, $trFilter) {
2016-06-26 06:56:58 +02:00
$scope.subsSubPane = 226;
var vm = this;
2016-06-25 21:12:17 +02:00
vm.username = '';
vm.searchUser = searchUser;
vm.deleteUser = deleteUser;
vm.confirmToDelete = confirmToDelete;
vm.retrieve = retrieve;
vm.retrieve();
function searchUser() {
vm.retrieve();
}
function deleteUser() {
DeleteUserService(vm.selectedUserId)
.success(deleteUserSuccess)
.error(deleteUserFailed);
}
function confirmToDelete(userId, username) {
vm.selectedUserId = userId;
2016-07-02 12:20:31 +02:00
$scope.$emit('modalTitle', $filter('tr')('confirm_delete_user_title'));
$scope.$emit('modalMessage', $filter('tr')('confirm_delete_user', [username]));
2016-07-02 12:20:31 +02:00
var emitInfo = {
'confirmOnly': false,
'contentType': 'text/plain',
'action': vm.deleteUser
};
$scope.$emit('raiseInfo', emitInfo);
}
function retrieve() {
ListUserService(vm.username)
.success(listUserSuccess)
.error(listUserFailed);
}
function deleteUserSuccess(data, status) {
console.log('Successful delete user.');
vm.retrieve();
}
function deleteUserFailed(data, status) {
2016-07-02 12:20:31 +02:00
$scope.$emit('modalTitle', $filter('tr')('error'));
$scope.$emit('modalMessage', $filter('tr')('failed_to_delete_user'));
2016-07-02 12:20:31 +02:00
$scope.$emit('raiseError', true);
console.log('Failed to delete user.');
}
function listUserSuccess(data, status) {
vm.users = data;
}
function listUserFailed(data, status) {
2016-07-02 12:20:31 +02:00
$scope.$emit('modalTitle', $filter('tr')('error'));
$scope.$emit('modalMessage', $filter('tr')('failed_to_list_user'));
2016-07-02 12:20:31 +02:00
$scope.$emit('raiseError', true);
console.log('Failed to list user:' + data);
}
}
function listUser() {
var directive = {
'restrict': 'E',
'templateUrl': '/static/resources/js/components/user/list-user.directive.html',
2016-06-25 21:12:17 +02:00
'link': link,
'controller': ListUserController,
'controllerAs': 'vm',
'bindToController': true
};
return directive;
2016-06-25 21:12:17 +02:00
function link(scope, element, attrs) {
}
}
})();