blob: 15b44bc969ee64255d849df99cd8f23b66ec1b25 [file] [log] [blame]
Simon Hunt7ac7be92015-01-06 10:47:56 -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 -- SVG -- Icon Service
Simon Hunt7ac7be92015-01-06 10:47:56 -080019 */
20(function () {
21 'use strict';
22
Simon Hunt1894d792015-02-04 17:09:20 -080023 var $log, fs, gs, sus;
Simon Hunt7f172cc2015-01-16 17:43:00 -080024
Simon Hunt97225382015-01-19 13:33:09 -080025 var vboxSize = 50,
26 cornerSize = vboxSize / 10,
27 viewBox = '0 0 ' + vboxSize + ' ' + vboxSize;
Simon Hunt7f172cc2015-01-16 17:43:00 -080028
Simon Huntac4c6f72015-02-03 19:50:53 -080029 // Maps icon ID to the glyph ID it uses.
30 // NOTE: icon ID maps to a CSS class for styling that icon
Simon Hunt7f172cc2015-01-16 17:43:00 -080031 var glyphMapping = {
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070032 active: 'checkMark',
33 inactive: 'xMark',
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070034
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070035 plus: 'plus',
36 minus: 'minus',
37 play: 'play',
38 stop: 'stop',
39
Bri Prebilic Cole43f17c02015-05-01 10:43:38 -070040 refresh: 'refresh',
Bri Prebilic Colebd0bc772015-05-13 13:02:26 -070041 garbage: 'garbage',
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -070042
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070043 upArrow: 'triangleUp',
44 downArrow: 'triangleDown',
45
Bri Prebilic Cole6e1b4a52015-08-03 17:10:44 -070046 loading: 'loading',
47
Bri Prebilic Coleab582b82015-04-14 15:08:22 -070048 appInactive: 'unknown',
49
Bri Prebilic Coledea09742015-02-12 15:33:50 -080050 devIcon_SWITCH: 'switch',
Thomas Vachuska58eded62015-03-31 12:04:03 -070051 devIcon_ROADM: 'roadm',
Bri Prebilic Cole9b1fb9a2015-07-01 13:57:11 -070052 flowTable: 'flowTable',
53 portTable: 'portTable',
54 groupTable: 'groupTable',
Thomas Vachuska58eded62015-03-31 12:04:03 -070055
56 hostIcon_endstation: 'endstation',
57 hostIcon_router: 'router',
Simon Hunt20e16792015-04-24 14:29:39 -070058 hostIcon_bgpSpeaker: 'bgpSpeaker',
59
60 nav_apps: 'bird',
Thomas Vachuskaaa8b0eb2015-05-22 09:54:15 -070061 nav_settings: 'chain',
Simon Hunt20e16792015-04-24 14:29:39 -070062 nav_cluster: 'node',
Bri Prebilic Cole6ed04eb2015-04-27 16:26:03 -070063 nav_topo: 'topo',
Simon Hunt20e16792015-04-24 14:29:39 -070064 nav_devs: 'switch',
65 nav_links: 'ports',
66 nav_hosts: 'endstation',
Thomas Vachuska3ece3732015-09-22 23:58:50 -070067 nav_intents: 'relatedIntents',
68 nav_processors: 'allTraffic'
Simon Huntac4c6f72015-02-03 19:50:53 -080069 };
70
Simon Hunt97225382015-01-19 13:33:09 -080071 function ensureIconLibDefs() {
72 var body = d3.select('body'),
73 svg = body.select('svg#IconLibDefs'),
74 defs;
75
76 if (svg.empty()) {
77 svg = body.append('svg').attr('id', 'IconLibDefs');
78 defs = svg.append('defs');
79 }
80 return svg.select('defs');
81 }
82
Simon Huntac4c6f72015-02-03 19:50:53 -080083 // div is a D3 selection of the <DIV> element into which icon should load
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080084 // glyphId identifies the glyph to use
Simon Huntac4c6f72015-02-03 19:50:53 -080085 // size is dimension of icon in pixels. Defaults to 20.
86 // installGlyph, if truthy, will cause the glyph to be added to
87 // well-known defs element. Defaults to false.
88 // svgClass is the CSS class used to identify the SVG layer.
89 // Defaults to 'embeddedIcon'.
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080090 function loadIcon(div, glyphId, size, installGlyph, svgClass) {
Simon Huntac4c6f72015-02-03 19:50:53 -080091 var dim = size || 20,
92 svgCls = svgClass || 'embeddedIcon',
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -080093 gid = glyphId || 'unknown',
Simon Huntac4c6f72015-02-03 19:50:53 -080094 svg, g;
95
96 if (installGlyph) {
97 gs.loadDefs(ensureIconLibDefs(), [gid], true);
98 }
99
100 svg = div.append('svg').attr({
101 'class': svgCls,
102 width: dim,
103 height: dim,
104 viewBox: viewBox
105 });
106
107 g = svg.append('g').attr({
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -0800108 'class': 'icon'
Simon Huntac4c6f72015-02-03 19:50:53 -0800109 });
110
111 g.append('rect').attr({
112 width: vboxSize,
113 height: vboxSize,
114 rx: cornerSize
115 });
116
Bri Prebilic Colee1bda3f2015-02-13 17:01:49 -0800117 g.append('use').attr({
118 width: vboxSize,
119 height: vboxSize,
120 'class': 'glyph',
121 'xlink:href': '#' + gid
122 });
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -0800123 }
124
125 // div is a D3 selection of the <DIV> element into which icon should load
126 // iconCls is the CSS class used to identify the icon
127 // size is dimension of icon in pixels. Defaults to 20.
128 // installGlyph, if truthy, will cause the glyph to be added to
129 // well-known defs element. Defaults to false.
130 // svgClass is the CSS class used to identify the SVG layer.
131 // Defaults to 'embeddedIcon'.
132 function loadIconByClass(div, iconCls, size, installGlyph, svgClass) {
133 loadIcon(div, glyphMapping[iconCls], size, installGlyph, svgClass);
134 div.select('svg g').classed(iconCls, true);
135 }
Simon Huntac4c6f72015-02-03 19:50:53 -0800136
137 function loadEmbeddedIcon(div, iconCls, size) {
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -0800138 loadIconByClass(div, iconCls, size, true);
Simon Huntac4c6f72015-02-03 19:50:53 -0800139 }
140
141
142 // configuration for device and host icons in the topology view
143 var config = {
144 device: {
145 dim: 36,
146 rx: 4
147 },
148 host: {
149 radius: {
150 noGlyph: 9,
151 withGlyph: 14
152 },
153 glyphed: {
154 endstation: 1,
155 bgpSpeaker: 1,
156 router: 1
157 }
158 }
159 };
160
161
162 // Adds a device icon to the specified element, using the given glyph.
163 // Returns the D3 selection of the icon.
164 function addDeviceIcon(elem, glyphId) {
165 var cfg = config.device,
Simon Hunt044f28072015-10-08 12:38:16 -0700166 gid = gs.glyphDefined(glyphId) ? glyphId : 'query',
Simon Huntac4c6f72015-02-03 19:50:53 -0800167 g = elem.append('g')
168 .attr('class', 'svgIcon deviceIcon');
169
170 g.append('rect').attr({
171 x: 0,
172 y: 0,
173 rx: cfg.rx,
174 width: cfg.dim,
175 height: cfg.dim
176 });
177
178 g.append('use').attr({
Simon Hunt044f28072015-10-08 12:38:16 -0700179 'xlink:href': '#' + gid,
Simon Huntac4c6f72015-02-03 19:50:53 -0800180 width: cfg.dim,
181 height: cfg.dim
182 });
183
184 g.dim = cfg.dim;
185 return g;
186 }
187
Simon Hunt1894d792015-02-04 17:09:20 -0800188 function addHostIcon(elem, radius, glyphId) {
189 var dim = radius * 1.5,
190 xlate = -dim / 2,
191 g = elem.append('g')
192 .attr('class', 'svgIcon hostIcon');
193
194 g.append('circle').attr('r', radius);
195
196 g.append('use').attr({
197 'xlink:href': '#' + glyphId,
198 width: dim,
199 height: dim,
200 transform: sus.translate(xlate,xlate)
201 });
202 return g;
Simon Huntac4c6f72015-02-03 19:50:53 -0800203 }
204
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -0700205 function sortIcons() {
Simon Hunt3695a622015-03-31 11:52:23 -0700206 function sortAsc(div) {
Bri Prebilic Cole1f93be22015-02-10 17:16:46 -0800207 div.style('display', 'inline-block');
Bri Prebilic Coleab582b82015-04-14 15:08:22 -0700208 loadEmbeddedIcon(div, 'upArrow', 10);
Simon Hunt3695a622015-03-31 11:52:23 -0700209 div.classed('tableColSort', true);
Bri Prebilic Cole1f93be22015-02-10 17:16:46 -0800210 }
211
212 function sortDesc(div) {
213 div.style('display', 'inline-block');
Bri Prebilic Coleab582b82015-04-14 15:08:22 -0700214 loadEmbeddedIcon(div, 'downArrow', 10);
Simon Hunt3695a622015-03-31 11:52:23 -0700215 div.classed('tableColSort', true);
Bri Prebilic Cole1f93be22015-02-10 17:16:46 -0800216 }
217
218 function sortNone(div) {
219 div.remove();
220 }
221
222 return {
223 sortAsc: sortAsc,
224 sortDesc: sortDesc,
225 sortNone: sortNone
226 };
227 }
228
Simon Huntac4c6f72015-02-03 19:50:53 -0800229
230 // =========================
231 // === DEFINE THE MODULE
232
Simon Hunt7ac7be92015-01-06 10:47:56 -0800233 angular.module('onosSvg')
Bri Prebilic Cole0c41ba22015-07-06 15:09:48 -0700234 .directive('icon', ['IconService', function (is) {
235 return {
236 restrict: 'A',
237 link: function (scope, element, attrs) {
238 attrs.$observe('iconId', function () {
239 var div = d3.select(element[0]);
240 div.selectAll('*').remove();
241 is.loadEmbeddedIcon(div, attrs.iconId, attrs.iconSize);
242 });
243 }
244 };
245 }])
246
Simon Hunt97225382015-01-19 13:33:09 -0800247 .factory('IconService', ['$log', 'FnService', 'GlyphService',
Simon Hunt1894d792015-02-04 17:09:20 -0800248 'SvgUtilService',
249
250 function (_$log_, _fs_, _gs_, _sus_) {
Simon Hunt7ac7be92015-01-06 10:47:56 -0800251 $log = _$log_;
Simon Hunt7f172cc2015-01-16 17:43:00 -0800252 fs = _fs_;
Simon Hunt97225382015-01-19 13:33:09 -0800253 gs = _gs_;
Simon Hunt1894d792015-02-04 17:09:20 -0800254 sus = _sus_;
Simon Hunt7f172cc2015-01-16 17:43:00 -0800255
Simon Hunt7ac7be92015-01-06 10:47:56 -0800256 return {
Simon Hunt97225382015-01-19 13:33:09 -0800257 loadIcon: loadIcon,
Bri Prebilic Cole40be6b22015-02-19 17:12:23 -0800258 loadIconByClass: loadIconByClass,
Simon Huntac4c6f72015-02-03 19:50:53 -0800259 loadEmbeddedIcon: loadEmbeddedIcon,
260 addDeviceIcon: addDeviceIcon,
261 addHostIcon: addHostIcon,
Bri Prebilic Cole1f93be22015-02-10 17:16:46 -0800262 iconConfig: function () { return config; },
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -0700263 sortIcons: sortIcons
Simon Hunt7ac7be92015-01-06 10:47:56 -0800264 };
265 }]);
266
267}());