From a481b727d9bfa98fdf24a056216d0a3cc78694f9 Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Sun, 17 Apr 2016 20:11:46 +0200 Subject: [PATCH 1/7] Begin ... --- client/partials/image/edit.html | 67 ++++++++++++++++++++++++++++++++ client/partials/image/image.html | 51 ++++++++++++------------ 2 files changed, 94 insertions(+), 24 deletions(-) create mode 100644 client/partials/image/edit.html diff --git a/client/partials/image/edit.html b/client/partials/image/edit.html new file mode 100644 index 0000000..be96051 --- /dev/null +++ b/client/partials/image/edit.html @@ -0,0 +1,67 @@ + diff --git a/client/partials/image/image.html b/client/partials/image/image.html index 886a11d..43f1855 100644 --- a/client/partials/image/image.html +++ b/client/partials/image/image.html @@ -6,33 +6,36 @@
- -
- - -
-

- - - - - - - - - - - - - - - - -
NameSizeAction
{{ image.name }}{{ (image.size / 1048576).toFixed(2) }} MB
+ +
+ + +
+

+ + + + + + + + + + + + + + + + +
NameSizeAction
{{ image.name}}{{ (image.size / 1048576).toFixed(2)}} MB + + +
+ -
From ae4e0282310b3ab3fe1d92b24b857bf56ceda09a Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Sun, 17 Apr 2016 20:43:41 +0200 Subject: [PATCH 2/7] Add functionnality --- client/index.html | 3 ++ client/js/controllers/image/edit.js | 13 ++++++ client/js/controllers/image/image.js | 7 +++- client/partials/image/edit.html | 60 ++++++++-------------------- client/partials/image/image.html | 4 +- 5 files changed, 41 insertions(+), 46 deletions(-) create mode 100644 client/js/controllers/image/edit.js diff --git a/client/index.html b/client/index.html index 45bee7f..d941857 100644 --- a/client/index.html +++ b/client/index.html @@ -24,6 +24,7 @@
+
@@ -93,6 +94,8 @@ + + diff --git a/client/js/controllers/image/edit.js b/client/js/controllers/image/edit.js new file mode 100644 index 0000000..3635e21 --- /dev/null +++ b/client/js/controllers/image/edit.js @@ -0,0 +1,13 @@ +/** + * The image controller + * + * @param {$scope} $scope The $scope service from angular + */ +mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', 'upload', function ($scope, Image, Loading, Identity, upload) + { + $scope.$on('editImageEvent', function (eventName, image) { + $scope.image = image; + $('#editImageModal').modal('show'); + console.log(image) + }); + }]); diff --git a/client/js/controllers/image/image.js b/client/js/controllers/image/image.js index d0578d7..b74dc76 100644 --- a/client/js/controllers/image/image.js +++ b/client/js/controllers/image/image.js @@ -3,7 +3,7 @@ * * @param {$scope} $scope The $scope service from angular */ -mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity', function ($scope, Image, Loading, Identity) +mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity','$rootScope', function ($scope, Image, Loading, Identity, $rootScope) { // Update view @@ -21,4 +21,9 @@ mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity', funct callMeAfterGetImage(); } } + + $scope.edit=function(image){ + $rootScope.$broadcast("editImageEvent", image); + + } }]); diff --git a/client/partials/image/edit.html b/client/partials/image/edit.html index be96051..de7b5a0 100644 --- a/client/partials/image/edit.html +++ b/client/partials/image/edit.html @@ -1,4 +1,4 @@ - diff --git a/client/partials/image/image.html b/client/partials/image/image.html index 43f1855..9c17c2f 100644 --- a/client/partials/image/image.html +++ b/client/partials/image/image.html @@ -8,7 +8,7 @@
- +

@@ -25,7 +25,7 @@ {{ image.name}} {{ (image.size / 1048576).toFixed(2)}} MB - + From 5b5f526aa0cce998657c0c4569686ba356ddb77d Mon Sep 17 00:00:00 2001 From: Loic GUEGAN Date: Mon, 18 Apr 2016 13:16:50 +0200 Subject: [PATCH 3/7] Correct bug --- client/js/controllers/image/edit.js | 3 ++- client/js/controllers/image/image.js | 2 +- client/js/services/Image.js | 4 +++- client/partials/image/edit.html | 21 +++++++++++++-------- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/client/js/controllers/image/edit.js b/client/js/controllers/image/edit.js index 3635e21..bab4064 100644 --- a/client/js/controllers/image/edit.js +++ b/client/js/controllers/image/edit.js @@ -5,8 +5,9 @@ */ mainApp.controller('editImageCtrl', ['$scope', 'Image', 'Loading', 'Identity', 'upload', function ($scope, Image, Loading, Identity, upload) { - $scope.$on('editImageEvent', function (eventName, image) { + $scope.$on('editImageEvent', function (eventName, image,axioms) { $scope.image = image; + $scope.axioms=axioms; $('#editImageModal').modal('show'); console.log(image) }); diff --git a/client/js/controllers/image/image.js b/client/js/controllers/image/image.js index b74dc76..1702cb3 100644 --- a/client/js/controllers/image/image.js +++ b/client/js/controllers/image/image.js @@ -23,7 +23,7 @@ mainApp.controller('imageCtrl', ['$scope', 'Image', 'Loading', 'Identity','$root } $scope.edit=function(image){ - $rootScope.$broadcast("editImageEvent", image); + $rootScope.$broadcast("editImageEvent", image, Image.getData().axioms); } }]); diff --git a/client/js/services/Image.js b/client/js/services/Image.js index 795f85e..190bbb6 100644 --- a/client/js/services/Image.js +++ b/client/js/services/Image.js @@ -4,7 +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"]; /** * Parse uploadImage anwser * @param {type} response diff --git a/client/partials/image/edit.html b/client/partials/image/edit.html index de7b5a0..1200bcd 100644 --- a/client/partials/image/edit.html +++ b/client/partials/image/edit.html @@ -18,15 +18,20 @@

{{ image.name}}

- -
-

{{ image.protected}}

-
- -
-

{{ image.visibility}}

-
+ +
+ + +
+
+ + +