All files / projects/organization-management/src/app/pages/cost-center-create cost-center-create-page.component.ts

63.63% Statements 7/11
60% Branches 3/5
66.66% Functions 2/3
63.63% Lines 7/11

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 431x 1x         1x             1x     2x   2x     2x                                          
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { UntypedFormGroup } from '@angular/forms';
import { Observable } from 'rxjs';
 
import { CostCenterBase } from 'ish-core/models/cost-center/cost-center.model';
 
import { OrganizationManagementFacade } from '../../facades/organization-management.facade';
 
@Component({
  selector: 'ish-cost-center-create-page',
  templateUrl: './cost-center-create-page.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class CostCenterCreatePageComponent implements OnInit {
  loading$: Observable<boolean>;
 
  form = new UntypedFormGroup({});
 
  constructor(private organizationManagementFacade: OrganizationManagementFacade) {}
 
  ngOnInit() {
    this.loading$ = this.organizationManagementFacade.costCentersLoading$;
  }
 
  submitForm() {
    Iif (this.form.valid) {
      const formValue = this.form.value;
 
      const costCenter: CostCenterBase = {
        id: undefined,
        costCenterId: formValue.costCenterId,
        name: formValue.name,
        budget: { value: formValue.budgetValue, currency: formValue.currency, type: 'Money' },
        budgetPeriod: formValue.budgetPeriod,
        costCenterOwner: { login: formValue.costCenterManager },
        active: formValue.active,
      };
 
      this.organizationManagementFacade.addCostCenter(costCenter);
    }
  }
}