2017-05-27 07:23:49 +00:00
|
|
|
angular.module('secret', [])
|
2017-09-21 14:00:53 +00:00
|
|
|
.controller('SecretController', ['$scope', '$transition$', '$state', 'SecretService', 'Notifications',
|
|
|
|
function ($scope, $transition$, $state, SecretService, Notifications) {
|
2017-05-27 07:23:49 +00:00
|
|
|
|
|
|
|
$scope.removeSecret = function removeSecret(secretId) {
|
|
|
|
$('#loadingViewSpinner').show();
|
|
|
|
SecretService.remove(secretId)
|
|
|
|
.then(function success(data) {
|
|
|
|
Notifications.success('Secret successfully removed');
|
|
|
|
$state.go('secrets', {});
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to remove secret');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
function initView() {
|
|
|
|
$('#loadingViewSpinner').show();
|
2017-09-21 14:00:53 +00:00
|
|
|
SecretService.secret($transition$.params().id)
|
2017-05-27 07:23:49 +00:00
|
|
|
.then(function success(data) {
|
|
|
|
$scope.secret = data;
|
|
|
|
})
|
|
|
|
.catch(function error(err) {
|
|
|
|
Notifications.error('Failure', err, 'Unable to retrieve secret details');
|
|
|
|
})
|
|
|
|
.finally(function final() {
|
|
|
|
$('#loadingViewSpinner').hide();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
initView();
|
|
|
|
}]);
|