Added target and terminal support in Dashboard
[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
31 const routes: Routes = [{
32   path: '',
33   component: PagesComponent,
34   children: [{
35     path: 'dashboard',
36     component: DashboardComponent,
37   }, {
38     path: 'projects',
39     component: ProjectsComponent,
40   }, {
41     path: 'sdks',
42     component: SdksComponent,
43   }, {
44     path: 'sdks/management',
45     component: SdkManagementComponent,
46   }, {
47     path: 'build',
48     component: BuildComponent,
49   }, {
50     path: 'targets/list',
51     component: TargetsComponent,
52   }, {
53     path: 'targets/term',
54     component: TerminalsComponent,
55   }, {
56     path: 'config',
57     loadChildren: './config/config.module#ConfigModule',
58   },
59   {
60     path: '',
61     redirectTo: 'dashboard',
62     pathMatch: 'full',
63   }],
64 }];
65
66 @NgModule({
67   imports: [RouterModule.forChild(routes)],
68   exports: [RouterModule],
69 })
70 export class PagesRoutingModule {
71 }