Update JSON API
[src/app-framework-demo.git] / afm-client / app / Frontend / pages / Dashboard / DashboardModule.js
index c075372..f4330cf 100644 (file)
@@ -15,11 +15,7 @@ angular.module('DashboardModule', ['SubmitButton', 'TokenRefresh', 'AppliButton'
         scope.appliIDs =[]; // array to hold applications ID
         scope.appliStore={}; // array to hold applications json description
 
-        scope.AppliCB = function (appliID) {
-            console.log ("Application Clicked ID=[%s]", appliID);
-            
-        };
-        
+       
         scope.AppliCB = function(appliID, action, response) {
                 // Action is done within Widget Controller only update debug UI zone
                 scope.request  = action; 
@@ -50,17 +46,24 @@ angular.module('DashboardModule', ['SubmitButton', 'TokenRefresh', 'AppliButton'
                 
                 // loop on runnable application to prepare for display
                 var  appliIDs=[];
-                for (var idx=0; idx < response.data.response.length; idx ++) {
-                    appliIDs[idx] = response.data.response [idx].id;
-                    scope.appliStore [response.data.response [idx].id] =  response.data.response [idx];
+                var  runnables = response.data.response.runnables;
+                for (var idx=0; idx < runnables.length; idx ++) {
+                    appliIDs[idx] = runnables [idx].id;
+                    scope.appliStore [runnables [idx].id] =  runnables [idx];
                 }
                 scope.appliIDs = appliIDs; // avoid partial update to limit UI refresh
                 
             });            
         };
         
-        scope.FileUploaded = function (status) {
+        scope.FileUploaded = function (response) {
             console.log ("file Uploaded");
+            // Cannot display post results as GetRunnable will overload them aynchronously
+            scope.request  = "/api/afm-main/install"; 
+            scope.response = response.headers;
+            scope.errcode  = response.status;
+            
+            // everything looks OK update app list
             scope.GetRunnables();
         };