blob: 46f431419594c50f7f66d991a691290e43fd2e95 [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 -- Main Application Module
Simon Huntc2202d52014-12-16 13:30:15 -080019 */
Simon Hunt1eecfa22014-12-16 14:46:29 -080020
Simon Huntc2202d52014-12-16 13:30:15 -080021(function () {
22 'use strict';
23
Simon Huntcd258a12015-01-19 19:20:13 -080024 // define core module dependencies here...
25 var coreDependencies = [
Simon Huntef31fb22014-12-19 13:16:44 -080026 'ngRoute',
27 'onosUtil',
Simon Hunt6cc53692015-01-07 11:33:45 -080028 'onosSvg',
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -080029 'onosRemote',
Simon Huntcd258a12015-01-19 19:20:13 -080030 'onosMast',
31 'onosNav'
Simon Huntef31fb22014-12-19 13:16:44 -080032 ];
33
Simon Huntcd258a12015-01-19 19:20:13 -080034 // view IDs.. note the first view listed is loaded at startup
35 var viewIds = [
36 // TODO: inject view IDs server side
37 // {INJECTED-VIEW-IDS}
38 'sample',
39 'topo',
40 'device',
41 // (end of injected views)
42
43 // dummy entry
44 ''
45 ];
46
47 var viewDependencies = [];
48
49 viewIds.forEach(function (id) {
50 if (id) {
51 viewDependencies.push('ov' + capitalize(id));
52 }
53 });
54
55 var moduleDependencies = coreDependencies.concat(viewDependencies);
56
57 function capitalize(word) {
58 return word ? word[0].toUpperCase() + word.slice(1) : word;
59 }
Simon Huntef31fb22014-12-19 13:16:44 -080060
Simon Hunt6cc53692015-01-07 11:33:45 -080061 angular.module('onosApp', moduleDependencies)
Simon Huntef31fb22014-12-19 13:16:44 -080062
63 .controller('OnosCtrl', [
64 '$log', '$route', '$routeParams', '$location',
Simon Hunt6cc53692015-01-07 11:33:45 -080065 'KeyService', 'ThemeService', 'GlyphService',
Simon Huntef31fb22014-12-19 13:16:44 -080066
Simon Huntcd258a12015-01-19 19:20:13 -080067 function ($log, $route, $routeParams, $location, ks, ts, gs) {
Simon Hunt6cc53692015-01-07 11:33:45 -080068 var self = this;
Simon Huntdc6362a2014-12-18 19:55:23 -080069
Simon Huntef31fb22014-12-19 13:16:44 -080070 self.$route = $route;
71 self.$routeParams = $routeParams;
72 self.$location = $location;
Simon Huntdc6362a2014-12-18 19:55:23 -080073 self.version = '1.1.0';
74
Simon Hunt6cc53692015-01-07 11:33:45 -080075 // initialize services...
Yuta HIGUCHI4f39bcd2014-12-18 20:46:14 -080076 ts.init();
Simon Hunt420691a2014-12-16 20:16:28 -080077 ks.installOn(d3.select('body'));
Simon Hunt6cc53692015-01-07 11:33:45 -080078 gs.init();
Simon Huntdc6362a2014-12-18 19:55:23 -080079
80 $log.log('OnosCtrl has been created');
Simon Huntef31fb22014-12-19 13:16:44 -080081
82 $log.debug('route: ', self.$route);
83 $log.debug('routeParams: ', self.$routeParams);
84 $log.debug('location: ', self.$location);
85 }])
86
87 .config(['$routeProvider', function ($routeProvider) {
Simon Huntcd258a12015-01-19 19:20:13 -080088 // If view ID not provided, route to the first view in the list.
Simon Huntef31fb22014-12-19 13:16:44 -080089 $routeProvider
Simon Huntef31fb22014-12-19 13:16:44 -080090 .otherwise({
Simon Huntcd258a12015-01-19 19:20:13 -080091 redirectTo: '/' + viewIds[0]
92 });
Simon Huntc2202d52014-12-16 13:30:15 -080093
Simon Huntcd258a12015-01-19 19:20:13 -080094 function viewCtrlName(vid) {
95 return 'Ov' + capitalize(vid) + 'Ctrl';
96 }
97 function viewTemplateUrl(vid) {
98 return 'view/' + vid + '/' + vid + '.html';
99 }
100
101 // Add routes for each defined view.
102 viewIds.forEach(function (vid) {
103 if (vid) {
104 $routeProvider.when('/' + vid, {
105 controller: viewCtrlName(vid),
106 controllerAs: 'ctrl',
107 templateUrl: viewTemplateUrl(vid)
108 });
109 }
110 });
111 }]);
Simon Huntc2202d52014-12-16 13:30:15 -0800112}());