blob: 1cde58c7429ddc1602deb792b5c8189d903b2ae0 [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
Simon Hunt86388b12015-01-09 14:23:26 -080030 angular.module('onosMast', ['onosNav'])
31 .controller('MastCtrl', ['$log', 'NavService', function (_$log_, ns) {
32 var self = this;
33
34 $log = _$log_;
Simon Huntdc6362a2014-12-18 19:55:23 -080035
36 // initialize mast controller here...
37 self.radio = null;
38
Simon Hunt86388b12015-01-09 14:23:26 -080039 // delegate to NavService
40 self.toggleNav = function () {
41 ns.toggleNav();
42 };
43
Simon Huntdc6362a2014-12-18 19:55:23 -080044 $log.log('MastCtrl has been created');
Simon Hunta11b4eb2015-01-28 16:20:50 -080045 }])
46
47 // also define a service to allow lookup of mast height.
Bri Prebilic Coled8745462015-06-01 16:08:57 -070048 .factory('MastService', ['FnService', function (fs) {
Simon Hunta11b4eb2015-01-28 16:20:50 -080049 return {
Bri Prebilic Coled8745462015-06-01 16:08:57 -070050 mastHeight: function () {
51 return fs.isMobile() ? mastHeight + padMobile : mastHeight;
52 }
Simon Hunta11b4eb2015-01-28 16:20:50 -080053 }
Simon Huntc2202d52014-12-16 13:30:15 -080054 }]);
55
56}());