blob: 567ec2ce7837bb7a91063c0380151feb8539a921 [file] [log] [blame]
Thomas Vachuska0fa583c2015-03-30 23:07:41 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska0fa583c2015-03-30 23:07:41 -07003 *
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -07004 * Licensed under the Apache License, Version 2.0 (the 'License');
Thomas Vachuska0fa583c2015-03-30 23:07:41 -07005 * 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
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -070011 * distributed under the License is distributed on an 'AS IS' BASIS,
Thomas Vachuska0fa583c2015-03-30 23:07:41 -070012 * 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 -- App View Module
19 */
20
21(function () {
22 'use strict';
23
Jian Lia54de5a2016-01-20 23:10:39 -080024 // injected refs
Simon Hunt31642932016-01-22 20:34:00 -080025 var $log, $scope, wss, fs, ks, ps, is;
Jian Lia54de5a2016-01-20 23:10:39 -080026
27 // internal state
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -080028 var detailsPanel,
29 pStartY,
30 pHeight,
31 top,
32 middle,
33 bottom,
34 wSize = false,
Jayasree Ghosh25e21662016-12-23 15:59:47 +053035 activateImmediately = '';
Jian Lia54de5a2016-01-20 23:10:39 -080036
Bri Prebilic Cole522e7562015-06-22 15:56:25 -070037 // constants
38 var INSTALLED = 'INSTALLED',
39 ACTIVE = 'ACTIVE',
Simon Hunt8d28a552016-01-11 14:01:02 -080040 appMgmtReq = 'appManagementRequest',
Simon Hunt047f4052016-06-06 16:51:11 -070041 topPdg = 60,
42 panelWidth = 540,
Jian Lia54de5a2016-01-20 23:10:39 -080043 pName = 'application-details-panel',
44 detailsReq = 'appDetailsRequest',
45 detailsResp = 'appDetailsResponse',
Simon Hunt8d28a552016-01-11 14:01:02 -080046 fileUploadUrl = 'applications/upload',
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -080047 activateOption = '?activate=true',
Jian Lia54de5a2016-01-20 23:10:39 -080048 iconUrlPrefix = 'rs/applications/',
49 iconUrlSuffix = '/icon',
Simon Hunt8d28a552016-01-11 14:01:02 -080050 dialogId = 'app-dialog',
51 dialogOpts = {
Simon Hunt0991b342016-06-08 13:18:16 -070052 edge: 'right',
53 width: 400
Simon Hunt3f92c432016-01-12 17:34:23 -080054 },
55 strongWarning = {
56 'org.onosproject.drivers': true
57 },
58 discouragement = 'Deactivating or uninstalling this component can' +
Simon Hunt0991b342016-06-08 13:18:16 -070059 ' have serious negative consequences! <br> = DO SO AT YOUR OWN RISK =',
Simon Hunt31642932016-01-22 20:34:00 -080060 propOrder = ['id', 'state', 'category', 'version', 'origin', 'role'],
61 friendlyProps = ['App ID', 'State', 'Category', 'Version', 'Origin', 'Role'];
62 // note: url is handled separately
Jian Lia54de5a2016-01-20 23:10:39 -080063
64 function createDetailsPane() {
65 detailsPanel = ps.createPanel(pName, {
66 width: wSize.width,
67 margin: 0,
68 hideMargin: 0
69 });
70 detailsPanel.el().style({
71 position: 'absolute',
72 top: pStartY + 'px'
73 });
74 $scope.hidePanel = function () { detailsPanel.hide(); };
75 detailsPanel.hide();
76 }
77
78 function closePanel() {
79 if (detailsPanel.isVisible()) {
80 $scope.selId = null;
81 detailsPanel.hide();
82 return true;
83 }
84 return false;
85 }
86
Jian Lia54de5a2016-01-20 23:10:39 -080087 function addCloseBtn(div) {
Simon Hunte6e09842016-06-07 11:11:26 -070088 is.loadEmbeddedIcon(div, 'close', 26);
Jian Lia54de5a2016-01-20 23:10:39 -080089 div.on('click', closePanel);
90 }
91
92 function setUpPanel() {
Simon Hunt31642932016-01-22 20:34:00 -080093 var container, closeBtn, div;
94
Jian Lia54de5a2016-01-20 23:10:39 -080095 detailsPanel.empty();
Simon Hunt31642932016-01-22 20:34:00 -080096 detailsPanel.width(panelWidth);
Jian Lia54de5a2016-01-20 23:10:39 -080097
98 container = detailsPanel.append('div').classed('container', true);
99
100 top = container.append('div').classed('top', true);
101 closeBtn = top.append('div').classed('close-btn', true);
102 addCloseBtn(closeBtn);
Jian Lia54de5a2016-01-20 23:10:39 -0800103
Simon Hunt31642932016-01-22 20:34:00 -0800104 div = top.append('div').classed('top-content', true);
Jian Lia54de5a2016-01-20 23:10:39 -0800105
Simon Hunt31642932016-01-22 20:34:00 -0800106 function ndiv(cls, tcls) {
107 var d = div.append('div').classed(cls, true);
108 if (tcls) {
109 d.append('table').classed(tcls, true);
110 }
111 }
112
Simon Hunt877ee982016-03-09 10:53:16 -0800113 ndiv('app-title');
Simon Hunt31642932016-01-22 20:34:00 -0800114 ndiv('left app-icon');
115 ndiv('right', 'app-props');
116 ndiv('app-url');
117
118 container.append('hr');
Jian Lia54de5a2016-01-20 23:10:39 -0800119
Jian Lida253e02016-01-21 17:46:17 -0800120 middle = container.append('div').classed('middle', true);
Simon Hunt31642932016-01-22 20:34:00 -0800121 middle.append('div').classed('app-readme', true);
Jian Lida253e02016-01-21 17:46:17 -0800122
Simon Hunt31642932016-01-22 20:34:00 -0800123 container.append('hr');
Jian Lida253e02016-01-21 17:46:17 -0800124
Simon Hunt31642932016-01-22 20:34:00 -0800125 // TODO: make bottom container scrollable
Jian Lia54de5a2016-01-20 23:10:39 -0800126 bottom = container.append('div').classed('bottom', true);
Simon Hunt31642932016-01-22 20:34:00 -0800127
128 function nTable(hdr, cls) {
129 bottom.append('h2').html(hdr);
130 bottom.append('div').classed(cls, true).append('table');
131 }
132
133 nTable('Features', 'features');
134 nTable('Required Apps', 'required-apps');
135 nTable('Permissions', 'permissions');
Jian Lia54de5a2016-01-20 23:10:39 -0800136 }
137
138 function addProp(tbody, index, value) {
Simon Hunt811d8572016-06-02 13:40:14 -0700139 var tr = tbody.append('tr');
Jian Lia54de5a2016-01-20 23:10:39 -0800140
141 function addCell(cls, txt) {
142 tr.append('td').attr('class', cls).html(txt);
143 }
Simon Hunt31642932016-01-22 20:34:00 -0800144
145 addCell('label', friendlyProps[index] + ':');
Simon Hunt811d8572016-06-02 13:40:14 -0700146 addCell('value', value);
Jian Lia54de5a2016-01-20 23:10:39 -0800147 }
148
Simon Hunt31642932016-01-22 20:34:00 -0800149 function urlize(u) {
Simon Hunt811d8572016-06-02 13:40:14 -0700150 return 'Url:<br/> <a href="' + u + '" target="_blank">' + u + '</a>';
Simon Hunta477b602016-01-22 12:10:07 -0800151 }
152
Simon Hunt31642932016-01-22 20:34:00 -0800153 function addIcon(elem, value) {
154 elem.append('img').attr('src', iconUrlPrefix + value + iconUrlSuffix);
Jian Lia54de5a2016-01-20 23:10:39 -0800155 }
156
Simon Hunt31642932016-01-22 20:34:00 -0800157 function populateTop(details) {
158 var propsBody = top.select('.app-props').append('tbody'),
159 url = details.url;
Jian Lia54de5a2016-01-20 23:10:39 -0800160
Simon Hunt877ee982016-03-09 10:53:16 -0800161 top.select('.app-title').text(details.title);
162
Simon Hunt31642932016-01-22 20:34:00 -0800163 addIcon(top.select('.app-icon'), details.id);
Jian Lia54de5a2016-01-20 23:10:39 -0800164
Jian Lia54de5a2016-01-20 23:10:39 -0800165 propOrder.forEach(function (prop, i) {
Simon Hunt31642932016-01-22 20:34:00 -0800166 addProp(propsBody, i, details[prop]);
Jian Lia54de5a2016-01-20 23:10:39 -0800167 });
168
Simon Hunt31642932016-01-22 20:34:00 -0800169 if (url) {
170 top.select('.app-url').html(urlize(url));
171 }
Jian Lida253e02016-01-21 17:46:17 -0800172 }
173
Simon Hunt31642932016-01-22 20:34:00 -0800174 function populateMiddle(details) {
175 middle.select('.app-readme').text(details.readme);
Jian Lia54de5a2016-01-20 23:10:39 -0800176 }
177
Simon Hunt31642932016-01-22 20:34:00 -0800178 function populateBottom(details) {
179
180 function addItems(cls, items) {
181 var table = bottom.select('.' + cls).select('table'),
182 tbody = table.append('tbody');
183
184 items.forEach(function (item) {
185 tbody.append('tr').append('td').html(item);
186 });
187 }
188
189 addItems('features', details.features);
190 addItems('required-apps', details.required_apps);
191 addItems('permissions', details.permissions);
Jian Lia54de5a2016-01-20 23:10:39 -0800192 }
193
194 function populateDetails(details) {
Jian Lia54de5a2016-01-20 23:10:39 -0800195 setUpPanel();
Simon Hunt31642932016-01-22 20:34:00 -0800196 populateTop(details);
197 populateMiddle(details);
198 populateBottom(details);
Jian Lia54de5a2016-01-20 23:10:39 -0800199 detailsPanel.height(pHeight);
200 }
201
Jian Lia54de5a2016-01-20 23:10:39 -0800202 function respDetailsCb(data) {
203 $scope.panelData = data.details;
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800204 $scope.selId = data.details.id;
205 $scope.ctrlBtnState.selection = data.details.id;
Jian Lia54de5a2016-01-20 23:10:39 -0800206 $scope.$apply();
207 }
Bri Prebilic Coleb699a162015-04-13 12:01:39 -0700208
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700209 angular.module('ovApp', [])
210 .controller('OvAppCtrl',
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800211 ['$log', '$scope', '$http', '$timeout',
Simon Hunt31642932016-01-22 20:34:00 -0800212 'WebSocketService', 'FnService', 'KeyService', 'PanelService',
213 'IconService', 'UrlFnService', 'DialogService', 'TableBuilderService',
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700214
Simon Huntf51bf462016-06-29 16:22:57 -0700215 function (_$log_, _$scope_, $http, $timeout, _wss_, _fs_, _ks_, _ps_, _is_,
216 ufs, ds, tbs) {
Jian Lia54de5a2016-01-20 23:10:39 -0800217 $log = _$log_;
218 $scope = _$scope_;
219 wss = _wss_;
Jian Lia54de5a2016-01-20 23:10:39 -0800220 fs = _fs_;
Simon Hunt31642932016-01-22 20:34:00 -0800221 ks = _ks_;
Jian Lia54de5a2016-01-20 23:10:39 -0800222 ps = _ps_;
223 is = _is_;
224 $scope.panelData = {};
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700225 $scope.ctrlBtnState = {};
Bri Prebilic Cole6c82ade2015-08-05 11:12:30 -0700226 $scope.uploadTip = 'Upload an application (.oar file)';
Bri Prebilic Coleeef67ae2015-07-01 16:26:59 -0700227 $scope.activateTip = 'Activate selected application';
228 $scope.deactivateTip = 'Deactivate selected application';
229 $scope.uninstallTip = 'Uninstall selected application';
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700230
Jian Lia54de5a2016-01-20 23:10:39 -0800231 var handlers = {};
232
233 // details panel handlers
234 handlers[detailsResp] = respDetailsCb;
235 wss.bindHandlers(handlers);
236
Bri Prebilic Coleb699a162015-04-13 12:01:39 -0700237 function selCb($event, row) {
Simon Hunt3f92c432016-01-12 17:34:23 -0800238 // $scope.selId is set by code in tableBuilder
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700239 $scope.ctrlBtnState.selection = !!$scope.selId;
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700240 refreshCtrls();
Simon Hunt3f92c432016-01-12 17:34:23 -0800241 ds.closeDialog(); // don't want dialog from previous selection
Jian Lia54de5a2016-01-20 23:10:39 -0800242
243 if ($scope.selId) {
244 wss.sendEvent(detailsReq, { id: row.id });
245 } else {
246 $scope.hidePanel();
247 }
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700248 }
249
Bri Prebilic Colea7f81e52015-06-23 10:11:08 -0700250 function refreshCtrls() {
251 var row, rowIdx;
252 if ($scope.ctrlBtnState.selection) {
253 rowIdx = fs.find($scope.selId, $scope.tableData);
254 row = rowIdx >= 0 ? $scope.tableData[rowIdx] : null;
255
256 $scope.ctrlBtnState.installed = row && row.state === INSTALLED;
257 $scope.ctrlBtnState.active = row && row.state === ACTIVE;
258 } else {
259 $scope.ctrlBtnState.installed = false;
260 $scope.ctrlBtnState.active = false;
261 }
Thomas Vachuska619c5382015-04-02 13:41:47 -0700262 }
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700263
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700264 tbs.buildTable({
265 scope: $scope,
266 tag: 'app',
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700267 selCb: selCb,
Simon Hunta678b842016-01-11 17:14:18 -0800268 respCb: refreshCtrls,
269 // pre-populate sort so active apps are at the top of the list
270 sortParams: {
Simon Hunt051e9fa2016-01-19 15:54:22 -0800271 firstCol: 'state',
272 firstDir: 'desc',
Simon Hunt877ee982016-03-09 10:53:16 -0800273 secondCol: 'title',
Simon Hunt051e9fa2016-01-19 15:54:22 -0800274 secondDir: 'asc'
Simon Hunta678b842016-01-11 17:14:18 -0800275 }
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700276 });
277
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700278 // TODO: reexamine where keybindings should be - directive or controller?
279 ks.keyBindings({
Simon Hunt31642932016-01-22 20:34:00 -0800280 esc: [$scope.selectCallback, 'Deselect application'],
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700281 _helpFormat: ['esc']
282 });
283 ks.gestureNotes([
Simon Hunt31642932016-01-22 20:34:00 -0800284 ['click row', 'Select / deselect application'],
285 ['scroll down', 'See more applications']
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700286 ]);
287
Simon Hunt3f92c432016-01-12 17:34:23 -0800288 function createConfirmationText(action, itemId) {
Simon Hunt8d28a552016-01-11 14:01:02 -0800289 var content = ds.createDiv();
Simon Hunt40927332016-01-22 15:29:47 -0800290 content.append('p').text(fs.cap(action) + ' ' + itemId);
Simon Hunt3f92c432016-01-12 17:34:23 -0800291 if (strongWarning[itemId]) {
Simon Hunt0991b342016-06-08 13:18:16 -0700292 content.append('p').html(discouragement).classed('strong', true);
Simon Hunt3f92c432016-01-12 17:34:23 -0800293 }
Simon Hunt8d28a552016-01-11 14:01:02 -0800294 return content;
295 }
296
297 function confirmAction(action) {
Simon Hunt3f92c432016-01-12 17:34:23 -0800298 var itemId = $scope.selId,
Simon Hunt8d28a552016-01-11 14:01:02 -0800299 spar = $scope.sortParams;
300
301 function dOk() {
Simon Hunt3f92c432016-01-12 17:34:23 -0800302 $log.debug('Initiating', action, 'of', itemId);
Simon Hunt8d28a552016-01-11 14:01:02 -0800303 wss.sendEvent(appMgmtReq, {
304 action: action,
Simon Hunt3f92c432016-01-12 17:34:23 -0800305 name: itemId,
Simon Hunt8d28a552016-01-11 14:01:02 -0800306 sortCol: spar.sortCol,
307 sortDir: spar.sortDir
308 });
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800309 if (action == 'uninstall') {
310 detailsPanel.hide();
311 } else {
312 wss.sendEvent(detailsReq, {id: itemId});
313 }
Simon Hunt8d28a552016-01-11 14:01:02 -0800314 }
315
316 function dCancel() {
Simon Hunt3f92c432016-01-12 17:34:23 -0800317 $log.debug('Canceling', action, 'of', itemId);
Simon Hunt8d28a552016-01-11 14:01:02 -0800318 }
319
320 ds.openDialog(dialogId, dialogOpts)
321 .setTitle('Confirm Action')
Simon Hunt3f92c432016-01-12 17:34:23 -0800322 .addContent(createConfirmationText(action, itemId))
Simon Hunt5198f082016-02-04 13:41:17 -0800323 .addOk(dOk)
324 .addCancel(dCancel)
325 .bindKeys();
Simon Hunt8d28a552016-01-11 14:01:02 -0800326 }
327
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700328 $scope.appAction = function (action) {
329 if ($scope.ctrlBtnState.selection) {
Simon Hunt8d28a552016-01-11 14:01:02 -0800330 confirmAction(action);
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700331 }
Bri Prebilic Colebd0bc772015-05-13 13:02:26 -0700332 };
Thomas Vachuska530e52a2015-05-06 19:51:32 -0700333
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700334 $scope.$on('FileChanged', function () {
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800335 var formData = new FormData(),
336 url;
Simon Huntf51bf462016-06-29 16:22:57 -0700337
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700338 if ($scope.appFile) {
339 formData.append('file', $scope.appFile);
Simon Huntf51bf462016-06-29 16:22:57 -0700340 url = fileUploadUrl + activateImmediately;
341
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800342 $http.post(ufs.rsUrl(url), formData, {
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700343 transformRequest: angular.identity,
344 headers: {
345 'Content-Type': undefined
346 }
347 })
Simon Huntf51bf462016-06-29 16:22:57 -0700348 .finally(function () {
349 activateImmediately = '';
350 $scope.sortCallback($scope.sortParams);
351 document.getElementById('inputFileForm').reset();
352 $timeout(function () { wss.sendEvent(detailsReq); }, 250);
353 });
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700354 }
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700355 });
356
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800357 $scope.appDropped = function() {
358 activateImmediately = activateOption;
359 $scope.$emit('FileChanged');
360 $scope.appFile = null;
361 };
362
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700363 $scope.$on('$destroy', function () {
364 ks.unbindKeys();
Jian Lia54de5a2016-01-20 23:10:39 -0800365 wss.unbindHandlers(handlers);
Simon Hunt0991b342016-06-08 13:18:16 -0700366 ds.closeDialog();
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700367 });
368
Thomas Vachuska619c5382015-04-02 13:41:47 -0700369 $log.log('OvAppCtrl has been created');
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700370 }])
371
372 // triggers the input form to appear when button is clicked
373 .directive('triggerForm', function () {
374 return {
375 restrict: 'A',
376 link: function (scope, elem) {
377 elem.bind('click', function () {
378 document.getElementById('uploadFile')
Bri Prebilic Cole6c82ade2015-08-05 11:12:30 -0700379 .dispatchEvent(new MouseEvent('click'));
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700380 });
381 }
382 };
383 })
384
385 // binds the model file to the scope in scope.appFile
386 // sends upload request to the server
387 .directive('fileModel', ['$parse',
Simon Huntf51bf462016-06-29 16:22:57 -0700388 function ($parse) {
389 return {
390 restrict: 'A',
391 link: function (scope, elem, attrs) {
392 var model = $parse(attrs.fileModel),
393 modelSetter = model.assign;
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700394
Simon Huntf51bf462016-06-29 16:22:57 -0700395 elem.bind('change', function () {
396 scope.$apply(function () {
397 modelSetter(scope, elem[0].files[0]);
398 });
399 scope.$emit('FileChanged');
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700400 });
Simon Huntf51bf462016-06-29 16:22:57 -0700401 }
402 };
403 }])
Jian Lia54de5a2016-01-20 23:10:39 -0800404
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800405 .directive("filedrop", function ($parse, $document) {
406 return {
407 restrict: "A",
408 link: function (scope, element, attrs) {
409 var onAppDrop = $parse(attrs.onFileDrop);
410
411 // When an item is dragged over the document
412 var onDragOver = function (e) {
Thomas Vachuskaebf3be02016-04-11 09:52:06 -0700413 d3.select('#frame').classed('dropping', true);
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800414 e.preventDefault();
415 };
416
417 // When the user leaves the window, cancels the drag or drops the item
418 var onDragEnd = function (e) {
Thomas Vachuskaebf3be02016-04-11 09:52:06 -0700419 d3.select('#frame').classed('dropping', false);
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800420 e.preventDefault();
421 };
422
423 // When a file is dropped
424 var loadFile = function (file) {
425 scope.appFile = file;
426 scope.$apply(onAppDrop(scope));
427 };
428
429 // Dragging begins on the document
430 $document.bind("dragover", onDragOver);
431
432 // Dragging ends on the overlay, which takes the whole window
433 element.bind("dragleave", onDragEnd)
434 .bind("drop", function (e) {
435 $log.info('Drag leave', e);
436 loadFile(e.dataTransfer.files[0]);
437 onDragEnd(e);
438 });
439 }
440 };
441 })
442
Jian Lia54de5a2016-01-20 23:10:39 -0800443 .directive('applicationDetailsPanel',
444 ['$rootScope', '$window', '$timeout', 'KeyService',
445 function ($rootScope, $window, $timeout, ks) {
446 return function (scope) {
447 var unbindWatch;
448
449 function heightCalc() {
450 pStartY = fs.noPxStyle(d3.select('.tabular-header'), 'height')
451 + topPdg;
452 wSize = fs.windowSize(pStartY);
453 pHeight = wSize.height;
454 }
455
456 function initPanel() {
457 heightCalc();
458 createDetailsPane();
459 $log.debug('start to initialize panel!');
460 }
461
462 // Safari has a bug where it renders the fixed-layout table wrong
463 // if you ask for the window's size too early
464 if (scope.onos.browser === 'safari') {
465 $timeout(initPanel);
466 } else {
467 initPanel();
468 }
469 // create key bindings to handle panel
470 ks.keyBindings({
Simon Hunta477b602016-01-22 12:10:07 -0800471 esc: [closePanel, 'Close the details panel'],
Jian Lia54de5a2016-01-20 23:10:39 -0800472 _helpFormat: ['esc']
473 });
474 ks.gestureNotes([
475 ['click', 'Select a row to show application details'],
Simon Huntd721f292016-06-22 21:42:23 -0700476 ['scroll down', 'See more applications']
Jian Lia54de5a2016-01-20 23:10:39 -0800477 ]);
478
479 // if the panelData changes
480 scope.$watch('panelData', function () {
481 if (!fs.isEmptyObject(scope.panelData)) {
482 populateDetails(scope.panelData);
483 detailsPanel.show();
484 }
485 });
486
487 // if the window size changes
488 unbindWatch = $rootScope.$watchCollection(
489 function () {
490 return {
491 h: $window.innerHeight,
492 w: $window.innerWidth
493 };
494 }, function () {
495 if (!fs.isEmptyObject(scope.panelData)) {
496 heightCalc();
497 populateDetails(scope.panelData);
498 }
499 }
500 );
501
502 scope.$on('$destroy', function () {
503 unbindWatch();
504 ks.unbindKeys();
505 ps.destroyPanel(pName);
506 });
507 };
508 }]);
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700509}());