X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fapp%2Futilities%2Fusers-action%2FUsersActionComponent.ts;h=a7b4c2480ad9178833fa81ae742ebe29d886e443;hb=c84f1123f8ba69f9e2211b2d816bb415e595efaa;hp=cb0b462add025ba3367ea06aa27873af99ed098c;hpb=0a34dfa32165036b380ec6ac493469b34007df0a;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..a7b4c24 100644 --- a/src/app/utilities/users-action/UsersActionComponent.ts +++ b/src/app/utilities/users-action/UsersActionComponent.ts @@ -25,8 +25,9 @@ import { AddEditUserComponent } from 'AddEditUserComponent'; import { MODALCLOSERESPONSEDATA } from 'CommonModel'; import { DeleteComponent } from 'DeleteComponent'; import { ProjectRoleComponent } from 'ProjectRoleComponent'; -import { SharedService } from 'SharedService'; +import { SharedService, isNullOrUndefined } from 'SharedService'; import { UserData } from 'UserModel'; +import { WarningComponent } from 'WarningComponent'; /** * Creating component * @Component takes UsersActionComponent.html as template url @@ -46,6 +47,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 +69,17 @@ export class UsersActionComponent { this.translateService = this.injector.get(TranslateService); } + /** + * Lifecyle Hooks the trigger before component is instantiate + */ + public ngOnInit(): void { + this.isAdminShow = sessionStorage.getItem('admin_show') === 'true' ? true : false; + this.isUserShow = sessionStorage.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 +128,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' }); + sessionStorage.setItem('renew', 'true'); + const id: string = sessionStorage.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 + }); + } }