blob: 085278877775baeffc8df8d25420989768b06ee6 [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 SubRegion Module.
19 Module that holds the sub-regions for a region
20 */
21
22(function () {
23 'use strict';
24
Steven Burrows9edc7e02016-08-29 11:52:07 +010025 var Collection, Model;
Steven Burrows6deb4ce2016-08-26 16:06:23 +010026
27 var remappedDeviceTypes = {
28 virtual: 'cord'
29 };
30
Steven Burrows57e24e92016-08-04 18:38:24 +010031 function createSubRegionCollection(data, region) {
32
33 var SubRegionCollection = Collection.extend({
Steven Burrowsaf96a212016-12-28 12:57:02 +000034 model: Model,
35 region: region
Steven Burrows57e24e92016-08-04 18:38:24 +010036 });
37
38 return new SubRegionCollection(data);
39 }
40
41 angular.module('ovTopo2')
Steven Burrowsaf96a212016-12-28 12:57:02 +000042 .factory('Topo2SubRegionService', [
43 'WebSocketService', 'Topo2Collection', 'Topo2NodeModel',
44 'Topo2SubRegionPanelService',
Steven Burrows57e24e92016-08-04 18:38:24 +010045
Steven Burrowsaf96a212016-12-28 12:57:02 +000046 function (wss, _c_, NodeModel, t2srp) {
Steven Burrows57e24e92016-08-04 18:38:24 +010047
Steven Burrowsaf96a212016-12-28 12:57:02 +000048 Collection = _c_;
Steven Burrows6deb4ce2016-08-26 16:06:23 +010049
Steven Burrowsaf96a212016-12-28 12:57:02 +000050 Model = NodeModel.extend({
51 initialize: function () {
52 this.super = this.constructor.__super__;
53 this.super.initialize.apply(this, arguments);
54 },
55 events: {
56 'dblclick': 'navigateToRegion',
57 'click': 'onClick'
58 },
59 onChange: function () {
60 // Update class names when the model changes
61 if (this.el) {
62 this.el.attr('class', this.svgClassName());
Steven Burrowsbbe3dda2016-09-26 14:41:59 -070063 }
Steven Burrowsaf96a212016-12-28 12:57:02 +000064 },
65 nodeType: 'sub-region',
66 icon: function () {
67 var type = this.get('type');
68 return remappedDeviceTypes[type] || type || 'm_cloud';
69 },
70 onClick: function () {
71 var selected = this.select(d3.event);
Steven Burrows57e24e92016-08-04 18:38:24 +010072
Steven Burrowsaf96a212016-12-28 12:57:02 +000073 if (selected.length > 0) {
74 t2srp.displayPanel(this);
75 } else {
76 t2srp.hide();
77 }
78 },
79 navigateToRegion: function () {
80
81 if (d3.event.defaultPrevented) return;
82
83 wss.sendEvent('topo2navRegion', {
84 dir: 'down',
85 rid: this.get('id')
86 });
87
88 var layout = this.collection.region.layout;
89 layout.createForceElements();
90 layout.transitionDownRegion();
91
92 t2srp.hide();
93 }
94 });
95
96 return {
97 createSubRegionCollection: createSubRegionCollection
98 };
99 }
100 ]);
Steven Burrows57e24e92016-08-04 18:38:24 +0100101
102})();