Matteo Scandolo | f0446ed | 2017-08-08 13:05:24 -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 | c46a82d | 2017-03-24 18:37:18 -0700 | [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 | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 25 | import 'angularjs-slider'; |
| 26 | import '../node_modules/angularjs-slider/dist/rzslider.scss'; |
| 27 | |
Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame] | 28 | import {RCordGraphReducer, IRCordGraphReducer} from './app/services/graph.extension'; |
Matteo Scandolo | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 29 | import {rcordSubscriberDashboard} from './app/subscriber-dashboard/subscriber-dashboard.component'; |
Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame] | 30 | |
| 31 | angular.module('xos-rcord-gui-extension', [ |
| 32 | 'ui.router', |
Matteo Scandolo | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 33 | 'app', |
| 34 | 'rzModule' |
Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame] | 35 | ]) |
| 36 | .service('RCordGraphReducer', RCordGraphReducer) |
Matteo Scandolo | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 37 | .component('rcordSubscriberDashboard', rcordSubscriberDashboard) |
| 38 | .run(function($log: ng.ILogService, RCordGraphReducer: IRCordGraphReducer, XosNavigationService: any, XosRuntimeStates: any, $state: ng.ui.IStateService) { |
Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame] | 39 | $log.info('[xos-rcord-graph-gui-extension] App is running'); |
| 40 | RCordGraphReducer.setup(); |
Matteo Scandolo | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 41 | |
| 42 | XosRuntimeStates.addState(`xos.rcord`, { |
| 43 | url: 'rcord', |
| 44 | parent: 'xos', |
| 45 | abstract: true, |
| 46 | template: '<div ui-view></div>' |
| 47 | }); |
| 48 | |
| 49 | XosRuntimeStates.addState(`xos.rcord.dashboard`, { |
| 50 | url: '/dashboard', |
| 51 | parent: 'xos.rcord', |
| 52 | component: 'rcordSubscriberDashboard' |
| 53 | }); |
| 54 | |
| 55 | window.setTimeout(() => { |
Matteo Scandolo | 9b0c1be | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 56 | $log.info('[xos-rcord-graph-gui-extension] Adding nav item') |
Matteo Scandolo | 22f8e82 | 2017-09-28 16:35:20 -0700 | [diff] [blame] | 57 | XosNavigationService.add({ |
| 58 | label: 'Dashboard', |
| 59 | state: 'xos.rcord.dashboard', |
| 60 | parent: 'xos.rcord' |
| 61 | }); |
| 62 | }, 5000); |
Matteo Scandolo | c46a82d | 2017-03-24 18:37:18 -0700 | [diff] [blame] | 63 | }); |