/* * Copyright (C) 2015 "IoT.bzh" * Author "Fulup Ar Foll" * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * * Bugs: Input with Callback SHOULD BE get 'required' class */ (function () { 'use strict'; var tmplAppli = '
' + '' + '{{label}}' + '
'; var tmplModal = '×' + '' + 'Application {{label}}' + '' + ''; var tmplDetail = '×' + '' + 'Application {{label}}' + '' + ''; angular.module('AppliButton', []) .directive('appliButton', function (AppConfig, AppCall, ModalFactory, Notification, $timeout, $window, $location) { function mymethods(scope, elem, attrs) { scope.runstatus = "stop"; scope.clicked = function () { var notifyError = function(action, response) { Notification.error ({message: "Fail /api/afm-main" + action + "=" + scope.label + " RunID="+ scope.appID, delay: 5000}); elem.addClass ("fail"); elem.removeClass ("success"); scope.callback (scope.appID, action, response); }; var notifySuccess = function (action, response) { elem.removeClass ("fail"); scope.runID = response.data.response.runid; scope.callback (scope.appID, action, response); }; var closeModal = function() { console.log ("Modal Closing"); scope.modal.deactivate(); $timeout (function() {scope.modal.destroy();}, 1000); }; var actionModal = function(action) { console.log ("Modal Action=%s", action); switch (action) { case "start": if (scope.runstatus !== "stop") return; AppCall.get ("afm-main", "start", {id: scope.appID, mode: "remote"}, function(response) { if (response.status !== 200 || response.data.jtype !== "AJB_reply") { notifyError ("start", response); return; } scope.runstatus="start"; notifySuccess (action, response); if(response.data.response.uri) $window.open(response.data.response.uri.replace("%h", $location.host())); }); break; case "stop": if (scope.runstatus !== "start") return; AppCall.get ("afm-main", "terminate", {runid: scope.runID}, function(response) { if (response.status !== 200 || response.data.jtype !== "AJB_reply") { notifyError ("stop", response); return; } scope.runstatus="stop"; notifySuccess (action, response); }); break; case "info": AppCall.get ("afm-main", "detail", {id: scope.appID}, function(response) { if (response.status !== 200 || response.data.jtype !== "AJB_reply") { notifyError ("detail", response); return; } // reference http://foundation.zurb.com/apps/docs/#!/angular-modules var config = { id: 'appliInfoMenu', animationIn: 'slideInFromTop', contentScope: { close : closeModal, icon : scope.icon, label : scope.appID, detail : response.data.response }, template : tmplDetail }; // Popup Modal to render application data scope.modal = new ModalFactory(config); scope.modal.activate (); }); break; case "uninstall": if (scope.runstatus !== "stop") return; AppCall.get ("afm-main", "uninstall", {id: scope.appID}, function(response) { if (response.status !== 200 || response.data.jtype !== "AJB_reply") { notifyError ("uninstall", response); return; } notifySuccess (action, response); }); break; default: console.log ("ActionModal unknown action=[%s]", action); break; } closeModal(); }; // reference http://foundation.zurb.com/apps/docs/#!/angular-modules var config = { id: 'appliActionMenu', animationIn: 'slideInFromTop', contentScope: { action : actionModal, runstatus: scope.runstatus, close : closeModal, icon : scope.icon, label : scope.label }, template : tmplModal }; // Popup Modal to render application data scope.modal = new ModalFactory(config); scope.modal.activate (); }; // extract application information from AppID+Store if (attrs.handle && scope.store [attrs.handle].name) { scope.icon = AppConfig.paths.icons + attrs.handle; //scope.store [attrs.handle].name.toLowerCase() + '-ico.png'; scope.label = scope.store [attrs.handle].name; scope.appID= attrs.handle; } else { scope.icon = AppConfig.paths.icons + 'w3c-ico.png'; scope.label = attrs.handle; } // add label as class elem.addClass (scope.label.toLowerCase()); // note: clicked in imported and when template is clicked // it will call clicked method passed in param. } return { restrict: 'E', template: tmplAppli, link: mymethods, scope: {callback: '=', store: '='} }; }); })();