14cd9481431fccd5de84e25eea1a5bd877322967
[portal/ric-dashboard.git] / webapp-frontend / src / app / admin / admin.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, OnInit } from '@angular/core';
21 import { LocalDataSource } from 'ng2-smart-table';
22 import { AdminService } from '../services/admin/admin.service';
23
24 @Component({
25   selector: 'app-admin',
26   templateUrl: './admin.component.html',
27   styleUrls: ['./admin.component.css']
28 })
29 export class AdminComponent {
30
31
32   usersettings = {
33     columns: {
34       id: {
35         title: 'ID',
36         type: 'number',
37       },
38       firstName: {
39         title: 'First Name',
40         type: 'string',
41       },
42       lastName: {
43         title: 'Last Name',
44         type: 'string',
45       },
46       status: {
47         title: 'Status',
48         type: 'string',
49       },
50     },
51   };
52
53   usersource: LocalDataSource = new LocalDataSource();
54
55   constructor(private service: AdminService) {
56     const data = this.service.getData();
57     this.usersource.load(data);
58   }
59
60   onDeleteUserConfirm(event): void {
61     if (window.confirm('Are you sure you want to delete?')) {
62       event.confirm.resolve();
63     } else {
64       event.confirm.reject();
65     }
66   }
67
68 }