blob: 50cfe9d5c259ad11f814febcf9b09bb8d185f6d3 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Huntc2202d52014-12-16 13:30:15 -08003 *
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/*
Simon Huntdc6362a2014-12-18 19:55:23 -080018 ONOS GUI -- Masthead Module
Simon Huntc2202d52014-12-16 13:30:15 -080019 */
20(function () {
21 'use strict';
22
Simon Hunta11b4eb2015-01-28 16:20:50 -080023 // injected services
Simon Hunt86388b12015-01-09 14:23:26 -080024 var $log;
25
Simon Hunta11b4eb2015-01-28 16:20:50 -080026 // configuration
Bri Prebilic Coled8745462015-06-01 16:08:57 -070027 var mastHeight = 36,
28 padMobile = 16;
Simon Hunta11b4eb2015-01-28 16:20:50 -080029
Thomas Vachuskafa74dd72016-03-20 19:11:12 -070030 var dialogId = 'app-dialog',
31 dialogOpts = {
32 edge: 'left'
33 };
34
35 angular.module('onosMast', ['onosNav'])
36 .controller('MastCtrl', ['$log', '$window', 'NavService',
37 'DialogService', 'WebSocketService',
38
39 function (_$log_, $window, ns, ds, wss) {
Simon Hunt86388b12015-01-09 14:23:26 -080040 var self = this;
41
42 $log = _$log_;
Simon Huntdc6362a2014-12-18 19:55:23 -080043
44 // initialize mast controller here...
45 self.radio = null;
46
Thomas Vachuskafa74dd72016-03-20 19:11:12 -070047 function triggerRefresh(action) {
48 function createConfirmationText() {
49 var content = ds.createDiv();
50 content.append('p').text(action + ' Press OK to update the GUI.');
51 return content;
52 }
53
54
55 function dOk() {
56 $log.debug('Refreshing GUI');
57 $window.location.reload();
58 }
59
60 function dCancel() {
61 $log.debug('Canceling GUI refresh');
62 }
63
64 ds.openDialog(dialogId, dialogOpts)
65 .setTitle('Confirm GUI Refresh')
66 .addContent(createConfirmationText())
67 .addOk(dOk)
68 .addCancel(dCancel)
69 .bindKeys();
70 }
71
72 wss.bindHandlers({
73 'guiAdded': function () { triggerRefresh('New GUI components were added.') },
74 'guiRemoved': function () { triggerRefresh('Some GUI components were removed.') }
75 });
76
Simon Hunt86388b12015-01-09 14:23:26 -080077 // delegate to NavService
78 self.toggleNav = function () {
79 ns.toggleNav();
80 };
81
Simon Huntdc6362a2014-12-18 19:55:23 -080082 $log.log('MastCtrl has been created');
Simon Hunta11b4eb2015-01-28 16:20:50 -080083 }])
84
85 // also define a service to allow lookup of mast height.
Bri Prebilic Coled8745462015-06-01 16:08:57 -070086 .factory('MastService', ['FnService', function (fs) {
Simon Hunta11b4eb2015-01-28 16:20:50 -080087 return {
Bri Prebilic Coled8745462015-06-01 16:08:57 -070088 mastHeight: function () {
89 return fs.isMobile() ? mastHeight + padMobile : mastHeight;
90 }
Simon Hunta11b4eb2015-01-28 16:20:50 -080091 }
Simon Huntc2202d52014-12-16 13:30:15 -080092 }]);
93
94}());