ba25d37e8f780e172a0fc1ce977f016038b8dfba
[portal/ric-dashboard.git] / webapp-frontend / src / app / caas-ingress / caas-ingress.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property and Nokia
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20
21 import { Component, Input, OnInit, ViewChild } from '@angular/core';
22 import { MatSort } from '@angular/material/sort';
23 import { CaasIngressDataSource } from './caas-ingress.datasource';
24 import { CaasIngressService } from '../services/caas-ingress/caas-ingress.service';
25 import { ConfirmDialogService } from '../services/ui/confirm-dialog.service';
26 import { ErrorDialogService } from '../services/ui/error-dialog.service';
27 import { LoadingDialogService } from '../services/ui/loading-dialog.service';
28 import { NotificationService } from '../services/ui/notification.service';
29
30 @Component({
31   selector: 'rd-caas-ingress',
32   templateUrl: './caas-ingress.component.html',
33   styleUrls: ['./caas-ingress.component.scss']
34 })
35 export class CaasIngressComponent implements OnInit {
36
37   // Cluster name is displayed in page title
38   @Input() cluster: string;
39   // Namespace is used to query backend
40   @Input() namespace: string;
41
42   dataSource: CaasIngressDataSource;
43   displayedColumns: string[] = [ 'namespace', 'name', 'status', 'ip', 'containers', 'restartCount', 'creationTime' ];
44   @ViewChild(MatSort, { static: true }) sort: MatSort;
45
46   constructor(
47     private caasIngressSvc: CaasIngressService,
48     private confirmDialogService: ConfirmDialogService,
49     private errorDialogService: ErrorDialogService,
50     private loadingDialogService: LoadingDialogService,
51     private notificationService: NotificationService) { }
52
53   ngOnInit() {
54     this.dataSource = new CaasIngressDataSource(this.caasIngressSvc, this.sort, this.notificationService);
55     this.dataSource.loadTable(this.cluster, this.namespace);
56   }
57
58 }