blob: 47e2a00db1f42840b5c5ae0d7beb2bab4f3749b5 [file] [log] [blame]
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -07001/*
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 -- Topology Toolbar Module.
Simon Hunt09060142015-03-18 20:23:32 -070019 Functions for creating and interacting with the toolbar.
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070020 */
21
22(function () {
Bri Prebilic Cole54d09382015-03-19 18:40:27 -070023 'use strict';
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070024
25 // injected references
Simon Huntc7ae7952015-04-08 18:59:27 -070026 var $log, tbs, ps, api;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070027
Simon Hunt09060142015-03-18 20:23:32 -070028 // internal state
29 var toolbar, keyData;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070030
Bri Prebilic Coled6219052015-03-19 14:34:02 -070031 // constants
Simon Huntc7ae7952015-04-08 18:59:27 -070032 var name = 'topo-tbar',
33 cooktag = 'topo_prefs';
Bri Prebilic Coled6219052015-03-19 14:34:02 -070034
Simon Hunt09060142015-03-18 20:23:32 -070035 // key to button mapping data
36 var k2b = {
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070037 O: { id: 'summary-tog', gid: 'summary', isel: true},
Simon Hunt09060142015-03-18 20:23:32 -070038 I: { id: 'instance-tog', gid: 'uiAttached', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070039 D: { id: 'details-tog', gid: 'details', isel: true },
Simon Hunt09060142015-03-18 20:23:32 -070040
41 H: { id: 'hosts-tog', gid: 'endstation', isel: false },
42 M: { id: 'offline-tog', gid: 'switch', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070043 P: { id: 'ports-tog', gid: 'ports', isel: true },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070044 B: { id: 'bkgrnd-tog', gid: 'map', isel: true },
Simon Hunt2052e5d2015-04-13 17:40:44 -070045 S: { id: 'sprite-tog', gid: 'cloud', isel: false },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070046
47 //X: { id: 'nodelock-tog', gid: 'lock', isel: false },
48 Z: { id: 'oblique-tog', gid: 'oblique', isel: false },
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -070049 N: { id: 'filters-btn', gid: 'filters' },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070050 L: { id: 'cycleLabels-btn', gid: 'cycleLabels' },
51 R: { id: 'resetZoom-btn', gid: 'resetZoom' },
52
Bri Prebilic Cole7c980512015-03-25 12:31:29 -070053 V: { id: 'relatedIntents-btn', gid: 'relatedIntents' },
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -070054 leftArrow: { id: 'prevIntent-btn', gid: 'prevIntent' },
55 rightArrow: { id: 'nextIntent-btn', gid: 'nextIntent' },
56 W: { id: 'intentTraffic-btn', gid: 'intentTraffic' },
57 A: { id: 'allTraffic-btn', gid: 'allTraffic' },
58 F: { id: 'flows-btn', gid: 'flows' },
59
60 E: { id: 'eqMaster-btn', gid: 'eqMaster' }
Simon Hunt09060142015-03-18 20:23:32 -070061 };
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070062
Simon Huntc7ae7952015-04-08 18:59:27 -070063 // initial toggle state: default settings and tag to key mapping
64 var defaultPrefsState = {
65 bg: 1,
Simon Hunt2052e5d2015-04-13 17:40:44 -070066 sprites: 0,
Simon Huntc7ae7952015-04-08 18:59:27 -070067 insts: 1,
68 summary: 1,
69 detail: 1,
70 hosts: 0
71 },
72 prefsMap = {
73 bg: 'B',
Simon Hunt2052e5d2015-04-13 17:40:44 -070074 sprites: 'S',
Simon Huntc7ae7952015-04-08 18:59:27 -070075 insts: 'I',
76 summary: 'O',
77 details: 'D',
78 hosts: 'H'
79 };
80
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070081 function init(_api_) {
82 api = _api_;
Simon Huntc7ae7952015-04-08 18:59:27 -070083
84 // retrieve initial toggle button settings from user prefs
85 setInitToggleState();
86 }
87
88 function topoDefPrefs() {
89 return angular.extend({}, defaultPrefsState);
90 }
91
92 function setInitToggleState() {
93 var state = ps.getPrefs(cooktag);
94 $log.debug('TOOLBAR---- read prefs state:', state);
95
96 if (!state) {
97 state = topoDefPrefs();
98 ps.setPrefs(cooktag, state);
99 $log.debug('TOOLBAR---- Set default prefs state:', state);
100 }
101
102 angular.forEach(prefsMap, function (v, k) {
103 k2b[v].isel = !!state[k];
104 });
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700105 }
106
Simon Hunt09060142015-03-18 20:23:32 -0700107 function initKeyData() {
108 keyData = d3.map(k2b);
109 keyData.forEach(function(key, value) {
110 var data = api.getActionEntry(key);
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700111 value.cb = data[0]; // on-click callback
112 value.tt = data[1] + ' (' + key + ')'; // tooltip
Simon Hunt09060142015-03-18 20:23:32 -0700113 });
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700114 }
115
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700116 function addButton(key) {
117 var v = keyData.get(key);
118 v.btn = toolbar.addButton(v.id, v.gid, v.cb, v.tt);
119 }
Simon Hunt09060142015-03-18 20:23:32 -0700120 function addToggle(key) {
121 var v = keyData.get(key);
122 v.tog = toolbar.addToggle(v.id, v.gid, v.isel, v.cb, v.tt);
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700123 }
124
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700125 function addFirstRow() {
Simon Hunt09060142015-03-18 20:23:32 -0700126 addToggle('I');
Simon Huntda2f3cc2015-03-19 15:11:57 -0700127 addToggle('O');
Simon Hunt09060142015-03-18 20:23:32 -0700128 addToggle('D');
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700129 toolbar.addSeparator();
130
Simon Hunt09060142015-03-18 20:23:32 -0700131 addToggle('H');
132 addToggle('M');
133 addToggle('P');
134 addToggle('B');
Simon Hunt2052e5d2015-04-13 17:40:44 -0700135 addToggle('S');
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700136 }
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700137 function addSecondRow() {
Bri Prebilic Cole7c980512015-03-25 12:31:29 -0700138 //addToggle('X');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700139 addToggle('Z');
Bri Prebilic Coleb5f2b152015-04-07 14:58:09 -0700140 addButton('N');
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700141 addButton('L');
142 addButton('R');
143 }
144 function addThirdRow() {
145 addButton('V');
146 addButton('leftArrow');
147 addButton('rightArrow');
148 addButton('W');
149 addButton('A');
150 addButton('F');
151 toolbar.addSeparator();
152 addButton('E');
153 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700154
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700155 function createToolbar() {
Simon Hunt09060142015-03-18 20:23:32 -0700156 initKeyData();
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700157 toolbar = tbs.createToolbar(name);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700158 addFirstRow();
Bri Prebilic Cole812f6c02015-03-24 17:10:33 -0700159 toolbar.addRow();
160 addSecondRow();
161 toolbar.addRow();
162 addThirdRow();
Bri Prebilic Cole04b41402015-03-18 17:25:34 -0700163 toolbar.show();
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700164 }
165
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700166 function destroyToolbar() {
167 tbs.destroyToolbar(name);
168 }
169
Simon Hunt09060142015-03-18 20:23:32 -0700170 // allows us to ensure the button states track key strokes
171 function keyListener(key) {
172 var v = keyData.get(key);
173
174 if (v) {
175 // we have a valid button mapping
176 if (v.tog) {
177 // it's a toggle button
178 v.tog.toggleNoCb();
179 }
180 }
181 }
182
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700183 function toggleToolbar() {
184 toolbar.toggle();
185 }
186
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700187 angular.module('ovTopo')
Simon Huntc7ae7952015-04-08 18:59:27 -0700188 .factory('TopoToolbarService',
189 ['$log', 'ToolbarService', 'PrefsService',
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700190
Simon Huntc7ae7952015-04-08 18:59:27 -0700191 function (_$log_, _tbs_, _ps_) {
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700192 $log = _$log_;
193 tbs = _tbs_;
Simon Huntc7ae7952015-04-08 18:59:27 -0700194 ps = _ps_;
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700195
196 return {
197 init: init,
Simon Hunt09060142015-03-18 20:23:32 -0700198 createToolbar: createToolbar,
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700199 destroyToolbar: destroyToolbar,
Simon Hunt90dcc3e2015-03-25 15:01:27 -0700200 keyListener: keyListener,
201 toggleToolbar: toggleToolbar
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700202 };
203 }]);
204}());