blob: 19d55549f2719f8e63e7d495cf28d724f7f2dae9 [file] [log] [blame]
Steven Burrows57e24e92016-08-04 18:38:24 +01001/*
2 * Copyright 2016-present 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 Devices Module.
19 Module that holds the devices for a region
20 */
21
22(function () {
23 'use strict';
24
Steven Burrowsbbe3dda2016-09-26 14:41:59 -070025 var Collection, Model;
Steven Burrowsec1f45c2016-08-08 16:14:41 +010026
27 var remappedDeviceTypes = {
Steven Burrowsbbe3dda2016-09-26 14:41:59 -070028 switch: 'm_switch',
Steven Burrowsec1f45c2016-08-08 16:14:41 +010029 virtual: 'cord'
30 };
31
Steven Burrows57e24e92016-08-04 18:38:24 +010032 function createDeviceCollection(data, region) {
33
34 var DeviceCollection = Collection.extend({
Steven Burrowsaa57d932016-10-21 10:01:48 -050035 model: Model
Steven Burrows57e24e92016-08-04 18:38:24 +010036 });
37
38 var devices = [];
39 data.forEach(function (deviceLayer) {
40 deviceLayer.forEach(function (device) {
41 devices.push(device);
42 });
43 });
44
Steven Burrowsaa57d932016-10-21 10:01:48 -050045 return new DeviceCollection(devices);
Steven Burrows57e24e92016-08-04 18:38:24 +010046 }
47
48 angular.module('ovTopo2')
49 .factory('Topo2DeviceService',
Steven Burrows1c5c8612016-10-05 13:45:13 -050050 ['Topo2Collection', 'Topo2NodeModel', 'Topo2DeviceDetailsPanel',
51 function (_c_, _nm_, detailsPanel) {
Steven Burrows57e24e92016-08-04 18:38:24 +010052
Steven Burrowsdfa52b02016-09-02 13:50:43 +010053 Collection = _c_;
Steven Burrowsec1f45c2016-08-08 16:14:41 +010054
Steven Burrowsdfa52b02016-09-02 13:50:43 +010055 Model = _nm_.extend({
Steven Burrowsec1f45c2016-08-08 16:14:41 +010056 initialize: function () {
Steven Burrowsbbe3dda2016-09-26 14:41:59 -070057 this.super = this.constructor.__super__;
58 this.super.initialize.apply(this, arguments);
Steven Burrowsec1f45c2016-08-08 16:14:41 +010059 },
Steven Burrows1c5c8612016-10-05 13:45:13 -050060 events: {
61 'click': 'onClick'
62 },
Steven Burrowse2d77d62016-10-21 12:35:58 -050063 onChange: function () {
64
65 // Update class names when the model changes
66 if (this.el) {
67 this.el.attr('class', this.svgClassName());
68 }
69 },
Steven Burrowsec1f45c2016-08-08 16:14:41 +010070 nodeType: 'device',
Steven Burrowsbbe3dda2016-09-26 14:41:59 -070071 icon: function () {
72 var type = this.get('type');
73 return remappedDeviceTypes[type] || type || 'unknown';
Steven Burrowsec1f45c2016-08-08 16:14:41 +010074 },
Steven Burrows1c5c8612016-10-05 13:45:13 -050075 onClick: function () {
76
Steven Burrowsaa57d932016-10-21 10:01:48 -050077 var ev = d3.event;
Steven Burrows1c5c8612016-10-05 13:45:13 -050078
Steven Burrowsaa57d932016-10-21 10:01:48 -050079 if (ev.shiftKey) {
80 // TODO: Multi-Select Details Panel
Steven Burrowse2d77d62016-10-21 12:35:58 -050081 this.set('selected', true);
Steven Burrowsaa57d932016-10-21 10:01:48 -050082 } else {
83
Steven Burrowse2d77d62016-10-21 12:35:58 -050084 var s = Boolean(this.get('selected'));
85 // Clear all selected Items
Steven Burrowsaa57d932016-10-21 10:01:48 -050086 _.each(this.collection.models, function (m) {
87 m.set('selected', false);
Steven Burrowsaa57d932016-10-21 10:01:48 -050088 });
89
Steven Burrowse2d77d62016-10-21 12:35:58 -050090 this.set('selected', !s);
91 }
92
93 var selected = this.collection.filter(function (m) {
94 return m.get('selected');
95 });
96
97 if (_.isArray(selected) && selected.length > 0) {
98 if (selected.length === 1) {
99 var model = selected[0],
100 id = model.get('id'),
101 nodeType = model.get('nodeType');
Steven Burrowsaa57d932016-10-21 10:01:48 -0500102 detailsPanel.updateDetails(id, nodeType);
103 detailsPanel.show();
Steven Burrowse2d77d62016-10-21 12:35:58 -0500104 } else {
105 // Multi Panel
106 detailsPanel.showMulti(selected);
Steven Burrowsaa57d932016-10-21 10:01:48 -0500107 }
Steven Burrowse2d77d62016-10-21 12:35:58 -0500108 } else {
109 detailsPanel.hide();
Steven Burrowsaa57d932016-10-21 10:01:48 -0500110 }
Steven Burrows1c5c8612016-10-05 13:45:13 -0500111 },
Steven Burrowsdfa52b02016-09-02 13:50:43 +0100112 onExit: function () {
113 var node = this.el;
114 node.select('use')
115 .style('opacity', 0.5)
116 .transition()
117 .duration(800)
118 .style('opacity', 0);
119
120 node.selectAll('rect')
121 .style('stroke-fill', '#555')
122 .style('fill', '#888')
123 .style('opacity', 0.5);
Steven Burrowsec1f45c2016-08-08 16:14:41 +0100124 }
125 });
Steven Burrows57e24e92016-08-04 18:38:24 +0100126
127 return {
128 createDeviceCollection: createDeviceCollection
129 };
130 }
131 ]);
132
133})();