Added Supervision/Monitoring support
[src/xds/xds-agent.git] / webapp / src / app / pages / pages-routing.module.ts
1 /**
2 * @license
3 * Copyright (C) 2017-2018 "IoT.bzh"
4 * Author Sebastien Douheret <sebastien@iot.bzh>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 import { RouterModule, Routes } from '@angular/router';
20 import { NgModule } from '@angular/core';
21
22 import { PagesComponent } from './pages.component';
23 import { DashboardComponent } from './dashboard/dashboard.component';
24 import { ProjectsComponent } from './projects/projects.component';
25 import { SdksComponent } from './sdks/sdks.component';
26 import { SdkManagementComponent } from './sdks/sdk-management/sdk-management.component';
27 import { TargetsComponent } from './targets/targets.component';
28 import { TerminalsComponent } from './targets/terminals/terminals.component';
29 import { BuildComponent } from './build/build.component';
30 import { SupervisionComponent } from './supervision/supervision.component';
31 import { SupervisionConfigComponent } from './supervision/supervision-config.component';
32
33 const routes: Routes = [{
34   path: '',
35   component: PagesComponent,
36   children: [{
37     path: 'dashboard',
38     component: DashboardComponent,
39   }, {
40     path: 'projects',
41     component: ProjectsComponent,
42   }, {
43     path: 'sdks',
44     component: SdksComponent,
45   }, {
46     path: 'sdks/management',
47     component: SdkManagementComponent,
48   }, {
49     path: 'build',
50     component: BuildComponent,
51   }, {
52     path: 'targets/list',
53     component: TargetsComponent,
54   }, {
55     path: 'targets/term',
56     component: TerminalsComponent,
57   }, {
58     path: 'supervision/config',
59     component: SupervisionConfigComponent,
60   }, {
61     path: 'supervision/graph',
62     component: SupervisionComponent,
63   }, {
64     path: 'config',
65     loadChildren: './config/config.module#ConfigModule',
66   },
67   {
68     path: '',
69     redirectTo: 'dashboard',
70     pathMatch: 'full',
71   }],
72 }];
73
74 @NgModule({
75   imports: [RouterModule.forChild(routes)],
76   exports: [RouterModule],
77 })
78 export class PagesRoutingModule {
79 }