1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-14 02:06:25 +00:00
Files
docs/docs-web/src/main/webapp/js/controller/SettingsUserEdit.js
2013-08-10 02:24:31 +02:00

67 lines
1.6 KiB
JavaScript

'use strict';
/**
* Settings user edition page controller.
*/
App.controller('SettingsUserEdit', function($scope, $dialog, $state, $stateParams, Restangular) {
/**
* Returns true if in edit mode (false in add mode).
*/
$scope.isEdit = function() {
return $stateParams.username;
};
/**
* In edit mode, load the current user.
*/
if ($scope.isEdit()) {
Restangular.one('user', $stateParams.username).get().then(function(data) {
$scope.user = data;
});
}
/**
* Update the current user.
*/
$scope.edit = function() {
var promise = null;
if ($scope.isEdit()) {
promise = Restangular
.one('user', $stateParams.username)
.post('', $scope.user);
} else {
promise = Restangular
.one('user')
.put($scope.user);
}
promise.then(function() {
$scope.loadUsers();
$state.transitionTo('settings.user');
});
};
/**
* Delete the current user.
*/
$scope.remove = function () {
var title = 'Delete user';
var msg = 'Do you really want to delete this user? All associated documents, files and tags will be deleted';
var btns = [{result:'cancel', label: 'Cancel'}, {result:'ok', label: 'OK', cssClass: 'btn-primary'}];
$dialog.messageBox(title, msg, btns)
.open()
.then(function(result) {
if (result == 'ok') {
Restangular.one('user', $stateParams.username).remove().then(function() {
$scope.loadUsers();
$state.transitionTo('settings.user');
}, function () {
$state.transitionTo('settings.user');
});
}
});
};
});