2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-08 18:36:24 -04:00
|
|
|
import {Injectable} from '@angular/core';
|
2016-06-08 19:38:52 -04:00
|
|
|
|
|
|
|
import {AsyncValidatorFn, ValidatorFn} from './directives/validators';
|
2016-06-22 17:56:10 -04:00
|
|
|
import {AbstractControl, FormArray, FormControl, FormGroup} from './model';
|
2016-06-08 19:38:52 -04:00
|
|
|
|
2016-06-08 18:36:24 -04:00
|
|
|
/**
|
2016-09-13 16:23:31 -04:00
|
|
|
* @whatItDoes Creates an {@link AbstractControl} from a user-specified configuration.
|
|
|
|
*
|
|
|
|
* It is essentially syntactic sugar that shortens the `new FormGroup()`,
|
|
|
|
* `new FormControl()`, and `new FormArray()` boilerplate that can build up in larger
|
|
|
|
* forms.
|
|
|
|
*
|
|
|
|
* @howToUse
|
2016-06-08 18:36:24 -04:00
|
|
|
*
|
2016-09-13 16:23:31 -04:00
|
|
|
* To use, inject `FormBuilder` into your component class. You can then call its methods
|
|
|
|
* directly.
|
2016-06-08 18:36:24 -04:00
|
|
|
*
|
2016-09-13 16:23:31 -04:00
|
|
|
* {@example forms/ts/formBuilder/form_builder_example.ts region='Component'}
|
2016-06-08 18:36:24 -04:00
|
|
|
*
|
2016-09-13 16:23:31 -04:00
|
|
|
* * **npm package**: `@angular/forms`
|
|
|
|
*
|
|
|
|
* * **NgModule**: {@link ReactiveFormsModule}
|
2016-06-08 18:36:24 -04:00
|
|
|
*
|
2016-08-17 10:44:39 -04:00
|
|
|
* @stable
|
2016-06-08 18:36:24 -04:00
|
|
|
*/
|
|
|
|
@Injectable()
|
|
|
|
export class FormBuilder {
|
|
|
|
/**
|
2016-06-10 14:15:59 -04:00
|
|
|
* Construct a new {@link FormGroup} with the given map of configuration.
|
2016-09-13 16:23:31 -04:00
|
|
|
* Valid keys for the `extra` parameter map are `validator` and `asyncValidator`.
|
2016-06-08 18:36:24 -04:00
|
|
|
*
|
2016-06-10 14:15:59 -04:00
|
|
|
* See the {@link FormGroup} constructor for more details.
|
2016-06-08 18:36:24 -04:00
|
|
|
*/
|
2017-04-17 14:13:30 -04:00
|
|
|
group(controlsConfig: {[key: string]: any}, extra: {[key: string]: any}|null = null): FormGroup {
|
2016-08-24 19:58:43 -04:00
|
|
|
const controls = this._reduceControls(controlsConfig);
|
2017-03-02 12:37:01 -05:00
|
|
|
const validator: ValidatorFn = extra != null ? extra['validator'] : null;
|
|
|
|
const asyncValidator: AsyncValidatorFn = extra != null ? extra['asyncValidator'] : null;
|
2016-08-24 19:58:43 -04:00
|
|
|
return new FormGroup(controls, validator, asyncValidator);
|
2016-06-08 18:36:24 -04:00
|
|
|
}
|
|
|
|
/**
|
2016-08-24 19:58:43 -04:00
|
|
|
* Construct a new {@link FormControl} with the given `formState`,`validator`, and
|
|
|
|
* `asyncValidator`.
|
2016-09-13 16:23:31 -04:00
|
|
|
*
|
|
|
|
* `formState` can either be a standalone value for the form control or an object
|
|
|
|
* that contains both a value and a disabled status.
|
|
|
|
*
|
2016-06-08 18:36:24 -04:00
|
|
|
*/
|
2016-06-13 14:27:04 -04:00
|
|
|
control(
|
2017-04-17 14:13:30 -04:00
|
|
|
formState: Object, validator?: ValidatorFn|ValidatorFn[]|null,
|
|
|
|
asyncValidator?: AsyncValidatorFn|AsyncValidatorFn[]|null): FormControl {
|
2016-08-24 19:58:43 -04:00
|
|
|
return new FormControl(formState, validator, asyncValidator);
|
2016-06-08 18:36:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-09-13 16:23:31 -04:00
|
|
|
* Construct a {@link FormArray} from the given `controlsConfig` array of
|
2016-06-08 18:36:24 -04:00
|
|
|
* configuration, with the given optional `validator` and `asyncValidator`.
|
|
|
|
*/
|
2016-06-08 19:38:52 -04:00
|
|
|
array(
|
2017-04-17 14:13:30 -04:00
|
|
|
controlsConfig: any[], validator?: ValidatorFn|null,
|
|
|
|
asyncValidator?: AsyncValidatorFn|null): FormArray {
|
2016-11-12 08:08:58 -05:00
|
|
|
const controls = controlsConfig.map(c => this._createControl(c));
|
2016-06-22 17:56:10 -04:00
|
|
|
return new FormArray(controls, validator, asyncValidator);
|
2016-06-08 18:36:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @internal */
|
2016-06-22 17:56:10 -04:00
|
|
|
_reduceControls(controlsConfig: {[k: string]: any}): {[key: string]: AbstractControl} {
|
2016-11-12 08:08:58 -05:00
|
|
|
const controls: {[key: string]: AbstractControl} = {};
|
2016-10-03 19:46:05 -04:00
|
|
|
Object.keys(controlsConfig).forEach(controlName => {
|
|
|
|
controls[controlName] = this._createControl(controlsConfig[controlName]);
|
2016-06-08 18:36:24 -04:00
|
|
|
});
|
|
|
|
return controls;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** @internal */
|
2016-06-22 17:56:10 -04:00
|
|
|
_createControl(controlConfig: any): AbstractControl {
|
|
|
|
if (controlConfig instanceof FormControl || controlConfig instanceof FormGroup ||
|
|
|
|
controlConfig instanceof FormArray) {
|
2016-06-08 18:36:24 -04:00
|
|
|
return controlConfig;
|
|
|
|
|
2016-10-19 16:42:39 -04:00
|
|
|
} else if (Array.isArray(controlConfig)) {
|
|
|
|
const value = controlConfig[0];
|
|
|
|
const validator: ValidatorFn = controlConfig.length > 1 ? controlConfig[1] : null;
|
|
|
|
const asyncValidator: AsyncValidatorFn = controlConfig.length > 2 ? controlConfig[2] : null;
|
2016-06-08 18:36:24 -04:00
|
|
|
return this.control(value, validator, asyncValidator);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
return this.control(controlConfig);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|