src/app/customers/detail/payroll/form/form.component.ts (75 lines of code) (raw):

/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import {Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges, ViewChild} from '@angular/core'; import {PayrollConfiguration} from '../../../../services/payroll/domain/payroll-configuration.model'; import {AbstractControl, FormArray, FormBuilder, FormGroup, Validators} from '@angular/forms'; import {TdStepComponent} from '@covalent/core'; import {FimsValidators} from '../../../../common/validator/validators'; import {ProductInstance} from '../../../../services/depositAccount/domain/instance/product-instance.model'; import {PayrollAllocation} from '../../../../services/payroll/domain/payroll-allocation.model'; import {accountUnique} from './validator/account-unique.validator'; @Component({ selector: 'fims-customer-payroll-form', templateUrl: './form.component.html' }) export class CustomerPayrollFormComponent implements OnInit, OnChanges { form: FormGroup; @ViewChild('detailsStep') detailsStep: TdStepComponent; @Input('productInstances') productInstances: ProductInstance[]; @Input('distribution') distribution: PayrollConfiguration; @Output('onSave') onSave = new EventEmitter<PayrollConfiguration>(); @Output('onCancel') onCancel = new EventEmitter<void>(); constructor(private formBuilder: FormBuilder) { this.form = this.formBuilder.group({ mainAccountNumber: ['', [Validators.required]], payrollAllocations: this.initAllocations([]) }, { validator: accountUnique }); } ngOnInit(): void { this.detailsStep.open(); } ngOnChanges(changes: SimpleChanges): void { if (changes.distribution) { this.form.reset({ mainAccountNumber: this.distribution.mainAccountNumber }); this.distribution.payrollAllocations.forEach(allocation => this.addAllocation(allocation)); } } save(): void { const distribution = Object.assign({}, this.distribution, { mainAccountNumber: this.form.get('mainAccountNumber').value, payrollAllocations: this.form.get('payrollAllocations').value }); this.onSave.emit(distribution); } cancel(): void { this.onCancel.emit(); } private initAllocations(allocations: PayrollAllocation[]): FormArray { const formControls: FormGroup[] = []; allocations.forEach(allocation => formControls.push(this.initAllocation(allocation))); return this.formBuilder.array(formControls); } private initAllocation(allocation?: PayrollAllocation): FormGroup { return this.formBuilder.group({ accountNumber: [allocation ? allocation.accountNumber : '', [Validators.required]], amount: [allocation ? allocation.amount : '', [ Validators.required, FimsValidators.minValue(0.001), FimsValidators.maxValue(9999999999.99999)] ], proportional: [allocation ? allocation.proportional : false] }); } addAllocation(allocation?: PayrollAllocation): void { const allocations: FormArray = this.form.get('payrollAllocations') as FormArray; allocations.push(this.initAllocation(allocation)); } removeAllocation(index: number): void { const allocations: FormArray = this.form.get('payrollAllocations') as FormArray; allocations.removeAt(index); } get allocations(): AbstractControl[] { const allocations: FormArray = this.form.get('payrollAllocations') as FormArray; return allocations.controls; } }