Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 1 | /* |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 2 | * Copyright 2018-present Open Networking Foundation |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Sean Condon | 50e61a6 | 2019-12-19 14:28:06 +0000 | [diff] [blame] | 16 | import {NgModule} from '@angular/core'; |
| 17 | import {Routes, RouterModule} from '@angular/router'; |
| 18 | import {Gui2TopoLibModule} from 'gui2-topo-lib'; |
| 19 | import {FmGui2LibModule} from 'fm-gui2-lib'; |
Davide Scano | b5ade98 | 2020-06-03 21:47:13 +0200 | [diff] [blame^] | 20 | import {intAppGui2LibModule} from 'int-gui2-lib'; |
Sean Condon | 50e61a6 | 2019-12-19 14:28:06 +0000 | [diff] [blame] | 21 | import {RoadmGuiLibModule} from 'roadm-gui-lib'; |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 22 | |
Sean Condon | 28ecc5f | 2018-06-25 12:50:16 +0100 | [diff] [blame] | 23 | /** |
| 24 | * The set of Routes in the application - can be chosen from nav menu or |
| 25 | * elsewhere like tabular icon for flows etc |
| 26 | */ |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 27 | const onosRoutes: Routes = [ |
| 28 | { |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 29 | path: 'app', |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 30 | loadChildren: 'app/view/apps/apps.module#AppsModule' |
| 31 | }, |
| 32 | { |
prai | 9d44596 | 2018-07-27 13:27:43 +0530 | [diff] [blame] | 33 | path: 'processor', |
| 34 | loadChildren: 'app/view/processor/processor.module#ProcessorModule' |
| 35 | }, |
| 36 | { |
Bhavesh Kumar | d0b8bae | 2018-07-31 16:56:43 +0530 | [diff] [blame] | 37 | path: 'settings', |
| 38 | loadChildren: 'app/view/settings/settings.module#SettingsModule' |
| 39 | }, |
| 40 | { |
| 41 | path: 'partition', |
| 42 | loadChildren: 'app/view/partition/partition.module#PartitionModule' |
| 43 | }, |
| 44 | { |
Priyanka H M | fa5b77a | 2018-07-27 12:43:44 +0530 | [diff] [blame] | 45 | path: 'cluster', |
| 46 | loadChildren: 'app/view/cluster/cluster.module#ClusterModule' |
| 47 | }, |
| 48 | { |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 49 | path: 'device', |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 50 | loadChildren: 'app/view/device/device.module#DeviceModule' |
| 51 | }, |
| 52 | { |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 53 | path: 'link', |
| 54 | loadChildren: 'app/view/link/link.module#LinkModule' |
| 55 | }, |
| 56 | { |
| 57 | path: 'host', |
| 58 | loadChildren: 'app/view/host/host.module#HostModule' |
| 59 | }, |
| 60 | { |
prai | 9d44596 | 2018-07-27 13:27:43 +0530 | [diff] [blame] | 61 | path: 'intent', |
| 62 | loadChildren: 'app/view/intent/intent.module#IntentModule' |
| 63 | }, |
| 64 | { |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 65 | path: 'tunnel', |
| 66 | loadChildren: 'app/view/tunnel/tunnel.module#TunnelModule' |
| 67 | }, |
| 68 | { |
| 69 | path: 'flow', |
| 70 | loadChildren: 'app/view/flow/flow.module#FlowModule' |
| 71 | }, |
| 72 | { |
| 73 | path: 'port', |
| 74 | loadChildren: 'app/view/port/port.module#PortModule' |
| 75 | }, |
| 76 | { |
| 77 | path: 'group', |
| 78 | loadChildren: 'app/view/group/group.module#GroupModule' |
| 79 | }, |
| 80 | { |
| 81 | path: 'meter', |
| 82 | loadChildren: 'app/view/meter/meter.module#MeterModule' |
| 83 | }, |
Sean Condon | 50e61a6 | 2019-12-19 14:28:06 +0000 | [diff] [blame] | 84 | { |
| 85 | path: 'pipeconf', |
| 86 | loadChildren: 'app/view/pipeconf/pipeconf.module#PipeconfModule' |
| 87 | }, |
Sean Condon | ff85fbe | 2019-03-16 14:28:46 +0000 | [diff] [blame] | 88 | /* Comment out below section for running locally with 'ng serve' when developing */ |
Sean Condon | f4f54a1 | 2018-10-10 23:25:46 +0100 | [diff] [blame] | 89 | { |
Sean Condon | aa4366d | 2018-11-02 14:29:01 +0000 | [diff] [blame] | 90 | path: 'topo2', |
Sean Condon | ff85fbe | 2019-03-16 14:28:46 +0000 | [diff] [blame] | 91 | loadChildren: 'gui2-topo-lib#Gui2TopoLibModule' |
Sean Condon | f4f54a1 | 2018-10-10 23:25:46 +0100 | [diff] [blame] | 92 | }, |
Sean Condon | 87b7850 | 2018-09-17 20:53:24 +0100 | [diff] [blame] | 93 | { |
| 94 | path: 'alarmTable', |
| 95 | loadChildren: 'fm-gui2-lib#FmGui2LibModule' |
| 96 | }, |
Bhavesh | 72ead49 | 2018-07-19 16:29:18 +0530 | [diff] [blame] | 97 | { |
Boyuan Yan | 6b23b38 | 2019-06-04 11:59:35 -0700 | [diff] [blame] | 98 | path: 'roadm-gui', |
| 99 | loadChildren: 'roadm-gui-lib#RoadmGuiLibModule' |
| 100 | }, |
| 101 | { |
Davide Scano | b5ade98 | 2020-06-03 21:47:13 +0200 | [diff] [blame^] | 102 | path: 'intApp', |
| 103 | loadChildren: 'int-gui2-lib#intAppGui2LibModule' |
| 104 | }, |
| 105 | { |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 106 | path: '', |
Sean Condon | 0c577f6 | 2018-11-18 22:40:05 +0000 | [diff] [blame] | 107 | redirectTo: 'topo2', // Default to Topology view |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 108 | pathMatch: 'full' |
Davide Scano | b5ade98 | 2020-06-03 21:47:13 +0200 | [diff] [blame^] | 109 | }, |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 110 | ]; |
| 111 | |
| 112 | /** |
| 113 | * ONOS GUI -- Main Routing Module - allows modules to be lazy loaded |
| 114 | * |
| 115 | * See https://angular.io/guide/lazy-loading-ngmodules |
| 116 | * for the theory of operation |
| 117 | */ |
| 118 | @NgModule({ |
| 119 | imports: [ |
Sean Condon | 50e61a6 | 2019-12-19 14:28:06 +0000 | [diff] [blame] | 120 | RouterModule.forRoot(onosRoutes, {useHash: true}) |
Sean Condon | a00bf38 | 2018-06-23 07:54:01 +0100 | [diff] [blame] | 121 | ], |
| 122 | exports: [RouterModule], |
| 123 | providers: [] |
| 124 | }) |
Sean Condon | 50e61a6 | 2019-12-19 14:28:06 +0000 | [diff] [blame] | 125 | export class OnosRoutingModule { |
| 126 | } |