Initial Commit - NG UI
[osm/NG-UI.git] / src / app / utilities / users-action / UsersActionComponent.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 Users Action Component
20  */
21 import { Component, Injector } from '@angular/core';
22 import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
23 import { TranslateService } from '@ngx-translate/core';
24 import { AddEditUserComponent } from 'AddEditUserComponent';
25 import { MODALCLOSERESPONSEDATA } from 'CommonModel';
26 import { DeleteComponent } from 'DeleteComponent';
27 import { ProjectRoleComponent } from 'ProjectRoleComponent';
28 import { SharedService } from 'SharedService';
29 import { UserData } from 'UserModel';
30 /**
31  * Creating component
32  * @Component takes UsersActionComponent.html as template url
33  */
34 @Component({
35     templateUrl: './UsersActionComponent.html',
36     styleUrls: ['./UsersActionComponent.scss']
37 })
38 /** Exporting a class @exports UsersActionComponent */
39 export class UsersActionComponent {
40     /** To inject services @public */
41     public injector: Injector;
42
43     /** To get the value from the Users action via valuePrepareFunction default Property of ng-smarttable @public */
44     public value: UserData;
45
46     /** handle translate @public */
47     public translateService: TranslateService;
48
49     /** Instance of the modal service @private */
50     private modalService: NgbModal;
51
52     /** Contains all methods related to shared @private */
53     private sharedService: SharedService;
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.translateService = this.injector.get(TranslateService);
60     }
61
62     /** Delete User Account @public */
63     public deleteUser(): 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 User Account @public */
73     public editUserModal(editType: string): void {
74         const modalRef: NgbModalRef = this.modalService.open(AddEditUserComponent, { backdrop: 'static' });
75         modalRef.componentInstance.userID = this.value.identifier;
76         if (editType === 'editPassword') {
77             modalRef.componentInstance.userTitle = this.translateService.instant('PAGE.USERS.EDITCREDENTIALS');
78         } else {
79             modalRef.componentInstance.userTitle = this.translateService.instant('PAGE.USERS.EDITUSERNAME');
80         }
81         modalRef.componentInstance.userType = editType;
82         modalRef.componentInstance.userName = this.value.username;
83         modalRef.result.then((result: MODALCLOSERESPONSEDATA) => {
84             if (result) {
85                 this.sharedService.callData();
86             }
87         }).catch();
88     }
89
90     /** Edit User Account @public */
91     public projectRolesModal(): void {
92         const modalRef: NgbModalRef = this.modalService.open(ProjectRoleComponent, { backdrop: 'static' });
93         modalRef.componentInstance.userID = this.value.identifier;
94         modalRef.componentInstance.userTitle = this.translateService.instant('PAGE.USERS.EDITPROJECTROLEMAPPING');
95         modalRef.result.then((result: MODALCLOSERESPONSEDATA) => {
96             if (result) {
97                 this.sharedService.callData();
98             }
99         }).catch();
100     }
101 }