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