Apply mat-table to control and catalog
[portal/ric-dashboard.git] / webapp-frontend / src / app / catalog / catalog.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 import { Component, OnInit} from '@angular/core';
21 import { XappMgrService } from '../services/xapp-mgr/xapp-mgr.service';
22 import { ConfirmDialogService } from './../services/ui/confirm-dialog.service'
23 import { NotificationService } from './../services/ui/notification.service'
24 import { ErrorDialogService } from '../services/ui/error-dialog.service';
25 import { CatalogDataSource } from './catalog.datasource';
26
27 @Component({
28   selector: 'app-catalog',
29   templateUrl: './catalog.component.html',
30   styleUrls: ['./catalog.component.css'],
31 })
32 export class CatalogComponent implements OnInit{
33
34   displayedColumns: string[] = ['name', 'version', 'status', 'action'];
35   dataSource: CatalogDataSource;
36
37   constructor(
38     private xappMgrSvc: XappMgrService,
39     private confirmDialogService: ConfirmDialogService,
40     private errorService: ErrorDialogService,
41     private notification: NotificationService) { }
42
43   ngOnInit() {
44     this.dataSource = new CatalogDataSource(this.xappMgrSvc);
45     this.dataSource.loadTable();
46   }
47
48   onConfigurexApp(name: string): void {
49     const aboutError = 'Not implemented yet';
50     this.errorService.displayError(aboutError);
51   }
52
53   onDeployxApp(name: string): void {
54     this.confirmDialogService.openConfirmDialog('Are you sure you want to deploy this xApp?')
55       .afterClosed().subscribe(res => {
56         if (res) {
57           this.xappMgrSvc.deployXapp(name).subscribe(
58             response => {
59               switch (response.status) {
60                 case 200:
61                   this.notification.success('xApp deploy succeeded!');
62                   break;
63                 default:
64                   this.notification.warn('xApp deploy failed.');
65               }
66             }
67           );
68         }
69       });
70
71   }
72 }