69e61b6fea3aac750f7b9076e9c2c006ab1c9838
[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) {
54
55                 function mymethods(scope, elem, attrs) {
56                     scope.runstatus = "stop"
57                     scope.clicked = function () {
58
59                         var notifyError = function(api, response) {
60                             Notification.error ({message: "Fail /api/afm-main" + api + "=" + scope.label + " RunID="+ scope.appID, delay: 5000});
61                             elem.addClass ("fail");
62                             elem.removeClass ("success");
63                             scope.callback (scope.appID, api, response);
64                         };
65                         
66                         var notifySuccess = function (api, response) {
67                             elem.removeClass ("fail");
68                             scope.runID = response.data.response.runid;
69                             scope.callback (scope.appID, "/api/afm-main/start", response);
70                         };
71                         
72                         var closeModal = function() {
73                             console.log ("Modal Closing");
74                             scope.modal.deactivate();
75                             $timeout (function() {scope.modal.destroy();}, 1000);
76                         };
77                         
78                         var actionModal = function(action) {
79                             console.log ("Modal Action=%s", action);
80                             switch (action) {
81                                 
82                                 case "start":
83                                     if (scope.runstatus !== "stop") return;
84                                     AppCall.get ("afm-main", "start", {id: scope.appID}, function(response) {
85                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
86                                             notifyError ("start", response);
87                                             return;
88                                         }
89                                         scope.runstatus="start";
90                                         notifySuccess ("start", response);
91                                     });
92                                     break;
93                                     
94                                 case "stop":
95                                     if (scope.runstatus !== "start") return;
96                                     
97                                     AppCall.get ("afm-main", "terminate", {runid: scope.runID}, function(response) {
98                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
99                                             notifyError ("stop", response);
100                                             return;
101                                         }
102                                         scope.runstatus="stop";
103                                         notifySuccess ("stop", response);
104                                     });
105                                     break;
106                                         
107                                 case "info":
108                                     AppCall.get ("afm-main", "detail", {id: scope.appID}, function(response) {
109                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
110                                             notifyError ("detail", response);
111                                             return;
112                                         }
113                                                                                
114                                         // reference http://foundation.zurb.com/apps/docs/#!/angular-modules
115                                         var config = {
116                                             id: 'appliInfoMenu',
117                                             animationIn: 'slideInFromTop',
118                                             contentScope: {
119                                                 close   : closeModal,
120                                                 icon    : scope.icon,
121                                                 label   : scope.appID,
122                                                 detail  : response.data.response
123                                             }, template : tmplDetail
124                                         }; 
125                                         // Popup Modal to render application data
126                                         scope.modal = new ModalFactory(config);
127                                         scope.modal.activate ();
128
129                                     });
130                                     break;
131
132                                 case "uninstall":
133                                     if (scope.runstatus !== "stop") return;
134                                     AppCall.get ("afm-main", "uninstall", {id: scope.appID}, function(response) {
135                                         if (response.status !== 200 || response.data.jtype !== "AJB_reply") {
136                                             notifyError ("uninstall", response);
137                                             return;
138                                         }
139                                         
140                                         notifySuccess ("uninstall", response);
141                                     });
142                                     break;
143
144                                 default:
145                                     console.log ("ActionModal unknown action=[%s]", action);
146                                     break;
147                             }
148                             
149                             closeModal();
150                         };
151             
152                         // reference http://foundation.zurb.com/apps/docs/#!/angular-modules
153                         var config = {
154                             id: 'appliActionMenu',
155                             animationIn: 'slideInFromTop',
156                             contentScope: {
157                                 action   : actionModal,
158                                 runstatus: scope.runstatus,
159                                 close    : closeModal,
160                                 icon     : scope.icon,
161                                 label    : scope.label
162                             }, template  : tmplModal
163                         }; 
164                         // Popup Modal to render application data
165                         scope.modal = new ModalFactory(config);
166                         scope.modal.activate ();
167                     };
168
169                     // extract application information from AppID+Store
170                     if (attrs.handle && scope.store [attrs.handle].name) {
171                         scope.icon  = AppConfig.paths.icons + attrs.handle; //scope.store [attrs.handle].name.toLowerCase() + '-ico.png';
172                         scope.label = scope.store [attrs.handle].name;
173                         scope.appID= attrs.handle;
174                     } else {
175                          scope.icon  = AppConfig.paths.icons + 'w3c-ico.png';
176                          scope.label = attrs.handle;
177                     }
178                                 
179                     // add label as class
180                     elem.addClass (scope.label.toLowerCase());
181                     
182                     // note: clicked in imported and when template is clicked
183                     // it will call clicked method passed in param.
184                 }
185                 
186                 return {
187                     restrict: 'E',
188                     template: tmplAppli,
189                     link: mymethods,
190                     scope: {callback: '=', store: '='}
191                 };
192             });
193 })();