Skip to content
Snippets Groups Projects
form-element-component.directive.ts 1.97 KiB
Newer Older
  • Learn to ignore specific revisions
  • import {
    
      Directive, EventEmitter, Input, OnDestroy, OnInit, Output
    
    } from '@angular/core';
    
      FormControl, FormGroup, ValidatorFn, Validators
    
    } from '@angular/forms';
    
    import { Subject } from 'rxjs';
    import { pairwise, startWith, takeUntil } from 'rxjs/operators';
    import { ElementComponent } from './element-component.directive';
    
    import { InputElement, InputElementValue, ValueChangeElement } from '../models/uI-element';
    
    export abstract class FormElementComponent extends ElementComponent implements OnInit, OnDestroy {
    
      @Input() parentForm!: FormGroup;
    
      @Output() elementValueChanged = new EventEmitter<ValueChangeElement>();
    
      @Output() setValidators = new EventEmitter<ValidatorFn[]>();
    
      elementFormControl!: FormControl;
    
      private ngUnsubscribe = new Subject<void>();
    
    rhenck's avatar
    rhenck committed
    
      ngOnInit(): void {
    
        this.elementFormControl = this.formControl;
    
        this.elementFormControl?.setValue((this.elementModel as InputElement).value, { emitEvent: false });
    
        this.setValidators.emit(this.validators);
    
        this.elementFormControl.valueChanges
          .pipe(
    
            startWith((this.elementModel as InputElement).value),
    
            pairwise(),
            takeUntil(this.ngUnsubscribe)
    
          .subscribe(([prevValue, nextValue]: [InputElementValue, InputElementValue]) => {
    
            this.elementValueChanged.emit({ id: this.elementModel.id, values: [prevValue, nextValue] });
    
      get validators(): ValidatorFn[] {
        const validators: ValidatorFn[] = [];
    
        if ((this.elementModel as InputElement).required) {
    
          validators.push(Validators.required);
        }
        return validators;
      }
    
    
      private get formControl(): FormControl {
    
        // workaround for editor
    
        return (this.parentForm) ?
          this.parentForm.controls[this.elementModel.id] as FormControl :
          new FormControl({});
    
    rhenck's avatar
    rhenck committed
      setFormValue(value: InputElementValue): void {
        this.elementFormControl.setValue(value);
      }
    
    
      ngOnDestroy(): void {
        this.ngUnsubscribe.next();
        this.ngUnsubscribe.complete();