Initial Commit - NG UI
[osm/NG-UI.git] / src / app / utilities / roles-action / RolesActionComponent.ts
1 /*
2  Copyright 2020 TATA ELXSI
3
4  Licensed under the Apache License, Version 2.0 (the 'License');
5  you may not use this file except in compliance with the License.
6  You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15
16  Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in)
17 */
18 /**
19  * @file Roles Action Component
20  */
21 import { Component, Injector } from '@angular/core';
22 import { Router } from '@angular/router';
23 import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
24 import { MODALCLOSERESPONSEDATA } from 'CommonModel';
25 import { DeleteComponent } from 'DeleteComponent';
26 import { RoleData } from 'RolesModel';
27 import { SharedService } from 'SharedService';
28
29 /**
30  * Creating component
31  * @Component takes RolesActionComponent.html as template url
32  */
33 @Component({
34   selector: 'app-roles-action',
35   templateUrl: './RolesActionComponent.html',
36   styleUrls: ['./RolesActionComponent.scss']
37 })
38 /** Exporting a class @exports RolesActionComponent */
39 export class RolesActionComponent {
40   /** To get the role data via valuePrepareFunction default Property of ng-smarttable @public */
41   public value: RoleData;
42
43   /** To inject services @public */
44   public injector: Injector;
45
46   /** Instance of the modal service @private */
47   private modalService: NgbModal;
48
49   /** Contains all methods related to shared @private */
50   private sharedService: SharedService;
51
52   /** Holds the instance of roter service @private */
53   private router: Router;
54
55   constructor(injector: Injector) {
56     this.injector = injector;
57     this.modalService = this.injector.get(NgbModal);
58     this.sharedService = this.injector.get(SharedService);
59     this.router = this.injector.get(Router);
60   }
61
62   /** Delete Role click handler @public */
63   public deleteRole(): void {
64     const modalRef: NgbModalRef = this.modalService.open(DeleteComponent, { backdrop: 'static' });
65     modalRef.result.then((result: MODALCLOSERESPONSEDATA) => {
66       if (result) {
67         this.sharedService.callData();
68       }
69     }).catch();
70   }
71
72   /** Edit Role click handler @public */
73   public editRole(): void {
74     this.router.navigate(['/roles/edit', this.value.identifier]).catch(() => {
75       // Catch Navigation Error
76     });
77   }
78
79 }