Newer
Older
francois.grand
committed
import { Component, Input, Output, EventEmitter, QueryList, ViewChildren, DoCheck } from "@angular/core";
import { FieldsetContainer } from "../../formulaire/fieldset-container";
francois.grand
committed
import { SelectEntry } from "../../formulaire/select-entry";
francois.grand
committed
import { FieldSet } from "../../formulaire/fieldset";
import { FieldSetComponent } from "../field-set/field-set.component";
@Component({
selector: "fieldset-container",
templateUrl: "./fieldset-container.component.html"
})
francois.grand
committed
export class FieldsetContainerComponent implements DoCheck {
@Input("container")
private _container: FieldsetContainer;
francois.grand
committed
/**
* liste des composants FieldSet enfants
*/
@ViewChildren(FieldSetComponent)
private _fieldsetComponents: QueryList<FieldSetComponent>;
/**
* flag de validité des FieldSet enfants
*/
private _isValid: boolean = false;
private get title(): string {
if (this._container == undefined)
return undefined;
return this._container.label;
}
private get fieldsets() {
return this._container.fieldsets;
}
private addStructure() {
this._container.addFromTemplate(this._container.templates[0].id);
}
francois.grand
committed
/*
* gestion des événements clic sur les radios :
* réception d'un message du composant enfant (field-set)
* cf. https://angular.io/guide/component-interaction#parent-listens-for-child-event
*/
private onRadioClick(info: any) {
// on renvoie l'info au parent
this.onRadio.emit(info);
}
/**
* événément de changement d'état d'un radio
*/
@Output()
private onRadio = new EventEmitter<any>();
francois.grand
committed
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
public ngDoCheck() {
this.updateValidity();
}
/**
* calcul de la validité de tous les FieldSet de la vue
*/
private updateValidity() {
this._isValid = false;
if (this._fieldsetComponents != undefined)
this._isValid = this._fieldsetComponents.reduce(
// callback
(
// accumulator (valeur précédente du résultat)
acc,
// currentValue (élément courant dans le tableau)
fielset,
// currentIndex (indice courant dans le tableau)
currIndex,
// array (tableau parcouru)
array
) => {
return acc && fielset.isValid;
}
// valeur initiale
, this._fieldsetComponents.length > 0);
this.validChange.emit();
}
public get isValid() {
return this._isValid;
}
/**
* événément de changement de validité
*/
@Output()
private validChange = new EventEmitter();
/**
* réception d'un événement de validité de FieldSet
*/
private onFieldsetValid() {
this.updateValidity();
}