X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afm-client%2Fapp%2FFrontend%2Fwidgets%2FActionButtons%2FAppliButton.js;h=a17ebc9b10e9841b61174eb1260f5f3f538513a0;hp=50220dd8db97698a8ce2cc9923ca1310d0bb45ef;hb=be83a8f382cf2fea98161bfd6d51719aacbf9aa9;hpb=1a4ed39bf86b2115eb0f1387d1e988462b492776 diff --git a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js index 50220dd..a17ebc9 100644 --- a/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js +++ b/afm-client/app/Frontend/widgets/ActionButtons/AppliButton.js @@ -42,6 +42,19 @@ function mymethods(scope, elem, attrs) { scope.clicked = function () { + + var notifyError = function(api, response) { + Notification.error ({message: "Fail /api/afm-main" + api + "=" + scope.label + " RunID="+ scope.appID, delay: 5000}); + elem.addClass ("fail"); + elem.removeClass ("success"); + scope.callback (scope.appliID, api, response); + }; + + var notifySuccess = function (api, response) { + elem.removeClass ("fail"); + scope.runID = response.data.response.runid; + scope.callback (scope.appliID, "/api/afm-main/start", response); + }; var closeModal = function() { console.log ("Modal Closing"); @@ -55,33 +68,37 @@ case "start": AppCall.get ("afm-main", "start", {id: scope.appliID}, function(response) { - if (response.status !== 200) { - Notification.error ({message: "Fail to start application=" + scope.label +" ID="+ scope.appliID, delay: 5000}); - elem.addClass ("fail"); - elem.removeClass ("success"); - scope.callback (scope.appliID, "/api/afm-main/start", response); - return; - } - - // Check this is a valid response from Binder - if (response.data.request.jtype !== "AJB_reply" && response.data.request.api !== "start") { - Notification.error ({message: "Invalid Respond to /opa/afm-main/start response.data="+response.data, delay: 5000}); - elem.addClass ("fail"); - elem.removeClass ("success"); - scope.callback (scope.appliID, "/api/afm-main/start", response); + if (response.status !== 200 || response.data.request.jtype !== "AJB_reply") { + notifyError ("start", response); return; } - // Application was started - elem.addClass ("success"); - elem.removeClass ("fail"); - scope.runID = response.data.response.runid; - scope.callback (scope.appliID, "/api/afm-main/start", response); + notifySuccess ("start", response); }); break; case "stop": + AppCall.get ("afm-main", "stop", {id: scope.runID}, function(response) { + if (response.status !== 200 || response.data.request.jtype !== "AJB_reply") { + notifyError ("stop", response); + return; + } + + notifySuccess ("stop", response); + }); break; + + case "info": + AppCall.get ("afm-main", "detail", {id: scope.appID}, function(response) { + if (response.status !== 200 || response.data.request.jtype !== "AJB_reply") { + notifyError ("detail", response); + return; + } + + notifySuccess ("detail", response); + }); + break; + default: console.log ("ActionModal unknown action=[%s]", action);