istic-openstack/client/js/controllers/image/edit.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2016-04-17 20:43:41 +02:00
/**
* The image controller
*
* @param {$scope} $scope The $scope service from angular
*/
2016-05-08 15:49:21 +02:00
mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', 'upload', '$rootScope', function ($scope, Image, Loading, Identity, upload, $rootScope)
2016-04-17 20:43:41 +02:00
{
2016-04-20 09:10:02 +02:00
$scope.$on('editImageEvent', function (eventName, image, axioms) {
2016-04-17 20:43:41 +02:00
$scope.image = image;
2016-05-08 15:49:21 +02:00
$scope.data = {};
$scope.data.id = image.id;
2016-05-09 12:29:33 +02:00
if (image.protected) {
$scope.data.protected = "true";
2016-05-08 15:49:21 +02:00
2016-05-09 12:29:33 +02:00
} else {
$scope.data.protected = "false";
}
2016-05-08 15:49:21 +02:00
$scope.data.name = image.name;
$scope.data.visibility = image.visibility;
2016-04-20 09:10:02 +02:00
$scope.axioms = axioms;
2016-04-17 20:43:41 +02:00
$('#editImageModal').modal('show');
2016-05-09 22:39:49 +02:00
$("#fileupload").fileupload({
formData: {task: "image", token: Identity.getToken(), action: "uploadImage", id: $scope.data.id},
/* ... */
progressall: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('#progress .bar').css(
'width',
progress + '%'
);
}
});
2016-04-17 20:43:41 +02:00
});
2016-05-08 15:49:21 +02:00
$scope.applyEdition = function (id) {
Image.updateImage($scope.data, function () {
$rootScope.$broadcast("updateImageEvent");
$('#editImageModal').modal('hide');
});
2016-04-20 09:10:02 +02:00
};
2016-05-08 15:49:21 +02:00
$scope.getToken = function () {
2016-05-07 10:52:22 +02:00
return Identity.getToken();
}
2016-05-09 22:39:49 +02:00
2016-04-17 20:43:41 +02:00
}]);