aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wireless-transport/code-Carbon-SR1/ux/onapAai/onapAai-module/src/main/resources/onapAai/onapAai.module.js
blob: a3deb333d826e07b17329f3abe0f72b9340bc73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
 * Copyright (c) 2016 highstreet technologies GmbH and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */

define(['angularAMD', 
        'app/routingConfig', 
        'app/core/core.services', 
        'common/config/env.module',
        'app/mwtnCommons/mwtnCommons.module'], function(ng) {
  var onapAaiApp = angular.module('app.onapAai', ['ui.grid', 'ui.bootstrap', 'app.core',
      'ui.router.state', 'config', 'ui.grid.exporter',
      'ui.grid.moveColumns', 'ui.grid.pinning', 'ui.grid.selection',
      'ui.grid.resizeColumns', 'ui.grid.infiniteScroll','ui.grid.pagination' ]);

  onapAaiApp.config(function($stateProvider, $compileProvider, $controllerProvider, $provide, NavHelperProvider, $translateProvider) {
    onapAaiApp.register = {
      controller : $controllerProvider.register,
      directive : $compileProvider.directive,
      factory : $provide.factory,
      service : $provide.service
    };


    NavHelperProvider.addControllerUrl('app/onapAai/onapAai.controller');
    NavHelperProvider.addToMenu('onapAai', {
     "link" : "#/onapAai/",
     "active" : "main.onapAai",
     "title" : "ONAP AAI",
     "icon" : "fa fa-th",  // Add navigation icon css class here
     "page" : {
        "title" : "ONAP AAI",
        "description" : "Open Network Automation Platform (ONAP) - Active and Available Inventory (AAI)"
    }
    });

    var access = routingConfig.accessLevels;

    $stateProvider.state('main.onapAai', {
        url: 'onapAai/:nodeId',
        access: access.admin,
        views : {
            'content' : {
                templateUrl: 'src/app/onapAai/onapAai.tpl.html',
                controller: 'onapAaiCtrl'
            }
        }
    });

  });

  return onapAaiApp;
});