2016-08-20 01:17:28 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular.module('warehost')
|
2016-09-11 18:40:03 +02:00
|
|
|
.controller('UserCtrl',function(session,config,alert,NgTableParams,$scope,$http){
|
2016-08-20 01:17:28 +02:00
|
|
|
$scope.tableParams = new NgTableParams({
|
|
|
|
sorting: { 'invited.username': 'asc' },
|
|
|
|
total: 0,
|
|
|
|
count: config.table.count
|
|
|
|
}, { dataset: [] });
|
|
|
|
alert.set({});
|
2016-08-24 23:11:57 +02:00
|
|
|
$scope.obj = {};
|
2016-08-27 02:13:16 +02:00
|
|
|
$scope.invitor = {};
|
2016-08-24 23:11:57 +02:00
|
|
|
|
2016-08-23 22:57:35 +02:00
|
|
|
function resetObj(){
|
|
|
|
$scope.obj = {};
|
|
|
|
}
|
|
|
|
function load(){
|
2016-09-11 18:40:03 +02:00
|
|
|
$http.get(config.api+'/user').then(function(res){
|
2016-08-23 22:57:35 +02:00
|
|
|
session.set(res);
|
|
|
|
$scope.tableParams.settings({dataset: angular.copy(res.data.data),total: (res.data.data).length});
|
|
|
|
});
|
2016-08-24 23:11:57 +02:00
|
|
|
}
|
|
|
|
function submitresult(res){
|
|
|
|
session.set(res);
|
|
|
|
alert.set(res);
|
|
|
|
if(res.data.data){
|
|
|
|
load();
|
|
|
|
resetObj();
|
|
|
|
$scope.isAdding = false;
|
|
|
|
}
|
2016-08-23 22:57:35 +02:00
|
|
|
}
|
|
|
|
resetObj();
|
|
|
|
load();
|
|
|
|
|
2016-08-24 23:11:57 +02:00
|
|
|
$scope.edit = function(a){
|
2016-09-11 18:40:03 +02:00
|
|
|
a.password = a.newPassword;
|
|
|
|
$http.put(config.api+'/user/'+a.ID,a).then(submitresult);
|
2016-08-24 23:11:57 +02:00
|
|
|
};
|
|
|
|
$scope.delete = function(a){
|
2016-09-11 18:40:03 +02:00
|
|
|
$http.delete(config.api+'/user/'+a.ID).then(submitresult);
|
2016-08-23 22:57:35 +02:00
|
|
|
};
|
|
|
|
$scope.add = function(){
|
2016-09-11 18:40:03 +02:00
|
|
|
$http.post(config.api+'/user',$scope.obj).then(submitresult);
|
2016-08-23 22:57:35 +02:00
|
|
|
};
|
2016-08-20 01:17:28 +02:00
|
|
|
});
|