All files / projects/organization-management/src/app/pages/user-edit-profile user-edit-profile-page.component.ts

69.23% Statements 9/13
60% Branches 3/5
66.66% Functions 2/3
69.23% Lines 9/13

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 461x 1x         1x               1x         1x   1x     1x 1x 1x                                      
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
import { Observable } from 'rxjs';
 
import { HttpError } from 'ish-core/models/http-error/http-error.model';
 
import { OrganizationManagementFacade } from '../../facades/organization-management.facade';
import { B2bUser } from '../../models/b2b-user/b2b-user.model';
 
@Component({
  selector: 'ish-user-edit-profile-page',
  templateUrl: './user-edit-profile-page.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class UserEditProfilePageComponent implements OnInit {
  loading$: Observable<boolean>;
  userError$: Observable<HttpError>;
  selectedUser$: Observable<B2bUser>;
 
  profileForm = new UntypedFormGroup({});
 
  constructor(private organizationManagementFacade: OrganizationManagementFacade) {}
 
  ngOnInit() {
    this.loading$ = this.organizationManagementFacade.usersLoading$;
    this.userError$ = this.organizationManagementFacade.usersError$;
    this.selectedUser$ = this.organizationManagementFacade.selectedUser$;
  }
 
  submitForm(b2bUser: B2bUser) {
    Iif (this.profileForm.valid) {
      const formValue = this.profileForm.value;
 
      const user: B2bUser = {
        ...b2bUser,
        title: formValue.title,
        firstName: formValue.firstName,
        lastName: formValue.lastName,
        active: formValue.active,
        phoneHome: formValue.phoneHome,
      };
      this.organizationManagementFacade.updateUser(user);
    }
  }
}