8f8a2629f157fc3585bd663a3b2fc571d2202345
[portal/ric-dashboard.git] / webapp-frontend / src / app / admin / admin.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 { LocalDataSource } from 'ng2-smart-table';
22 import { DashboardService } from '../services/dashboard/dashboard.service';
23 import { DashboardUser } from '../interfaces/dashboard.types';
24
25 @Component({
26   selector: 'app-admin',
27   templateUrl: './admin.component.html',
28   styleUrls: ['./admin.component.css']
29 })
30 export class AdminComponent implements OnInit {
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: DashboardService) {
56   }
57
58   ngOnInit() {
59     this.service.getUsers().subscribe((res: DashboardUser[]) => this.usersource.load(res));
60   }
61
62   onDeleteUserConfirm(event): void {
63     if (window.confirm('Are you sure you want to delete?')) {
64       event.confirm.resolve();
65     } else {
66       event.confirm.reject();
67     }
68   }
69
70 }