Semaphore/public/js/controllers/projects/environment.js

78 lines
2.1 KiB
JavaScript
Raw Normal View History

2016-04-02 14:40:07 +02:00
define(function () {
app.registerController('ProjectEnvironmentCtrl', ['$scope', '$http', '$uibModal', 'Project', '$rootScope', function ($scope, $http, $modal, Project, $rootScope) {
$scope.reload = function () {
$http.get(Project.getURL() + '/environment?sort=name&order=asc').success(function (environment) {
$scope.environment = environment;
});
}
$scope.remove = function (environment) {
$http.delete(Project.getURL() + '/environment/' + environment.id).success(function () {
$scope.reload();
}).error(function (d) {
if (!(d && d.inUse)) {
swal('error', 'could not delete environment..', 'error');
return;
}
swal({
title: 'Environment in use',
text: d.error,
type: 'error',
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: 'Mark as removed'
}, function () {
$http.delete(Project.getURL() + '/environment/' + environment.id + '?setRemoved=1').success(function () {
$scope.reload();
}).error(function () {
swal('error', 'could not delete environment..', 'error');
});
});
});
}
$scope.add = function () {
2016-06-14 05:40:16 +02:00
var scope = $rootScope.$new();
scope.env = {
json: '{}'
};
$modal.open({
2016-06-14 05:40:16 +02:00
templateUrl: '/tpl/projects/environment/add.html',
scope: scope
}).result.then(function (env) {
2016-06-25 11:39:55 +02:00
$http.post(Project.getURL() + '/environment', env.environment)
.success(function () {
$scope.reload();
}).error(function (_, status) {
2016-10-18 17:31:24 +02:00
swal('Error', 'Environment not added: ' + status, 'error');
});
});
}
$scope.editEnvironment = function (env) {
var scope = $rootScope.$new();
2016-06-14 05:40:16 +02:00
scope.env = env;
$modal.open({
2016-06-14 05:40:16 +02:00
templateUrl: '/tpl/projects/environment/add.html',
scope: scope
}).result.then(function (opts) {
if (opts.remove) {
return $scope.remove(env);
}
$http.put(Project.getURL() + '/environment/' + env.id, opts.environment)
.success(function () {
$scope.reload();
}).error(function (_, status) {
2016-10-18 17:31:24 +02:00
swal('Error', 'Environment not updated: ' + status, 'error');
});
});
}
$scope.reload();
2016-04-02 14:40:07 +02:00
}]);
2016-06-25 11:39:55 +02:00
});