blob: e0902e80b2508c5d7326c1e3dd1a908bd694c36b [file] [log] [blame]
Matteo Scandolof0446ed2017-08-08 13:05:24 -07001
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 Scandoloc46a82d2017-03-24 18:37:18 -070019/// <reference path="../typings/index.d.ts" />
20import * as angular from 'angular';
21
22import 'angular-ui-router';
23import 'angular-resource';
24import 'angular-cookies';
Matteo Scandolo22f8e822017-09-28 16:35:20 -070025import 'angularjs-slider';
26import '../node_modules/angularjs-slider/dist/rzslider.scss';
27
Matteo Scandoloc46a82d2017-03-24 18:37:18 -070028import {RCordGraphReducer, IRCordGraphReducer} from './app/services/graph.extension';
Matteo Scandolo22f8e822017-09-28 16:35:20 -070029import {rcordSubscriberDashboard} from './app/subscriber-dashboard/subscriber-dashboard.component';
Matteo Scandoloc46a82d2017-03-24 18:37:18 -070030
31angular.module('xos-rcord-gui-extension', [
32 'ui.router',
Matteo Scandolo22f8e822017-09-28 16:35:20 -070033 'app',
34 'rzModule'
Matteo Scandoloc46a82d2017-03-24 18:37:18 -070035 ])
36 .service('RCordGraphReducer', RCordGraphReducer)
Matteo Scandolo22f8e822017-09-28 16:35:20 -070037 .component('rcordSubscriberDashboard', rcordSubscriberDashboard)
38 .run(function($log: ng.ILogService, RCordGraphReducer: IRCordGraphReducer, XosNavigationService: any, XosRuntimeStates: any, $state: ng.ui.IStateService) {
Matteo Scandoloc46a82d2017-03-24 18:37:18 -070039 $log.info('[xos-rcord-graph-gui-extension] App is running');
40 RCordGraphReducer.setup();
Matteo Scandolo22f8e822017-09-28 16:35:20 -070041
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 Scandolo9b0c1be2017-09-28 16:35:20 -070056 $log.info('[xos-rcord-graph-gui-extension] Adding nav item')
Matteo Scandolo22f8e822017-09-28 16:35:20 -070057 XosNavigationService.add({
58 label: 'Dashboard',
59 state: 'xos.rcord.dashboard',
60 parent: 'xos.rcord'
61 });
62 }, 5000);
Matteo Scandoloc46a82d2017-03-24 18:37:18 -070063 });