blob: 048a78cc48f0ba946e44302b456ae45441d4869d [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,
35 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
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800215 function (_$log_, _$scope_, $http, $timeout, _wss_, _fs_, _ks_, _ps_, _is_, ufs, ds, tbs) {
Jian Lia54de5a2016-01-20 23:10:39 -0800216 $log = _$log_;
217 $scope = _$scope_;
218 wss = _wss_;
Jian Lia54de5a2016-01-20 23:10:39 -0800219 fs = _fs_;
Simon Hunt31642932016-01-22 20:34:00 -0800220 ks = _ks_;
Jian Lia54de5a2016-01-20 23:10:39 -0800221 ps = _ps_;
222 is = _is_;
223 $scope.panelData = {};
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700224 $scope.ctrlBtnState = {};
Bri Prebilic Cole6c82ade2015-08-05 11:12:30 -0700225 $scope.uploadTip = 'Upload an application (.oar file)';
Bri Prebilic Coleeef67ae2015-07-01 16:26:59 -0700226 $scope.activateTip = 'Activate selected application';
227 $scope.deactivateTip = 'Deactivate selected application';
228 $scope.uninstallTip = 'Uninstall selected application';
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700229
Jian Lia54de5a2016-01-20 23:10:39 -0800230 var handlers = {};
231
232 // details panel handlers
233 handlers[detailsResp] = respDetailsCb;
234 wss.bindHandlers(handlers);
235
Bri Prebilic Coleb699a162015-04-13 12:01:39 -0700236 function selCb($event, row) {
Simon Hunt3f92c432016-01-12 17:34:23 -0800237 // $scope.selId is set by code in tableBuilder
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700238 $scope.ctrlBtnState.selection = !!$scope.selId;
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700239 refreshCtrls();
Simon Hunt3f92c432016-01-12 17:34:23 -0800240 ds.closeDialog(); // don't want dialog from previous selection
Jian Lia54de5a2016-01-20 23:10:39 -0800241
242 if ($scope.selId) {
243 wss.sendEvent(detailsReq, { id: row.id });
244 } else {
245 $scope.hidePanel();
246 }
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700247 }
248
Bri Prebilic Colea7f81e52015-06-23 10:11:08 -0700249 function refreshCtrls() {
250 var row, rowIdx;
251 if ($scope.ctrlBtnState.selection) {
252 rowIdx = fs.find($scope.selId, $scope.tableData);
253 row = rowIdx >= 0 ? $scope.tableData[rowIdx] : null;
254
255 $scope.ctrlBtnState.installed = row && row.state === INSTALLED;
256 $scope.ctrlBtnState.active = row && row.state === ACTIVE;
257 } else {
258 $scope.ctrlBtnState.installed = false;
259 $scope.ctrlBtnState.active = false;
260 }
Thomas Vachuska619c5382015-04-02 13:41:47 -0700261 }
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700262
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700263 tbs.buildTable({
264 scope: $scope,
265 tag: 'app',
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700266 selCb: selCb,
Simon Hunta678b842016-01-11 17:14:18 -0800267 respCb: refreshCtrls,
268 // pre-populate sort so active apps are at the top of the list
269 sortParams: {
Simon Hunt051e9fa2016-01-19 15:54:22 -0800270 firstCol: 'state',
271 firstDir: 'desc',
Simon Hunt877ee982016-03-09 10:53:16 -0800272 secondCol: 'title',
Simon Hunt051e9fa2016-01-19 15:54:22 -0800273 secondDir: 'asc'
Simon Hunta678b842016-01-11 17:14:18 -0800274 }
Bri Prebilic Cole6b95a3f2015-06-04 09:15:00 -0700275 });
276
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700277 // TODO: reexamine where keybindings should be - directive or controller?
278 ks.keyBindings({
Simon Hunt31642932016-01-22 20:34:00 -0800279 esc: [$scope.selectCallback, 'Deselect application'],
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700280 _helpFormat: ['esc']
281 });
282 ks.gestureNotes([
Simon Hunt31642932016-01-22 20:34:00 -0800283 ['click row', 'Select / deselect application'],
284 ['scroll down', 'See more applications']
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700285 ]);
286
Simon Hunt3f92c432016-01-12 17:34:23 -0800287 function createConfirmationText(action, itemId) {
Simon Hunt8d28a552016-01-11 14:01:02 -0800288 var content = ds.createDiv();
Simon Hunt40927332016-01-22 15:29:47 -0800289 content.append('p').text(fs.cap(action) + ' ' + itemId);
Simon Hunt3f92c432016-01-12 17:34:23 -0800290 if (strongWarning[itemId]) {
Simon Hunt0991b342016-06-08 13:18:16 -0700291 content.append('p').html(discouragement).classed('strong', true);
Simon Hunt3f92c432016-01-12 17:34:23 -0800292 }
Simon Hunt8d28a552016-01-11 14:01:02 -0800293 return content;
294 }
295
296 function confirmAction(action) {
Simon Hunt3f92c432016-01-12 17:34:23 -0800297 var itemId = $scope.selId,
Simon Hunt8d28a552016-01-11 14:01:02 -0800298 spar = $scope.sortParams;
299
300 function dOk() {
Simon Hunt3f92c432016-01-12 17:34:23 -0800301 $log.debug('Initiating', action, 'of', itemId);
Simon Hunt8d28a552016-01-11 14:01:02 -0800302 wss.sendEvent(appMgmtReq, {
303 action: action,
Simon Hunt3f92c432016-01-12 17:34:23 -0800304 name: itemId,
Simon Hunt8d28a552016-01-11 14:01:02 -0800305 sortCol: spar.sortCol,
306 sortDir: spar.sortDir
307 });
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800308 if (action == 'uninstall') {
309 detailsPanel.hide();
310 } else {
311 wss.sendEvent(detailsReq, {id: itemId});
312 }
Simon Hunt8d28a552016-01-11 14:01:02 -0800313 }
314
315 function dCancel() {
Simon Hunt3f92c432016-01-12 17:34:23 -0800316 $log.debug('Canceling', action, 'of', itemId);
Simon Hunt8d28a552016-01-11 14:01:02 -0800317 }
318
319 ds.openDialog(dialogId, dialogOpts)
320 .setTitle('Confirm Action')
Simon Hunt3f92c432016-01-12 17:34:23 -0800321 .addContent(createConfirmationText(action, itemId))
Simon Hunt5198f082016-02-04 13:41:17 -0800322 .addOk(dOk)
323 .addCancel(dCancel)
324 .bindKeys();
Simon Hunt8d28a552016-01-11 14:01:02 -0800325 }
326
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700327 $scope.appAction = function (action) {
328 if ($scope.ctrlBtnState.selection) {
Simon Hunt8d28a552016-01-11 14:01:02 -0800329 confirmAction(action);
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700330 }
Bri Prebilic Colebd0bc772015-05-13 13:02:26 -0700331 };
Thomas Vachuska530e52a2015-05-06 19:51:32 -0700332
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700333 $scope.$on('FileChanged', function () {
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800334 var formData = new FormData(),
335 url;
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700336 if ($scope.appFile) {
337 formData.append('file', $scope.appFile);
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800338 url = fileUploadUrl + (activateImmediately || '');
339 $http.post(ufs.rsUrl(url), formData, {
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700340 transformRequest: angular.identity,
341 headers: {
342 'Content-Type': undefined
343 }
344 })
Bri Prebilic Colea7f81e52015-06-23 10:11:08 -0700345 .finally(function () {
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800346 activateImmediately = null;
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700347 $scope.sortCallback($scope.sortParams);
348 document.getElementById('inputFileForm').reset();
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800349 $timeout(function () { wss.sendEvent(detailsReq); }, 250);
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700350 });
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700351 }
Thomas Vachuskaa7a0f562015-04-14 23:27:44 -0700352 });
353
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800354 $scope.appDropped = function() {
355 activateImmediately = activateOption;
356 $scope.$emit('FileChanged');
357 $scope.appFile = null;
358 };
359
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700360 $scope.$on('$destroy', function () {
361 ks.unbindKeys();
Jian Lia54de5a2016-01-20 23:10:39 -0800362 wss.unbindHandlers(handlers);
Simon Hunt0991b342016-06-08 13:18:16 -0700363 ds.closeDialog();
Bri Prebilic Cole9dcaea52015-07-21 14:39:48 -0700364 });
365
Thomas Vachuska619c5382015-04-02 13:41:47 -0700366 $log.log('OvAppCtrl has been created');
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700367 }])
368
369 // triggers the input form to appear when button is clicked
370 .directive('triggerForm', function () {
371 return {
372 restrict: 'A',
373 link: function (scope, elem) {
374 elem.bind('click', function () {
375 document.getElementById('uploadFile')
Bri Prebilic Cole6c82ade2015-08-05 11:12:30 -0700376 .dispatchEvent(new MouseEvent('click'));
Bri Prebilic Cole522e7562015-06-22 15:56:25 -0700377 });
378 }
379 };
380 })
381
382 // binds the model file to the scope in scope.appFile
383 // sends upload request to the server
384 .directive('fileModel', ['$parse',
385 function ($parse) {
386 return {
387 restrict: 'A',
388 link: function (scope, elem, attrs) {
389 var model = $parse(attrs.fileModel),
390 modelSetter = model.assign;
391
392 elem.bind('change', function () {
393 scope.$apply(function () {
394 modelSetter(scope, elem[0].files[0]);
395 });
396 scope.$emit('FileChanged');
397 });
398 }
399 };
Jian Lia54de5a2016-01-20 23:10:39 -0800400 }])
401
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800402 .directive("filedrop", function ($parse, $document) {
403 return {
404 restrict: "A",
405 link: function (scope, element, attrs) {
406 var onAppDrop = $parse(attrs.onFileDrop);
407
408 // When an item is dragged over the document
409 var onDragOver = function (e) {
Thomas Vachuskaebf3be02016-04-11 09:52:06 -0700410 d3.select('#frame').classed('dropping', true);
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800411 e.preventDefault();
412 };
413
414 // When the user leaves the window, cancels the drag or drops the item
415 var onDragEnd = function (e) {
Thomas Vachuskaebf3be02016-04-11 09:52:06 -0700416 d3.select('#frame').classed('dropping', false);
Thomas Vachuskaa42ce0b2016-03-09 09:02:49 -0800417 e.preventDefault();
418 };
419
420 // When a file is dropped
421 var loadFile = function (file) {
422 scope.appFile = file;
423 scope.$apply(onAppDrop(scope));
424 };
425
426 // Dragging begins on the document
427 $document.bind("dragover", onDragOver);
428
429 // Dragging ends on the overlay, which takes the whole window
430 element.bind("dragleave", onDragEnd)
431 .bind("drop", function (e) {
432 $log.info('Drag leave', e);
433 loadFile(e.dataTransfer.files[0]);
434 onDragEnd(e);
435 });
436 }
437 };
438 })
439
Jian Lia54de5a2016-01-20 23:10:39 -0800440 .directive('applicationDetailsPanel',
441 ['$rootScope', '$window', '$timeout', 'KeyService',
442 function ($rootScope, $window, $timeout, ks) {
443 return function (scope) {
444 var unbindWatch;
445
446 function heightCalc() {
447 pStartY = fs.noPxStyle(d3.select('.tabular-header'), 'height')
448 + topPdg;
449 wSize = fs.windowSize(pStartY);
450 pHeight = wSize.height;
451 }
452
453 function initPanel() {
454 heightCalc();
455 createDetailsPane();
456 $log.debug('start to initialize panel!');
457 }
458
459 // Safari has a bug where it renders the fixed-layout table wrong
460 // if you ask for the window's size too early
461 if (scope.onos.browser === 'safari') {
462 $timeout(initPanel);
463 } else {
464 initPanel();
465 }
466 // create key bindings to handle panel
467 ks.keyBindings({
Simon Hunta477b602016-01-22 12:10:07 -0800468 esc: [closePanel, 'Close the details panel'],
Jian Lia54de5a2016-01-20 23:10:39 -0800469 _helpFormat: ['esc']
470 });
471 ks.gestureNotes([
472 ['click', 'Select a row to show application details'],
473 ['scroll down', 'See more application']
474 ]);
475
476 // if the panelData changes
477 scope.$watch('panelData', function () {
478 if (!fs.isEmptyObject(scope.panelData)) {
479 populateDetails(scope.panelData);
480 detailsPanel.show();
481 }
482 });
483
484 // if the window size changes
485 unbindWatch = $rootScope.$watchCollection(
486 function () {
487 return {
488 h: $window.innerHeight,
489 w: $window.innerWidth
490 };
491 }, function () {
492 if (!fs.isEmptyObject(scope.panelData)) {
493 heightCalc();
494 populateDetails(scope.panelData);
495 }
496 }
497 );
498
499 scope.$on('$destroy', function () {
500 unbindWatch();
501 ks.unbindKeys();
502 ps.destroyPanel(pName);
503 });
504 };
505 }]);
Thomas Vachuska0fa583c2015-03-30 23:07:41 -0700506}());