Initial commit of RIC Dashboard webapp
[portal/ric-dashboard.git] / webapp-frontend / src / app / catalog / catalog.component.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * ORAN-OSC
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 } from '@angular/core';
21 import { LocalDataSource } from 'ng2-smart-table';
22 import { CatalogService } from '../services/catalog/catalog.service';
23
24 @Component({
25   selector: 'app-catalog',
26   templateUrl: './catalog.component.html',
27   styleUrls: ['./catalog.component.css']
28 })
29 export class CatalogComponent {
30
31   settings = {
32     hideSubHeader: true,
33     actions: {
34       columnTitle: 'Actions',
35       add: false,
36       edit: false,
37       delete: false,
38       custom: [
39       { name: 'deployxApp', title: 'Deploy'},
40     ],
41       position: 'right'
42
43     },
44     columns: {
45       name: {
46         title: 'xApp Name',
47         type: 'string',
48       },
49       version: {
50         title: 'xApp Version',
51         type: 'string',
52       },
53       status: {
54         title: 'Status',
55         type: 'string',
56       },
57     },
58   };
59
60   source: LocalDataSource = new LocalDataSource();
61
62   constructor(private service: CatalogService) {
63     this.service.getAll().subscribe((val:any[]) => this.source.load(val));
64   }
65
66   onDeployxApp(event): void {
67     if (window.confirm('Are you sure you want to deploy?')) {
68       event.confirm.resolve();
69     } else {
70       event.confirm.reject();
71     }
72   }
73
74 }