blob: ce6ddf2cfca6e80744bb7b8a20b60bea0afafd26 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present 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'])
Steven Burrows530cf462016-04-12 16:04:37 +010036 .controller('MastCtrl', ['$log', '$scope', '$window', 'WebSocketService', 'NavService',
37 'DialogService',
Thomas Vachuskafa74dd72016-03-20 19:11:12 -070038
Steven Burrows530cf462016-04-12 16:04:37 +010039 function (_$log_, $scope, $window, wss, ns, ds) {
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
Steven Burrows530cf462016-04-12 16:04:37 +010082 $scope.user = onosAuth || '(no one)';
83
Simon Huntdc6362a2014-12-18 19:55:23 -080084 $log.log('MastCtrl has been created');
Simon Hunta11b4eb2015-01-28 16:20:50 -080085 }])
86
87 // also define a service to allow lookup of mast height.
Bri Prebilic Coled8745462015-06-01 16:08:57 -070088 .factory('MastService', ['FnService', function (fs) {
Simon Hunta11b4eb2015-01-28 16:20:50 -080089 return {
Bri Prebilic Coled8745462015-06-01 16:08:57 -070090 mastHeight: function () {
91 return fs.isMobile() ? mastHeight + padMobile : mastHeight;
92 }
Simon Hunta11b4eb2015-01-28 16:20:50 -080093 }
Simon Huntc2202d52014-12-16 13:30:15 -080094 }]);
95
96}());