summaryrefslogtreecommitdiff
path: root/client/js
diff options
context:
space:
mode:
Diffstat (limited to 'client/js')
-rw-r--r--client/js/controllers/image/edit.js14
-rw-r--r--client/js/services/Image.js30
2 files changed, 39 insertions, 5 deletions
diff --git a/client/js/controllers/image/edit.js b/client/js/controllers/image/edit.js
index bab4064..14c1949 100644
--- a/client/js/controllers/image/edit.js
+++ b/client/js/controllers/image/edit.js
@@ -5,10 +5,20 @@
*/
mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', 'upload', function ($scope, Image, Loading, Identity, upload)
{
- $scope.$on('editImageEvent', function (eventName, image,axioms) {
+ $scope.$on('editImageEvent', function (eventName, image, axioms) {
$scope.image = image;
- $scope.axioms=axioms;
+ $scope.axioms = axioms;
$('#editImageModal').modal('show');
console.log(image)
});
+ $scope.data = {};
+ $scope.data.visibility = "public";
+ $scope.data.protected = false;
+
+ $scope.updateImage = function (image) {
+ image.visibility = $scope.data.visibility;
+ image.protected = $scope.data.protected;
+ Image.updateImage(image, function(){});
+
+ };
}]);
diff --git a/client/js/services/Image.js b/client/js/services/Image.js
index 190bbb6..4dc835e 100644
--- a/client/js/services/Image.js
+++ b/client/js/services/Image.js
@@ -4,9 +4,9 @@ mainApp.factory('Image', ['$http', 'Identity', function ($http, Identity) {
// Data object
var data = {};
data.images = null; // Images
- data.axioms={};
- data.axioms.protected=[true,false];
- data.axioms.visibility=["public", "private"];
+ data.axioms = {};
+ data.axioms.protected = [true, false];
+ data.axioms.visibility = ["public", "private"];
/**
* Parse uploadImage anwser
* @param {type} response
@@ -56,6 +56,29 @@ mainApp.factory('Image', ['$http', 'Identity', function ($http, Identity) {
};
/**
+ * Update image
+ * @param {type} image
+ * @param {type} callback
+ * @returns {undefined}
+ */
+ var updateImage = function (image, callback) {
+
+ var result = $http.post('../server/index.php',
+ $.param({"token": Identity.getToken(), "task": "image", 'action': 'updateImage', 'id': image.id, 'opt': image}));
+
+ // Wait and handle the response
+ result.then(function (response) {
+ callback();
+ }, function (response) {
+ alert(response)
+ });
+
+
+ };
+
+
+
+ /**
* Upload an image
* @param {type} fileToUpload
* @param {type} callback
@@ -108,6 +131,7 @@ mainApp.factory('Image', ['$http', 'Identity', function ($http, Identity) {
// Return services objects
return {
getImages: getImages,
+ updateImage: updateImage,
getData: getData,
uploadImage: uploadImage
};