blob: a19b73d349628959f5b3329e0d816a1f32b8bd8d [file] [log] [blame]
Sean Condonf4f54a12018-10-10 23:25:46 +01001/*
2 * Copyright 2018-present Open Networking Foundation
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 */
16import { NgModule } from '@angular/core';
17import { CommonModule } from '@angular/common';
18import { TopologyRoutingModule } from './topology-routing.module';
19import { TopologyComponent } from './topology/topology.component';
20import { NoDeviceConnectedSvgComponent } from './layer/nodeviceconnectedsvg/nodeviceconnectedsvg.component';
Sean Condonf4f54a12018-10-10 23:25:46 +010021import { InstanceComponent } from './panel/instance/instance.component';
22import { SummaryComponent } from './panel/summary/summary.component';
23import { ToolbarComponent } from './panel/toolbar/toolbar.component';
24import { DetailsComponent } from './panel/details/details.component';
25import { Gui2FwLibModule } from 'gui2-fw-lib';
26import { BackgroundSvgComponent } from './layer/backgroundsvg/backgroundsvg.component';
27import { ForceSvgComponent } from './layer/forcesvg/forcesvg.component';
28import { MapSvgComponent } from './layer/mapsvg/mapsvg.component';
Sean Condonaa4366d2018-11-02 14:29:01 +000029import { TopologyService } from './topology.service';
Sean Condon0c577f62018-11-18 22:40:05 +000030import { DraggableDirective } from './layer/forcesvg/draggable/draggable.directive';
31import { ZoomableDirective } from './layer/zoomable.directive';
Sean Condon0d064ec2019-02-04 21:53:53 +000032import { MapSelectorComponent } from './panel/mapselector/mapselector.component';
Sean Condonff85fbe2019-03-16 14:28:46 +000033import { DeviceNodeSvgComponent} from './layer/forcesvg/visuals/devicenodesvg/devicenodesvg.component';
34import { HostNodeSvgComponent } from './layer/forcesvg/visuals/hostnodesvg/hostnodesvg.component';
35import { SubRegionNodeSvgComponent } from './layer/forcesvg/visuals/subregionnodesvg/subregionnodesvg.component';
36import { LinkSvgComponent} from './layer/forcesvg/visuals/linksvg/linksvg.component';
Sean Condon0d064ec2019-02-04 21:53:53 +000037import {FormsModule, ReactiveFormsModule} from '@angular/forms';
Sean Condon71910542019-02-16 18:16:42 +000038import { GridsvgComponent } from './layer/gridsvg/gridsvg.component';
Sean Condonff85fbe2019-03-16 14:28:46 +000039import {TrafficService} from './traffic.service';
Sean Condon28884332019-03-21 14:07:00 +000040import {LayoutService} from './layout.service';
Sean Condon590b34b2019-12-04 18:44:37 +000041import { BadgeSvgComponent } from './layer/forcesvg/visuals/badgesvg/badgesvg.component';
Sean Condonf4f54a12018-10-10 23:25:46 +010042
43/**
44 * ONOS GUI -- Topology View Module
45 *
Sean Condon91481822019-01-01 13:56:14 +000046 * The main entry point is the TopologyComponent
47 *
Sean Condonf4f54a12018-10-10 23:25:46 +010048 * Note: This has been updated from onos-gui-1.0.0 where it was called 'topo2'
49 * whereas here it is now called 'topology'. This also merges in the old 'topo'
50 */
51@NgModule({
52 imports: [
53 CommonModule,
Sean Condon0d064ec2019-02-04 21:53:53 +000054 FormsModule,
55 ReactiveFormsModule,
Sean Condonf4f54a12018-10-10 23:25:46 +010056 TopologyRoutingModule,
57 Gui2FwLibModule
58 ],
59 declarations: [
Sean Condonff85fbe2019-03-16 14:28:46 +000060 BackgroundSvgComponent,
61 DetailsComponent,
62 DeviceNodeSvgComponent,
63 ForceSvgComponent,
64 GridsvgComponent,
65 HostNodeSvgComponent,
Sean Condonf4f54a12018-10-10 23:25:46 +010066 InstanceComponent,
Sean Condonff85fbe2019-03-16 14:28:46 +000067 LinkSvgComponent,
68 MapSelectorComponent,
69 MapSvgComponent,
70 NoDeviceConnectedSvgComponent,
71 SubRegionNodeSvgComponent,
Sean Condonf4f54a12018-10-10 23:25:46 +010072 SummaryComponent,
73 ToolbarComponent,
Sean Condonff85fbe2019-03-16 14:28:46 +000074 TopologyComponent,
Sean Condon0c577f62018-11-18 22:40:05 +000075 ZoomableDirective,
76 DraggableDirective,
Sean Condon590b34b2019-12-04 18:44:37 +000077 BadgeSvgComponent,
Sean Condonaa4366d2018-11-02 14:29:01 +000078 ],
79 providers: [
Sean Condonff85fbe2019-03-16 14:28:46 +000080 TopologyService,
Sean Condon28884332019-03-21 14:07:00 +000081 TrafficService,
82 LayoutService
Sean Condonff85fbe2019-03-16 14:28:46 +000083 ],
84 exports: [
85 BackgroundSvgComponent,
86 DetailsComponent,
87 DeviceNodeSvgComponent,
88 ForceSvgComponent,
89 GridsvgComponent,
90 HostNodeSvgComponent,
91 InstanceComponent,
92 LinkSvgComponent,
93 MapSelectorComponent,
94 MapSvgComponent,
95 NoDeviceConnectedSvgComponent,
96 SubRegionNodeSvgComponent,
97 SummaryComponent,
98 ToolbarComponent,
99 TopologyComponent,
100 ZoomableDirective,
101 DraggableDirective,
Sean Condon590b34b2019-12-04 18:44:37 +0000102 BadgeSvgComponent
Sean Condonf4f54a12018-10-10 23:25:46 +0100103 ]
104})
Sean Condonff85fbe2019-03-16 14:28:46 +0000105export class Gui2TopoLibModule { }