Matteo Scandolo | a86e0a1 | 2017-08-08 13:05:27 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 19 | /// <reference path="../typings/index.d.ts" /> |
| 20 | import * as angular from 'angular'; |
| 21 | |
| 22 | import 'angular-ui-router'; |
| 23 | import 'angular-resource'; |
| 24 | import 'angular-cookies'; |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 25 | import {xosVtrDashboardComponent} from './app/components/vtr/vtr-dashboard'; |
| 26 | import {XosVtrTruckroll} from './app/services/truckroll.resource'; |
| 27 | |
| 28 | angular.module('xos-vtr-gui-extension', [ |
| 29 | 'ui.router', |
| 30 | 'app' |
| 31 | ]) |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 32 | .service('XosVtrTruckroll', XosVtrTruckroll) |
| 33 | .component('xosVtrDashboardComponent', xosVtrDashboardComponent) |
Matteo Scandolo | 7d994a8 | 2017-03-20 16:10:12 -0700 | [diff] [blame] | 34 | .run(function($log: ng.ILogService, XosNavigationService: any, XosRuntimeStates: any) { |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 35 | $log.info('[xos-vtr-gui-extension] App is running'); |
| 36 | |
| 37 | XosNavigationService.add({ |
Matteo Scandolo | 7d994a8 | 2017-03-20 16:10:12 -0700 | [diff] [blame] | 38 | label: 'Vtr', |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 39 | state: 'xos.vtr', |
| 40 | }); |
| 41 | |
| 42 | XosNavigationService.add({ |
| 43 | label: 'Dashboard', |
| 44 | state: 'xos.vtr.dashboard', |
| 45 | parent: 'xos.vtr' |
| 46 | }); |
Matteo Scandolo | 7d994a8 | 2017-03-20 16:10:12 -0700 | [diff] [blame] | 47 | |
| 48 | XosRuntimeStates.addState(`xos.vtr`, { |
| 49 | abstract: true, |
| 50 | template: '<div ui-view></div>' |
| 51 | }); |
| 52 | |
| 53 | XosRuntimeStates.addState(`xos.vtr.dashboard`, { |
| 54 | url: 'vtr/dashboard', |
| 55 | parent: 'xos.vtr', |
| 56 | component: 'xosVtrDashboardComponent' |
| 57 | }); |
Matteo Scandolo | e19fa10 | 2017-03-09 15:38:59 -0800 | [diff] [blame] | 58 | }); |