Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 1 | /* |
Simon Hunt | 8ead3a2 | 2015-01-06 11:00:15 -0800 | [diff] [blame] | 2 | * Copyright 2014,2015 Open Networking Laboratory |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 3 | * |
| 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 Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 18 | ONOS GUI -- Main Application Module |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 19 | */ |
Simon Hunt | 1eecfa2 | 2014-12-16 14:46:29 -0800 | [diff] [blame] | 20 | |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 21 | (function () { |
| 22 | 'use strict'; |
| 23 | |
Simon Hunt | cd258a1 | 2015-01-19 19:20:13 -0800 | [diff] [blame] | 24 | // define core module dependencies here... |
| 25 | var coreDependencies = [ |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 26 | 'ngRoute', |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 27 | 'onosMast', |
| 28 | 'onosNav', |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 29 | 'onosUtil', |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 30 | 'onosSvg', |
Bri Prebilic Cole | 4fab8af | 2015-01-15 16:40:47 -0800 | [diff] [blame] | 31 | 'onosRemote', |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 32 | 'onosLayer', |
| 33 | 'onosWidget' |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 34 | ]; |
| 35 | |
Simon Hunt | cd258a1 | 2015-01-19 19:20:13 -0800 | [diff] [blame] | 36 | // view IDs.. note the first view listed is loaded at startup |
| 37 | var viewIds = [ |
| 38 | // TODO: inject view IDs server side |
| 39 | // {INJECTED-VIEW-IDS} |
| 40 | 'sample', |
| 41 | 'topo', |
| 42 | 'device', |
| 43 | // (end of injected views) |
| 44 | |
| 45 | // dummy entry |
| 46 | '' |
| 47 | ]; |
| 48 | |
| 49 | var viewDependencies = []; |
| 50 | |
| 51 | viewIds.forEach(function (id) { |
| 52 | if (id) { |
| 53 | viewDependencies.push('ov' + capitalize(id)); |
| 54 | } |
| 55 | }); |
| 56 | |
| 57 | var moduleDependencies = coreDependencies.concat(viewDependencies); |
| 58 | |
| 59 | function capitalize(word) { |
| 60 | return word ? word[0].toUpperCase() + word.slice(1) : word; |
| 61 | } |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 62 | |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 63 | angular.module('onosApp', moduleDependencies) |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 64 | |
| 65 | .controller('OnosCtrl', [ |
| 66 | '$log', '$route', '$routeParams', '$location', |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 67 | 'KeyService', 'ThemeService', 'GlyphService', 'PanelService', |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 68 | |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 69 | function ($log, $route, $routeParams, $location, ks, ts, gs, ps) { |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 70 | var self = this; |
Simon Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 71 | |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 72 | self.$route = $route; |
| 73 | self.$routeParams = $routeParams; |
| 74 | self.$location = $location; |
Simon Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 75 | self.version = '1.1.0'; |
| 76 | |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 77 | // initialize services... |
Yuta HIGUCHI | 4f39bcd | 2014-12-18 20:46:14 -0800 | [diff] [blame] | 78 | ts.init(); |
Simon Hunt | 420691a | 2014-12-16 20:16:28 -0800 | [diff] [blame] | 79 | ks.installOn(d3.select('body')); |
Simon Hunt | 6cc5369 | 2015-01-07 11:33:45 -0800 | [diff] [blame] | 80 | gs.init(); |
Simon Hunt | 54442fa | 2015-01-26 14:17:38 -0800 | [diff] [blame] | 81 | ps.init(); |
Simon Hunt | dc6362a | 2014-12-18 19:55:23 -0800 | [diff] [blame] | 82 | |
| 83 | $log.log('OnosCtrl has been created'); |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 84 | |
| 85 | $log.debug('route: ', self.$route); |
| 86 | $log.debug('routeParams: ', self.$routeParams); |
| 87 | $log.debug('location: ', self.$location); |
| 88 | }]) |
| 89 | |
| 90 | .config(['$routeProvider', function ($routeProvider) { |
Simon Hunt | cd258a1 | 2015-01-19 19:20:13 -0800 | [diff] [blame] | 91 | // If view ID not provided, route to the first view in the list. |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 92 | $routeProvider |
Simon Hunt | ef31fb2 | 2014-12-19 13:16:44 -0800 | [diff] [blame] | 93 | .otherwise({ |
Simon Hunt | cd258a1 | 2015-01-19 19:20:13 -0800 | [diff] [blame] | 94 | redirectTo: '/' + viewIds[0] |
| 95 | }); |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 96 | |
Simon Hunt | cd258a1 | 2015-01-19 19:20:13 -0800 | [diff] [blame] | 97 | function viewCtrlName(vid) { |
| 98 | return 'Ov' + capitalize(vid) + 'Ctrl'; |
| 99 | } |
| 100 | function viewTemplateUrl(vid) { |
| 101 | return 'view/' + vid + '/' + vid + '.html'; |
| 102 | } |
| 103 | |
| 104 | // Add routes for each defined view. |
| 105 | viewIds.forEach(function (vid) { |
| 106 | if (vid) { |
| 107 | $routeProvider.when('/' + vid, { |
| 108 | controller: viewCtrlName(vid), |
| 109 | controllerAs: 'ctrl', |
| 110 | templateUrl: viewTemplateUrl(vid) |
| 111 | }); |
| 112 | } |
| 113 | }); |
| 114 | }]); |
Simon Hunt | c2202d5 | 2014-12-16 13:30:15 -0800 | [diff] [blame] | 115 | }()); |