Newer
Older
import { Directive, OnInit } from '@angular/core';
import { FormControl, FormGroup } from '@angular/forms';
import { pairwise, startWith } from 'rxjs/operators';
export abstract class FormElementComponent implements OnInit {
formControl: FormControl = new FormControl();
constructor(private formService: FormService) { }
this.formService.registerFormControl(this.elementModel.id);
this.formControl = this.getFormControl(this.elementModel.id);
this.formControl.valueChanges
.pipe(startWith(null), pairwise())
.subscribe(
([prevValue, nextValue] : [unknown, unknown]) => this.onValueChange([prevValue, nextValue])
);
// workaround for editor
return (this.parentForm) ? this.parentForm.controls[id] as FormControl : new FormControl();
}
private onValueChange(values: [unknown, unknown]): void {
this.formService.changeElementValue({ element, values });