blob: 1a906c374c1a69ec21eaae8ec7eb391470050990 [file] [log] [blame]
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Widget -- Button Service
19 */
20(function () {
21 'use strict';
22
23 var $log, fs, is;
24
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080025 var btnSize = 25;
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080026
27 function noop() {}
28
29 function createDiv(div, cls, id) {
30 return div.append('div')
31 .classed(cls, true)
32 .attr('id', id);
33 }
34
35 function button(div, id, gid, cb, tooltip) {
Bri Prebilic Colec4403322015-02-23 10:29:22 -080036 if (!div) {
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080037 $log.warn('Button cannot append to div');
38 return null;
39 }
40
41 var btnDiv = createDiv(div, 'btn', id),
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080042 cbFnc = fs.isF(cb) || noop;
43
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080044 is.loadIcon(btnDiv, gid, btnSize, true);
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080045
46 btnDiv.on('click', cbFnc);
47
48 return {
49 id: id,
50 click: cbFnc,
51 el: btnDiv
52 }
53 }
54
Bri Prebilic Cole08381ce2015-02-20 17:01:50 -080055 function toggle(div, id, gid, initState, cb, tooltip) {
Bri Prebilic Colec4403322015-02-23 10:29:22 -080056 if (!div) {
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080057 $log.warn('Toggle cannot append to div');
58 return null;
59 }
60
Bri Prebilic Cole08381ce2015-02-20 17:01:50 -080061 var sel = !!initState,
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080062 togDiv = createDiv(div, 'tog', id),
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080063 cbFnc = fs.isF(cb) || noop;
64
Bri Prebilic Cole5000a752015-02-23 17:20:53 -080065 is.loadIcon(togDiv, gid, btnSize, true);
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080066
Bri Prebilic Cole08381ce2015-02-20 17:01:50 -080067 function _toggle(b) {
68 if (b === undefined) {
69 sel = !sel;
70 } else {
71 sel = !!b;
72 }
73 cbFnc(sel);
74 }
75
76 togDiv.on('click', _toggle);
77
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080078 return {
79 id: id,
80 el: togDiv,
81 selected: function () { return sel; },
Bri Prebilic Cole08381ce2015-02-20 17:01:50 -080082 toggle: _toggle
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080083 }
84 }
85
86 function radioSet(div, id, rset) {
Bri Prebilic Colec4403322015-02-23 10:29:22 -080087 if (!div) {
Bri Prebilic Cole08381ce2015-02-20 17:01:50 -080088 $log.warn('Radio buttons cannot append to div');
89 return null;
90 }
91 if (!fs.isA(rset)) {
92 $log.warn('Radio button set is not an array');
93 return null;
94 }
95 if (rset.length === 0) {
96 $log.warn('Cannot create radio button set from empty array');
97 return null;
98 }
99 var rDiv = div.append('div').classed('rset', true),
100 sel = 0,
101 rads = [];
102
103 rset.forEach(function (btn, index) {
104 var rid = {id: id + '-' + index},
105 rbtn = angular.extend({}, btn, rid),
106 istate = (index === 0),
107 rtog = toggle(rDiv, rbtn.id, rbtn.gid, istate,
108 rbtn.cb, rbtn.tooltip);
109
110 rtog.el = (rtog.el).classed('tog', false).classed('rad', true);
111 rads.push(rtog);
112 });
113
114 return {
115 rads: rads,
116 selected: function (i) {
117 if (i === undefined) { return sel; }
118 else if (i < 0 || i >= rads.length) {
119 $log.error('Cannot select radio button of index ' + i);
120 }
121 else {
122 if (i !== sel) {
123 rads[sel].toggle(false);
124 rads[i].toggle(true);
125 sel = i;
126 }
127 }
128 }
129 }
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -0800130 }
131
132 angular.module('onosWidget')
133 .factory('ButtonService', ['$log', 'FnService', 'IconService',
134 function (_$log_, _fs_, _is_) {
135 $log = _$log_;
136 fs = _fs_;
137 is = _is_;
138
139 return {
140 button: button,
141 toggle: toggle,
142 radioSet: radioSet
143 };
144 }]);
145
146}());