X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Futilities%2Fusers-action%2FUsersActionComponent.ts;h=04fd58a5dac678adb2879e5be9d4856ed9dd4ac2;hb=1b17c432991a95035a1732426f0c11db57e511c9;hp=cb0b462add025ba3367ea06aa27873af99ed098c;hpb=50e53afdfc376c2055284bda4be1664acfe4fcee;p=osm%2FNG-UI.git diff --git a/src/app/utilities/users-action/UsersActionComponent.ts b/src/app/utilities/users-action/UsersActionComponent.ts index cb0b462..04fd58a 100644 --- a/src/app/utilities/users-action/UsersActionComponent.ts +++ b/src/app/utilities/users-action/UsersActionComponent.ts @@ -18,6 +18,7 @@ /** * @file Users Action Component */ +import { isNullOrUndefined } from 'util'; import { Component, Injector } from '@angular/core'; import { NgbModal, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'; import { TranslateService } from '@ngx-translate/core'; @@ -27,6 +28,7 @@ import { DeleteComponent } from 'DeleteComponent'; import { ProjectRoleComponent } from 'ProjectRoleComponent'; import { SharedService } from 'SharedService'; import { UserData } from 'UserModel'; +import { WarningComponent } from 'WarningComponent'; /** * Creating component * @Component takes UsersActionComponent.html as template url @@ -46,6 +48,15 @@ export class UsersActionComponent { /** handle translate @public */ public translateService: TranslateService; + /** Admin Visibility Check @public */ + public isAdminShow: boolean; + + /** User Visibility Check @public */ + public isUserShow: boolean; + + /** User Status Check @public */ + public isUserStatus: string; + /** Instance of the modal service @private */ private modalService: NgbModal; @@ -59,6 +70,17 @@ export class UsersActionComponent { this.translateService = this.injector.get(TranslateService); } + /** + * Lifecyle Hooks the trigger before component is instantiate + */ + public ngOnInit(): void { + this.isAdminShow = localStorage.getItem('admin_show') === 'true' ? true : false; + this.isUserShow = localStorage.getItem('user_show') === 'true' ? true : false; + if (!isNullOrUndefined(this.value.user_status)) { + this.isUserStatus = this.value.user_status; + } + } + /** Delete User Account @public */ public deleteUser(): void { // eslint-disable-next-line security/detect-non-literal-fs-filename @@ -107,4 +129,34 @@ export class UsersActionComponent { // Catch Navigation Error }); } + + /** To Unlock or Renew User @public */ + public unlockRenewUser(editType: string): void { + // eslint-disable-next-line security/detect-non-literal-fs-filename + const modalRef: NgbModalRef = this.modalService.open(WarningComponent, { backdrop: 'static' }); + localStorage.setItem('renew', 'true'); + const id: string = localStorage.getItem('user_id'); + if (editType === 'unlock') { + modalRef.componentInstance.heading = this.translateService.instant('Unlock User'); + modalRef.componentInstance.confirmationMessage = this.translateService.instant('Are you sure want to unlock this user'); + modalRef.componentInstance.submitMessage = this.translateService.instant('Unlock'); + modalRef.componentInstance.action = Boolean(true); + modalRef.componentInstance.editType = editType; + modalRef.componentInstance.id = this.value.identifier; + } else { + modalRef.componentInstance.heading = this.translateService.instant('Renew User'); + modalRef.componentInstance.confirmationMessage = this.translateService.instant('Are you sure want to renew this user'); + modalRef.componentInstance.submitMessage = this.translateService.instant('Renew'); + modalRef.componentInstance.action = Boolean(true); + modalRef.componentInstance.editType = editType; + modalRef.componentInstance.id = this.value.identifier; + } + modalRef.result.then((result: MODALCLOSERESPONSEDATA): void => { + if (result) { + this.sharedService.callData(); + } + }).catch((): void => { + // Catch Navigation Error + }); + } }