refactor(forms): make form group responsible for supporting optional controls

This commit is contained in:
vsavkin
2015-03-10 18:12:30 -07:00
parent 5acde20c7d
commit 10fb7bb05f
4 changed files with 71 additions and 93 deletions

View File

@ -1,4 +1,5 @@
export * from './src/forms/model'; export * from './src/forms/model';
export * from './src/forms/directives'; export * from './src/forms/directives';
export * from './src/forms/validators'; export * from './src/forms/validators';
export * from './src/forms/validator_directives'; export * from './src/forms/validator_directives';
export * from './src/forms/form_builder';

View File

@ -11,7 +11,6 @@ export const INVALID = "INVALID";
// get status():string; // get status():string;
// get valid():boolean; // get valid():boolean;
// get errors():Map; // get errors():Map;
// get active():boolean {}
// updateValue(value:any){} // updateValue(value:any){}
// setParent(parent){} // setParent(parent){}
//} //}
@ -29,10 +28,6 @@ export class AbstractControl {
this._dirty = true; this._dirty = true;
} }
get active():boolean {
return true;
}
get value() { get value() {
this._updateIfNeeded(); this._updateIfNeeded();
return this._value; return this._value;
@ -90,13 +85,30 @@ export class Control extends AbstractControl {
export class ControlGroup extends AbstractControl { export class ControlGroup extends AbstractControl {
controls; controls;
optionals;
constructor(controls, validator:Function = controlGroupValidator) { constructor(controls, optionals = null, validator:Function = controlGroupValidator) {
super(validator); super(validator);
this.controls = controls; this.controls = controls;
this.optionals = isPresent(optionals) ? optionals : {};
this._setParentForControls(); this._setParentForControls();
} }
include(controlName:string) {
this._dirty = true;
StringMapWrapper.set(this.optionals, controlName, true);
}
exclude(controlName:string) {
this._dirty = true;
StringMapWrapper.set(this.optionals, controlName, false);
}
contains(controlName:string) {
var c = StringMapWrapper.contains(this.controls, controlName);
return c && this._included(controlName);
}
_setParentForControls() { _setParentForControls() {
StringMapWrapper.forEach(this.controls, (control, name) => { StringMapWrapper.forEach(this.controls, (control, name) => {
control.setParent(this); control.setParent(this);
@ -115,7 +127,7 @@ export class ControlGroup extends AbstractControl {
_reduceValue() { _reduceValue() {
var newValue = {}; var newValue = {};
StringMapWrapper.forEach(this.controls, (control, name) => { StringMapWrapper.forEach(this.controls, (control, name) => {
if (control.active) { if (this._included(name)) {
newValue[name] = control.value; newValue[name] = control.value;
} }
}); });
@ -126,56 +138,9 @@ export class ControlGroup extends AbstractControl {
this._dirty = true; this._dirty = true;
this._updateParent(); this._updateParent();
} }
}
export class OptionalControl { _included(controlName:string):boolean {
_control:Control; var isOptional = StringMapWrapper.contains(this.optionals, controlName);
_cond:boolean; return !isOptional || StringMapWrapper.get(this.optionals, controlName);
constructor(control:Control, cond:boolean) {
super();
this._control = control;
this._cond = cond;
}
get active():boolean {
return this._cond;
}
get value() {
return this._control.value;
}
get status() {
return this._control.status;
}
get errors() {
return this._control.errors;
}
set validator(v) {
this._control.validator = v;
}
get validator() {
return this._control.validator;
}
set cond(value:boolean){
this._cond = value;
this._control._updateParent();
}
get cond():boolean{
return this._cond;
}
updateValue(value:any){
this._control.updateValue(value);
}
setParent(parent){
this._control.setParent(parent);
} }
} }

View File

@ -24,7 +24,7 @@ export function compose(validators:List<Function>):Function {
export function controlGroupValidator(c:ControlGroup) { export function controlGroupValidator(c:ControlGroup) {
var res = {}; var res = {};
StringMapWrapper.forEach(c.controls, (control, name) => { StringMapWrapper.forEach(c.controls, (control, name) => {
if (control.active && isPresent(control.errors)) { if (c.contains(name) && isPresent(control.errors)) {
StringMapWrapper.forEach(control.errors, (value, error) => { StringMapWrapper.forEach(control.errors, (value, error) => {
if (! StringMapWrapper.contains(res, error)) { if (! StringMapWrapper.contains(res, error)) {
res[error] = []; res[error] = [];

View File

@ -84,56 +84,68 @@ export function main() {
expect(g.errors).toEqual(null); expect(g.errors).toEqual(null);
}); });
}); });
});
describe("OptionalControl", () => { describe("optional components", () => {
it("should read properties from the wrapped component", () => { describe("contains", () => {
var wrapperControl = new Control("value", validations.required); var group;
var c = new OptionalControl(wrapperControl, true);
expect(c.value).toEqual('value'); beforeEach(() => {
expect(c.status).toEqual('VALID'); group = new ControlGroup({
expect(c.validator).toEqual(validations.required); "required": new Control("requiredValue"),
}); "optional": new Control("optionalValue")
}, {
"optional": false
});
});
it("should update the wrapped component", () => { // rename contains into has
var wrappedControl = new Control("value"); it("should return false when the component is not included", () => {
var c = new OptionalControl(wrappedControl, true); expect(group.contains("optional")).toEqual(false);
})
c.validator = validations.required; it("should return false when there is no component with the given name", () => {
c.updateValue("newValue"); expect(group.contains("something else")).toEqual(false);
});
it("should return true when the component is included", () => {
expect(group.contains("required")).toEqual(true);
expect(wrappedControl.validator).toEqual(validations.required); group.include("optional");
expect(wrappedControl.value).toEqual('newValue');
});
it("should not include an inactive component into the group value", () => { expect(group.contains("optional")).toEqual(true);
var group = new ControlGroup({ });
"required" : new Control("requiredValue"),
"optional" : new OptionalControl(new Control("optionalValue"), false)
}); });
expect(group.value).toEqual({"required" : "requiredValue"}); it("should not include an inactive component into the group value", () => {
var group = new ControlGroup({
"required": new Control("requiredValue"),
"optional": new Control("optionalValue")
}, {
"optional": false
});
group.controls["optional"].cond = true; expect(group.value).toEqual({"required" : "requiredValue"});
expect(group.value).toEqual({"required" : "requiredValue", "optional" : "optionalValue"}); group.include("optional");
});
it("should not run validations on an inactive component", () => { expect(group.value).toEqual({"required" : "requiredValue", "optional" : "optionalValue"});
var group = new ControlGroup({
"required" : new Control("requiredValue", validations.required),
"optional" : new OptionalControl(new Control("", validations.required), false)
}); });
expect(group.valid).toEqual(true); it("should not run validations on an inactive component", () => {
var group = new ControlGroup({
"required": new Control("requiredValue", validations.required),
"optional": new Control("", validations.required)
}, {
"optional": false
});
group.controls["optional"].cond = true; expect(group.valid).toEqual(true);
expect(group.valid).toEqual(false); group.include("optional");
expect(group.valid).toEqual(false);
});
}); });
}); });
}); });
} }