All files / src/app/core/directives not-role-toggle.directive.ts

100% Statements 19/19
80% Branches 16/20
100% Functions 5/5
100% Lines 19/19

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 547x 7x 7x 7x   7x                                   7x 145x     145x 145x 145x 145x   145x   292x 300x         169x 150x   19x   165x         147x      
import { ChangeDetectorRef, Directive, Input, TemplateRef, ViewContainerRef } from '@angular/core';
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
import { BehaviorSubject, of } from 'rxjs';
import { distinctUntilChanged, map, switchMap } from 'rxjs/operators';
 
import { RoleToggleService } from 'ish-core/utils/role-toggle/role-toggle.service';
 
/**
 * Structural directive.
 * Used on an element, this element will only be rendered if the logged in user has NOT the specified role or one of the specified roles.
 *
 * @example
 * <div *ishHasNotRole="'APP_B2B_OCI_USER'">
 *   Only visible when the current user is not an OCI punchout user.
 * </div>
 * or
 * <div *ishHasNotRole="['APP_B2B_CXML_USER', 'APP_B2B_OCI_USER']">
 *   Only visible when the current user is not an OCI punchout user.
 * </div>
 */
@Directive({
  selector: '[ishHasNotRole]',
})
export class NotRoleToggleDirective {
  private roleId$ = new BehaviorSubject<string | string[]>(undefined);
 
  constructor(
    private templateRef: TemplateRef<unknown>,
    private viewContainer: ViewContainerRef,
    private roleToggleService: RoleToggleService,
    private cdRef: ChangeDetectorRef
  ) {
    this.roleId$
      .pipe(
        switchMap(roleId => (roleId ? this.roleToggleService.hasRole(roleId) : of(false))),
        map(val => !val),
        distinctUntilChanged(),
        takeUntilDestroyed()
      )
      .subscribe(enabled => {
        if (enabled) {
          this.viewContainer.createEmbeddedView(this.templateRef);
        } else {
          this.viewContainer.clear();
        }
        this.cdRef.markForCheck();
      });
  }
 
  @Input() set ishHasNotRole(roleId: string | string[]) {
    this.roleId$.next(roleId);
  }
}