blob: 06ddc0cbb833e54570a3e8e74105c4ac7d6018d5 [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 Hunt09060142015-03-18 20:23:32 -070026 var $log, tbs, 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
32 var name = 'topo-tbar';
33
Simon Hunt09060142015-03-18 20:23:32 -070034 // key to button mapping data
35 var k2b = {
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070036 O: { id: 'summary-tog', gid: 'summary', isel: true},
Simon Hunt09060142015-03-18 20:23:32 -070037 I: { id: 'instance-tog', gid: 'uiAttached', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070038 D: { id: 'details-tog', gid: 'details', isel: true },
Simon Hunt09060142015-03-18 20:23:32 -070039
40 H: { id: 'hosts-tog', gid: 'endstation', isel: false },
41 M: { id: 'offline-tog', gid: 'switch', isel: true },
Bri Prebilic Coledeca6e92015-03-19 12:03:14 -070042 P: { id: 'ports-tog', gid: 'ports', isel: true },
43 B: { id: 'bkgrnd-tog', gid: 'map', isel: true }
Simon Hunt09060142015-03-18 20:23:32 -070044 };
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070045
46 function init(_api_) {
47 api = _api_;
48 }
49
Simon Hunt09060142015-03-18 20:23:32 -070050 function initKeyData() {
51 keyData = d3.map(k2b);
52 keyData.forEach(function(key, value) {
53 var data = api.getActionEntry(key);
54 value.cb = data[0]; // on-click callback
55 value.tt = data[1]; // tooltip
56 });
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070057 }
58
Simon Hunt09060142015-03-18 20:23:32 -070059 function addToggle(key) {
60 var v = keyData.get(key);
61 v.tog = toolbar.addToggle(v.id, v.gid, v.isel, v.cb, v.tt);
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070062 }
63
Bri Prebilic Cole04b41402015-03-18 17:25:34 -070064 function addFirstRow() {
Simon Hunt09060142015-03-18 20:23:32 -070065 addToggle('I');
Simon Huntda2f3cc2015-03-19 15:11:57 -070066 addToggle('O');
Simon Hunt09060142015-03-18 20:23:32 -070067 addToggle('D');
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070068 toolbar.addSeparator();
69
Simon Hunt09060142015-03-18 20:23:32 -070070 addToggle('H');
71 addToggle('M');
72 addToggle('P');
73 addToggle('B');
Bri Prebilic Cole04b41402015-03-18 17:25:34 -070074 }
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070075
Bri Prebilic Cole04b41402015-03-18 17:25:34 -070076 function createToolbar() {
Simon Hunt09060142015-03-18 20:23:32 -070077 initKeyData();
Bri Prebilic Coled6219052015-03-19 14:34:02 -070078 toolbar = tbs.createToolbar(name);
Bri Prebilic Cole04b41402015-03-18 17:25:34 -070079 addFirstRow();
80 toolbar.show();
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -070081 }
82
Bri Prebilic Coled6219052015-03-19 14:34:02 -070083 function destroyToolbar() {
84 tbs.destroyToolbar(name);
85 }
86
Simon Hunt09060142015-03-18 20:23:32 -070087 // allows us to ensure the button states track key strokes
88 function keyListener(key) {
89 var v = keyData.get(key);
90
91 if (v) {
92 // we have a valid button mapping
93 if (v.tog) {
94 // it's a toggle button
95 v.tog.toggleNoCb();
96 }
97 }
98 }
99
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700100 angular.module('ovTopo')
101 .factory('TopoToolbarService', ['$log', 'ToolbarService',
102
103 function (_$log_, _tbs_) {
104 $log = _$log_;
105 tbs = _tbs_;
106
107 return {
108 init: init,
Simon Hunt09060142015-03-18 20:23:32 -0700109 createToolbar: createToolbar,
Bri Prebilic Coled6219052015-03-19 14:34:02 -0700110 destroyToolbar: destroyToolbar,
Simon Hunt09060142015-03-18 20:23:32 -0700111 keyListener: keyListener
Bri Prebilic Cole4db8dce2015-03-18 13:57:24 -0700112 };
113 }]);
114}());