Adding checkbox to enable/disable auto-refresh
[portal/nonrtric-controlpanel.git] / webapp-frontend / src / app / ei-coordinator / ei-coordinator.module.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2021 AT&T Intellectual Property
6  * Modifications Copyright (C) 2019 Nordix Foundation
7  * Modifications Copyright (C) 2020 Nordix Foundation
8  * %%
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ========================LICENSE_END===================================
21  */
22 import { NgModule } from '@angular/core';
23 import { CommonModule } from '@angular/common';
24 import { RouterModule, Routes } from '@angular/router';
25 import { EICoordinatorComponent } from './ei-coordinator.component';
26 import { ProducersListComponent } from './producers-list/producers-list.component';
27 import { JobsListComponent } from './jobs-list/jobs-list.component';
28 import { FormsModule } from '@angular/forms';
29 import { MatTableModule } from '@angular/material/table';
30 import { MatIconModule } from '@angular/material/icon';
31 import { MatInputModule } from '@angular/material/input';
32 import { ReactiveFormsModule } from '@angular/forms';
33 import { MatCheckboxModule } from '@angular/material/checkbox';
34 import { MatSortModule } from '@angular/material/sort';
35 import { MatButtonModule } from '@angular/material/button';
36 import { FlexLayoutModule } from '@angular/flex-layout';
37 import { EiCardComponent } from './ei-card/ei-card.component';
38 import { MatPaginatorModule } from '@angular/material/paginator';
39 import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
40 import { MatTooltipModule } from '@angular/material/tooltip';
41
42
43 const routes: Routes = [
44   { path: 'ei-coordinator', component: EICoordinatorComponent }
45 ];
46
47 @NgModule({
48   declarations: [
49     EICoordinatorComponent,
50     ProducersListComponent,
51     JobsListComponent,
52     EiCardComponent
53   ],
54   imports: [
55     CommonModule,
56     FlexLayoutModule,
57     FormsModule,
58     MatTableModule,
59     MatIconModule,
60     MatInputModule,
61     ReactiveFormsModule,
62     MatCheckboxModule,
63     MatSortModule,
64     MatPaginatorModule,
65     MatButtonModule,
66     MatProgressSpinnerModule,
67     MatTooltipModule,
68     RouterModule.forChild(routes)
69   ],
70   exports: [
71     EICoordinatorComponent,
72     EiCardComponent
73   ]
74 })
75 export class EiCoordinatorModule { }