014fe4d4221dfdf70aaceb203d366762bfae6868
[src/app-framework-demo.git] / afm-client / app / Frontend / widgets / ActionButtons / AppliButton.js
1 /* 
2  * Copyright (C) 2015 "IoT.bzh"
3  * Author "Fulup Ar Foll"
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  * 
18  * Bugs: Input with Callback SHOULD BE get 'required' class
19  */
20
21 (function () {
22     'use strict';
23
24     var tmplAppli = '<div  ng-click="clicked()">' +
25             '<img ng-src="{{icon}}">' +
26             '<span>{{label}}</span>' +
27             '</div>';
28     
29     var tmplModal = 
30             '<b class="close-button" ng-click="close()">×</b>' +
31             '<img ng-src="{{icon}}">' +
32             '<span class="modal-text">Application <b>{{label}}</b></span>' +
33             '<ul class="vertical icon-left primary menu-bar">' +
34             '<li class=start-{{runstatus}}><a ng-click=action("start")><i class="fi-check"> Start</i></a></li>' +
35             '<li class=stop-{{runstatus}}><a ng-click=action("stop")><i class="fi-x"> Stop</i></a></li>' +
36             '<li><a ng-click=action("info")><i class="fi-info"> Info</i></a></li>' +
37             '<li class=start-{{runstatus}}><a ng-click=action("uninstall")><i class="fi-x"> Uninstall</i></a></li>' +
38             '</ul>' +
39             '';
40     
41     var tmplDetail = 
42             '<b class="close-button" ng-click="close()">×</b>' +
43             '<img ng-src="{{icon}}">' +
44             '<span class="modal-text">Application <b>{{label}}</b></span>' +
45             '<ul class="vertical icon-left">' +
46             '<li><i class="fi-paperclip"> Name : {{detail.name}} </i></li>' +
47             '<li><i class="fi-info"> Description {{detail.description}}</i></li>' +
48             '<li><i class="fi-torso"> Author : {{detail.author}}</i></li>' +
49             '</ul>' +
50             '';
51
52     angular.module('AppliButton', [])
53             .directive('appliButton', function (AppConfig, AppCall, ModalFactory, Notification, $timeout, $window, $location, urlquery) {
54
55                 function mymethods(scope, elem, attrs) {
56                     scope.runstatus = "stop";
57                     scope.runmode   = urlquery.runmode || "auto";
58                     scope.clicked = function () {
59
60                         var notifyError = function(action, response) {
61                             Notification.error ({message: "Fail /api/afm-main" + action + "=" + scope.label + " RunID="+ scope.appID, delay: 5000});
62                             elem.addClass ("fail");
63                             elem.removeClass ("success");
64                             scope.callback (scope.appID, action, response);
65                         };
66                         
67                         var notifySuccess = function (action, response) {
68                             elem.removeClass ("fail");
69                             scope.runID = response.data.response.runid;
70                             scope.callback (scope.appID, action, response);
71                         };
72                         
73                         var closeModal = function() {
74                             console.log ("Modal Closing");
75                             scope.modal.deactivate();
76                             $timeout (function() {scope.modal.destroy();}, 1000);
77                         };
78                         
79                         var actionModal = function(action) {
80                             console.log ("Modal Action=%s", action);
81                             switch (action) {
82                                 
83                                 case "start":
84                                     if (scope.runstatus !== "stop") return;
85                                     AppCall.get ("afm-main", "start", {id: scope.appID, mode: scope.runmode}, function(response) {
86                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
87                                             notifyError ("start", response);
88                                             return;
89                                         }
90                                         scope.runstatus="start";
91                                         notifySuccess (action, response);
92                                         if(response.data.response.uri)
93                                                 $window.open(response.data.response.uri.replace("%h", $location.host()));
94                                     });
95                                     break;
96                                     
97                                 case "stop":
98                                     if (scope.runstatus !== "start") return;
99                                     
100                                     AppCall.get ("afm-main", "terminate", {runid: scope.runID}, function(response) {
101                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
102                                             notifyError ("stop", response);
103                                             return;
104                                         }
105                                         scope.runstatus="stop";
106                                         notifySuccess (action, response);
107                                     });
108                                     break;
109                                         
110                                 case "info":
111                                     AppCall.get ("afm-main", "detail", {id: scope.appID}, function(response) {
112                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
113                                             notifyError ("detail", response);
114                                             return;
115                                         }
116                                                                                
117                                         // reference http://foundation.zurb.com/apps/docs/#!/angular-modules
118                                         var config = {
119                                             id: 'appliInfoMenu',
120                                             animationIn: 'slideInFromTop',
121                                             contentScope: {
122                                                 close   : closeModal,
123                                                 icon    : scope.icon,
124                                                 label   : scope.appID,
125                                                 detail  : response.data.response
126                                             }, template : tmplDetail
127                                         }; 
128                                         // Popup Modal to render application data
129                                         scope.modal = new ModalFactory(config);
130                                         scope.modal.activate ();
131
132                                     });
133                                     break;
134
135                                 case "uninstall":
136                                     if (scope.runstatus !== "stop") return;
137                                     AppCall.get ("afm-main", "uninstall", {id: scope.appID}, function(response) {
138                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
139                                             notifyError ("uninstall", response);
140                                             return;
141                                         }
142                                         
143                                         notifySuccess (action, response);
144                                     });
145                                     break;
146
147                                 default:
148                                     console.log ("ActionModal unknown action=[%s]", action);
149                                     break;
150                             }
151                             
152                             closeModal();
153                         };
154             
155                         // reference http://foundation.zurb.com/apps/docs/#!/angular-modules
156                         var config = {
157                             id: 'appliActionMenu',
158                             animationIn: 'slideInFromTop',
159                             contentScope: {
160                                 action   : actionModal,
161                                 runstatus: scope.runstatus,
162                                 close    : closeModal,
163                                 icon     : scope.icon,
164                                 label    : scope.label
165                             }, template  : tmplModal
166                         }; 
167                         // Popup Modal to render application data
168                         scope.modal = new ModalFactory(config);
169                         scope.modal.activate ();
170                     };
171
172                     // extract application information from AppID+Store
173                     if (attrs.handle && scope.store [attrs.handle].name) {
174                         scope.icon  = AppConfig.paths.icons + attrs.handle; //scope.store [attrs.handle].name.toLowerCase() + '-ico.png';
175                         scope.label = scope.store [attrs.handle].name;
176                         scope.appID= attrs.handle;
177                     } else {
178                          scope.icon  = AppConfig.paths.icons + 'w3c-ico.png';
179                          scope.label = attrs.handle;
180                     }
181                                 
182                     // add label as class
183                     elem.addClass (scope.label.toLowerCase());
184                     
185                     // note: clicked in imported and when template is clicked
186                     // it will call clicked method passed in param.
187                 }
188                 
189                 return {
190                     restrict: 'E',
191                     template: tmplAppli,
192                     link: mymethods,
193                     scope: {callback: '=', store: '='}
194                 };
195             });
196 })();