2016-06-23 09:47:54 -07: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
|
|
|
|
|
*/
|
|
|
|
|
|
2017-03-16 10:15:17 -07:00
|
|
|
|
import {EventEmitter} from '@angular/core';
|
2018-02-27 17:06:06 -05:00
|
|
|
|
import {Observable} from 'rxjs';
|
2016-06-13 11:27:04 -07:00
|
|
|
|
import {composeAsyncValidators, composeValidators} from './directives/shared';
|
2017-02-23 20:53:29 +03:00
|
|
|
|
import {AsyncValidatorFn, ValidationErrors, ValidatorFn} from './directives/validators';
|
2017-03-16 10:15:17 -07:00
|
|
|
|
import {toObservable} from './validators';
|
2017-02-01 15:41:14 -08:00
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports that a FormControl is valid, meaning that no errors exist in the input value.
|
2018-06-07 13:31:25 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 表示此 FormControl 有效,也就是说它的输入值中没有错误。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
export const VALID = 'VALID';
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports that a FormControl is invalid, meaning that an error exists in the input value.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 表示此 FormControl 无效,也就是说它的输入值中存在错误。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
export const INVALID = 'INVALID';
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports that a FormControl is pending, meaning that that async validation is occurring and
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* errors are not yet available for the input value.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 表示此 FormControl 处于未决状态,表示正在进行异步验证,还不知道输入值中有没有错误。
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* @see `markAsPending`
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
export const PENDING = 'PENDING';
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports that a FormControl is disabled, meaning that the control is exempt from ancestor
|
2016-08-24 16:58:43 -07:00
|
|
|
|
* calculations of validity or value.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 表示此 FormControl 被禁用了,表示该控件不会参与各级祖先对值的有效性的计算。
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* @see `markAsDisabled`
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2016-08-24 16:58:43 -07:00
|
|
|
|
*/
|
|
|
|
|
export const DISABLED = 'DISABLED';
|
|
|
|
|
|
2016-08-01 14:22:50 -07:00
|
|
|
|
function _find(control: AbstractControl, path: Array<string|number>| string, delimiter: string) {
|
2016-10-21 15:14:44 -07:00
|
|
|
|
if (path == null) return null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
|
if (!(path instanceof Array)) {
|
2016-08-01 14:22:50 -07:00
|
|
|
|
path = (<string>path).split(delimiter);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
2016-10-19 19:55:50 +03:00
|
|
|
|
if (path instanceof Array && (path.length === 0)) return null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-04-17 11:13:30 -07:00
|
|
|
|
return (<Array<string|number>>path).reduce((v: AbstractControl, name) => {
|
2016-06-10 11:15:59 -07:00
|
|
|
|
if (v instanceof FormGroup) {
|
2018-04-07 15:11:02 +08:00
|
|
|
|
return v.controls.hasOwnProperty(name as string) ? v.controls[name] : null;
|
2016-06-08 16:38:52 -07:00
|
|
|
|
}
|
2016-10-07 18:11:37 -07:00
|
|
|
|
|
|
|
|
|
if (v instanceof FormArray) {
|
|
|
|
|
return v.at(<number>name) || null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
2016-06-08 16:38:52 -07:00
|
|
|
|
}, control);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
2017-02-23 20:53:29 +03:00
|
|
|
|
|
2017-07-25 15:01:04 -07:00
|
|
|
|
function coerceToValidator(
|
|
|
|
|
validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null): ValidatorFn|
|
|
|
|
|
null {
|
|
|
|
|
const validator =
|
|
|
|
|
(isOptionsObj(validatorOrOpts) ? (validatorOrOpts as AbstractControlOptions).validators :
|
|
|
|
|
validatorOrOpts) as ValidatorFn |
|
|
|
|
|
ValidatorFn[] | null;
|
|
|
|
|
|
2017-04-17 11:13:30 -07:00
|
|
|
|
return Array.isArray(validator) ? composeValidators(validator) : validator || null;
|
2016-06-13 11:27:04 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-25 15:01:04 -07:00
|
|
|
|
function coerceToAsyncValidator(
|
|
|
|
|
asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null, validatorOrOpts?: ValidatorFn |
|
|
|
|
|
ValidatorFn[] | AbstractControlOptions | null): AsyncValidatorFn|null {
|
|
|
|
|
const origAsyncValidator =
|
|
|
|
|
(isOptionsObj(validatorOrOpts) ? (validatorOrOpts as AbstractControlOptions).asyncValidators :
|
|
|
|
|
asyncValidator) as AsyncValidatorFn |
|
|
|
|
|
AsyncValidatorFn | null;
|
|
|
|
|
|
|
|
|
|
return Array.isArray(origAsyncValidator) ? composeAsyncValidators(origAsyncValidator) :
|
|
|
|
|
origAsyncValidator || null;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
|
export type FormHooks = 'change' | 'blur' | 'submit';
|
2017-08-02 18:10:10 -07:00
|
|
|
|
|
2018-02-01 11:25:14 +08:00
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* Interface for options provided to an `AbstractControl`.
|
2018-02-01 11:25:14 +08:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 提供给 `AbstractControl` 的配置项接口。
|
|
|
|
|
*
|
2018-10-19 12:12:20 +01:00
|
|
|
|
* @publicApi
|
2018-02-01 11:25:14 +08:00
|
|
|
|
*/
|
2017-07-25 15:01:04 -07:00
|
|
|
|
export interface AbstractControlOptions {
|
2018-02-01 11:25:14 +08:00
|
|
|
|
/**
|
2018-11-01 13:51:37 -05:00
|
|
|
|
* @description
|
|
|
|
|
* The list of validators applied to a control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 应用于该控件的验证器列表。
|
|
|
|
|
*
|
2018-02-01 11:25:14 +08:00
|
|
|
|
*/
|
2017-07-25 15:01:04 -07:00
|
|
|
|
validators?: ValidatorFn|ValidatorFn[]|null;
|
2018-02-01 11:25:14 +08:00
|
|
|
|
/**
|
2018-11-01 13:51:37 -05:00
|
|
|
|
* @description
|
|
|
|
|
* The list of async validators applied to control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 应用于该控件的异步验证器列表。
|
|
|
|
|
*
|
2018-02-01 11:25:14 +08:00
|
|
|
|
*/
|
2017-07-25 15:01:04 -07:00
|
|
|
|
asyncValidators?: AsyncValidatorFn|AsyncValidatorFn[]|null;
|
2018-02-01 11:25:14 +08:00
|
|
|
|
/**
|
2018-11-01 13:51:37 -05:00
|
|
|
|
* @description
|
2018-02-01 11:25:14 +08:00
|
|
|
|
* The event name for control to update upon.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 会导致更新控件的事件名称。
|
|
|
|
|
*
|
2018-02-01 11:25:14 +08:00
|
|
|
|
*/
|
|
|
|
|
updateOn?: 'change'|'blur'|'submit';
|
2016-06-13 11:27:04 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
|
|
2017-07-25 15:01:04 -07:00
|
|
|
|
function isOptionsObj(
|
|
|
|
|
validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null): boolean {
|
|
|
|
|
return validatorOrOpts != null && !Array.isArray(validatorOrOpts) &&
|
|
|
|
|
typeof validatorOrOpts === 'object';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* This is the base class for `FormControl`, `FormGroup`, and `FormArray`.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 这是 `FormControl`、`FormGroup` 和 `FormArray` 的基类。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* It provides some of the shared behavior that all controls and groups of controls have, like
|
|
|
|
|
* running validators, calculating status, and resetting state. It also defines the properties
|
|
|
|
|
* that are shared between all sub-classes, like `value`, `valid`, and `dirty`. It shouldn't be
|
|
|
|
|
* instantiated directly.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 它提供了一些所有控件和控件组共有的行为,比如运行验证器、计算状态和重置状态。
|
|
|
|
|
* 它还定义了一些所有子类共享的属性,如 `value`、`valid` 和 `dirty`。不允许直接实例化它。
|
|
|
|
|
*
|
2018-02-08 15:00:53 +00:00
|
|
|
|
* @see [Forms Guide](/guide/forms)
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* [表单](/guide/forms)
|
|
|
|
|
*
|
2018-02-08 15:00:53 +00:00
|
|
|
|
* @see [Reactive Forms Guide](/guide/reactive-forms)
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* [响应式表单](/guide/reactive-forms)
|
|
|
|
|
*
|
2018-02-08 15:00:53 +00:00
|
|
|
|
* @see [Dynamic Forms Guide](/guide/dynamic-form)
|
2018-04-05 22:31:44 +01:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* [动态表单](/guide/dynamic-form)
|
|
|
|
|
*
|
2018-10-19 17:36:24 +01:00
|
|
|
|
* @publicApi
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
export abstract class AbstractControl {
|
2017-08-07 15:39:25 -07:00
|
|
|
|
/** @internal */
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
_pendingDirty !: boolean;
|
2017-08-07 15:39:25 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
_pendingTouched !: boolean;
|
2017-08-07 15:39:25 -07:00
|
|
|
|
|
2016-09-02 15:57:35 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_onCollectionChange = () => {};
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-08-09 15:41:53 -07:00
|
|
|
|
/** @internal */
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
_updateOn !: FormHooks;
|
2017-08-09 15:41:53 -07:00
|
|
|
|
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
private _parent !: FormGroup | FormArray;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
private _asyncValidationSubscription: any;
|
2018-06-07 13:31:25 -05:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* The current value of the control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 控件的当前值。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* * For a `FormControl`, the current value.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 对于 `FormControl`,它是当前值。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* * For a `FormGroup`, the values of enabled controls as an object
|
|
|
|
|
* with a key-value pair for each member of the group.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 对于 `FormGroup`,它是由组中的每个已启用的成员控件的名称和值组成的对象。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* * For a `FormArray`, the values of enabled controls as an array.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 对于 `FormArray`,它是有所有已启用的控件的值组成的数组。
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
public readonly value: any;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2018-02-08 15:00:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* Initialize the AbstractControl instance.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 初始化这个 AbstractControl 实例。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param validator The function that determines the synchronous validity of this control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 用于决定该控件有效性的同步函数。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param asyncValidator The function that determines the asynchronous validity of this
|
2018-02-08 15:00:53 +00:00
|
|
|
|
* control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 用于决定该控件有效性的异步函数。
|
|
|
|
|
*
|
2018-02-08 15:00:53 +00:00
|
|
|
|
*/
|
2017-04-17 11:13:30 -07:00
|
|
|
|
constructor(public validator: ValidatorFn|null, public asyncValidator: AsyncValidatorFn|null) {}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-10-19 19:55:50 +03:00
|
|
|
|
/**
|
|
|
|
|
* The parent control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 父控件。
|
2016-10-19 19:55:50 +03:00
|
|
|
|
*/
|
|
|
|
|
get parent(): FormGroup|FormArray { return this._parent; }
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* The validation status of the control. There are four possible
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* validation status values:
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 控件的有效性状态。有四个可能的值:
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * **VALID**: This control has passed all validation checks.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* **VALID**: 该控件通过了所有有效性检查。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * **INVALID**: This control has failed at least one validation check.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* **INVALID** 该控件至少有一个有效性检查失败了。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * **PENDING**: This control is in the midst of conducting a validation check.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* **PENDING**:该控件正在进行有效性检查,处于中间状态。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * **DISABLED**: This control is exempt from validation checks.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* **DISABLED**:该控件被禁用,豁免了有效性检查。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* These status values are mutually exclusive, so a control cannot be
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* both valid AND invalid or invalid AND disabled.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 这些状态值是互斥的,因此一个控件不可能同时处于有效状态和无效状态或无效状态和禁用状态。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
public readonly status !: string;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is `valid` when its `status` is `VALID`.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当控件的 `status` 为 `VALID` 时,它就是 `valid` 的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if the control has passed all of its validation tests,
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* false otherwise.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果该控件通过了所有有效性检查,则为 `true`,否则为 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get valid(): boolean { return this.status === VALID; }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is `invalid` when its `status` is `INVALID`.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当控件的 `status` 为 `INVALID` 时,它就是 `invalid` 的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if this control has failed one or more of its validation checks,
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* false otherwise.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果该控件的一个或多个有效性检查失败了,则为 `true`,否则为 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get invalid(): boolean { return this.status === INVALID; }
|
2016-08-01 18:41:25 -07:00
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is `pending` when its `status` is `PENDING`.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当控件的 `status` 为 `PENDING` 时,它就是 `pending` 的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if this control is in the process of conducting a validation check,
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* false otherwise.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果该控件正在进行有效性检查,则为 `true`,否则为 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get pending(): boolean { return this.status == PENDING; }
|
2016-09-12 20:31:13 -07:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is `disabled` when its `status` is `DISABLED`.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当控件的 `status` 为 `DISABLED` 时,它就是 `disabled`。
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* Disabled controls are exempt from validation checks and
|
|
|
|
|
* are not included in the aggregate value of their ancestor
|
|
|
|
|
* controls.
|
2018-06-11 14:24:00 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 被禁用的控件会豁免有效性检查,并且它的值不会聚合进其祖先控件中。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if the control is disabled, false otherwise.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果该控件被禁用了,则为 `true`,否则为 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get disabled(): boolean { return this.status === DISABLED; }
|
2016-09-12 20:31:13 -07:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is `enabled` as long as its `status` is not `DISABLED`.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果控件的 `status` 不是 `DISABLED` 时,它就是 `enabled`。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `status`
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if the control has any status other than 'DISABLED',
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* false if the status is 'DISABLED'.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果该控件处于 'DISABLED' 之外的任何状态,则为 `true`,否则为 `false`。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get enabled(): boolean { return this.status !== DISABLED; }
|
2016-09-12 20:31:13 -07:00
|
|
|
|
|
|
|
|
|
/**
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* An object containing any errors generated by failing validation,
|
|
|
|
|
* or null if there are no errors.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 一个对象,包含由失败的验证所生成的那些错误,如果没出错则为 null。
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
public readonly errors !: ValidationErrors | null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* A control is `pristine` if the user has not yet changed
|
|
|
|
|
* the value in the UI.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果用户尚未修改 UI 中的值,则该控件是 `pristine`(原始状态)的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if the user has not yet changed the value in the UI; compare `dirty`.
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Programmatic changes to a control's value do not mark it dirty.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果用户尚未修改过 UI 中的值,则为 `true`,与 `dirty` 相反。
|
|
|
|
|
* 以编程的方式修改控件的值不会把它标记为 `dirty`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
public readonly pristine: boolean = true;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* A control is `dirty` if the user has changed the value
|
|
|
|
|
* in the UI.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果用户修改过 UI 中的值,则控件是 `dirty`(脏) 的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns True if the user has changed the value of this control in the UI; compare `pristine`.
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Programmatic changes to a control's value do not mark it dirty.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果用户在 UI 中修改过该控件的值,则为 `true`;与 `pristine` 相对。
|
|
|
|
|
* 用编程的方式修改控件的值不会将其标记为 `dirty`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-06-08 15:36:24 -07:00
|
|
|
|
get dirty(): boolean { return !this.pristine; }
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* True if the control is marked as `touched`.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果控件被标记为 `touched`(碰过) 则为 `true`。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* A control is marked `touched` once the user has triggered
|
|
|
|
|
* a `blur` event on it.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 一旦用户在控件上触发了 `blur` 事件,则会将其标记为 `touched`。
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
public readonly touched: boolean = false;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* True if the control has not been marked as touched
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果该控件尚未标记为 `touched`,则为 `true`。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* A control is `untouched` if the user has not yet triggered
|
|
|
|
|
* a `blur` event on it.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果用户尚未在控件上触发过 `blur` 事件,则该控件为 `untouched`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-09-13 14:00:10 -07:00
|
|
|
|
get untouched(): boolean { return !this.touched; }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* A multicasting observable that emits an event every time the value of the control changes, in
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* the UI or programmatically.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 一个多播 Observable(可观察对象),每当控件的值发生变化时,它就会发出一个事件 —— 无论是通过 UI 还是通过程序。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
public readonly valueChanges !: Observable<any>;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* A multicasting observable that emits an event every time the validation `status` of the control
|
|
|
|
|
* recalculates.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 一个多播 Observable(可观察对象),每当控件的验证 `status` 被重新计算时,就会发出一个事件。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2018-06-18 16:38:33 -07:00
|
|
|
|
// TODO(issue/24571): remove '!'.
|
|
|
|
|
public readonly statusChanges !: Observable<any>;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-08-09 15:41:53 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports the update strategy of the `AbstractControl` (meaning
|
|
|
|
|
* the event on which the control updates itself).
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Possible values: `'change'` | `'blur'` | `'submit'`
|
|
|
|
|
* Default value: `'change'`
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 报告这个 `AbstractControl` 的更新策略(表示控件用来更新自身状态的事件)。
|
|
|
|
|
* 可能的值有 `'change'` | `'blur'` | `'submit'`,默认值是 `'change'`。
|
2017-08-09 15:41:53 -07:00
|
|
|
|
*/
|
|
|
|
|
get updateOn(): FormHooks {
|
|
|
|
|
return this._updateOn ? this._updateOn : (this.parent ? this.parent.updateOn : 'change');
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Sets the synchronous validators that are active on this control. Calling
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* this overwrites any existing sync validators.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 设置该控件上所激活的同步验证器。调用它将会覆盖所有现存的同步验证器。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-04-17 11:13:30 -07:00
|
|
|
|
setValidators(newValidator: ValidatorFn|ValidatorFn[]|null): void {
|
2016-09-12 20:31:13 -07:00
|
|
|
|
this.validator = coerceToValidator(newValidator);
|
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Sets the async validators that are active on this control. Calling this
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* overwrites any existing async validators.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 设置该控件上所激活的异步验证器。调用它就会覆盖所有现存的异步验证器。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-11-10 21:09:22 +13:00
|
|
|
|
setAsyncValidators(newValidator: AsyncValidatorFn|AsyncValidatorFn[]|null): void {
|
2016-06-23 11:18:07 -04:00
|
|
|
|
this.asyncValidator = coerceToAsyncValidator(newValidator);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Empties out the sync validator list.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 清空同步验证器列表。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-06-23 11:18:07 -04:00
|
|
|
|
clearValidators(): void { this.validator = null; }
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Empties out the async validator list.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 清空异步验证器列表。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
|
|
|
|
clearAsyncValidators(): void { this.asyncValidator = null; }
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* Marks the control as `touched`. A control is touched by focus and
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* blur events that do not change the value; compare `markAsDirty`;
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把该控件标记为 `touched`。控件获得焦点并失去焦点不会修改这个值。与 `markAsDirty` 相对。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events events after marking is applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在应用完此标记后,该配置项会决定控件如何传播变更及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` 则只标记当前控件。如果为 `false` 或不提供,则标记它所有的直系祖先。默认为 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
markAsTouched(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{touched: boolean}).touched = true;
|
2016-07-01 15:36:04 -07:00
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent.markAsTouched(opts);
|
2016-07-01 15:36:04 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Marks the control as `untouched`.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把该控件标记为 `untouched`。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* If the control has any children, also marks all children as `untouched`
|
|
|
|
|
* and recalculates the `touched` status of all parent controls.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果该控件有任何子控件,还会把所有子控件标记为 `untouched`,并重新计算所有父控件的 `touched` 状态。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events after the marking is applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在应用完此标记后,该配置项会决定控件如何传播变更及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` 则只标记当前控件。如果为 `false` 或不提供,则标记它所有的直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
markAsUntouched(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{touched: boolean}).touched = false;
|
2017-08-07 15:39:25 -07:00
|
|
|
|
this._pendingTouched = false;
|
2016-09-12 20:31:13 -07:00
|
|
|
|
|
|
|
|
|
this._forEachChild(
|
|
|
|
|
(control: AbstractControl) => { control.markAsUntouched({onlySelf: true}); });
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent._updateTouched(opts);
|
2016-09-12 20:31:13 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Marks the control as `dirty`. A control becomes dirty when
|
2018-11-19 14:45:47 -05:00
|
|
|
|
* the control's value is changed through the UI; compare `markAsTouched`.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把控件标记为 `dirty`。当控件通过 UI 修改过时控件会变成 `dirty` 的;与 `markAsTouched` 相对。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events after marking is applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在应用完此标记后,该配置项会决定控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` 则只标记当前控件。如果为 `false` 或不提供,则标记它所有的直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
markAsDirty(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{pristine: boolean}).pristine = false;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent.markAsDirty(opts);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Marks the control as `pristine`.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把该控件标记为 `pristine`(原始状态)。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* If the control has any children, marks all children as `pristine`,
|
|
|
|
|
* and recalculates the `pristine` status of all parent
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* controls.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果该控件有任何子控件,则把所有子控件标记为 `pristine`,并重新计算所有父控件的 `pristine` 状态。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control emits events after
|
|
|
|
|
* marking is applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在应用完此标记后,该配置项会决定控件如何传播更改以及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false..
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` 则只标记当前控件。如果为 `false` 或不提供,则标记它所有的直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
markAsPristine(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{pristine: boolean}).pristine = true;
|
2017-08-07 15:39:25 -07:00
|
|
|
|
this._pendingDirty = false;
|
2016-07-12 15:02:25 -07:00
|
|
|
|
|
|
|
|
|
this._forEachChild((control: AbstractControl) => { control.markAsPristine({onlySelf: true}); });
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent._updatePristine(opts);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Marks the control as `pending`.
|
2017-11-06 21:59:09 +13:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把该控件标记为 `pending`(待定)的。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* A control is pending while the control performs async validation.
|
2017-11-06 21:59:09 +13:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当控件正在执行异步验证时,该控件是 `pending` 的。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control propagates changes and
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* emits events after marking is applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在应用完此标记后,该配置项会决定控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false..
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` 则只标记当前控件。如果为 `false` 或不提供,则标记它所有的直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), the `statusChanges`
|
|
|
|
|
* observable emits an event with the latest status the control is marked pending.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认值),则 `statusChanges`(Observable)会发出一个事件,传入控件的最近状态,并把控件标记为 `pending` 状态。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-11-06 21:59:09 +13:00
|
|
|
|
markAsPending(opts: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{status: string}).status = PENDING;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-11-06 21:59:09 +13:00
|
|
|
|
if (opts.emitEvent !== false) {
|
|
|
|
|
(this.statusChanges as EventEmitter<any>).emit(this.status);
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent.markAsPending(opts);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Disables the control. This means the control is exempt from validation checks and
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* excluded from the aggregate value of any parent. Its status is `DISABLED`.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 禁用此控件。这意味着该控件在表单验证检查时会被豁免,并且从其父控件的聚合值中排除它的值。它的状态是 `DISABLED`。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* If the control has children, all children are also disabled.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 如果该控件有子控件,则所有子控件也会被禁用。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param opts Configuration options that determine how the control propagates
|
|
|
|
|
* changes and emits events after the control is disabled.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在该控件被禁用之后,该配置项决定如何传播更改以及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false..
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true`,则只标记当前控件。如果为 `false` 或没有提供,则标记所有直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is disabled.
|
|
|
|
|
* When false, no events are emitted.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或没有提供(默认),则当控件被禁用时,`statusChanges` 和 `valueChanges` 这两个 Observable 都会发出最近的状态和值。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
disable(opts: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{status: string}).status = DISABLED;
|
|
|
|
|
(this as{errors: ValidationErrors | null}).errors = null;
|
2017-12-14 16:51:05 +01:00
|
|
|
|
this._forEachChild(
|
|
|
|
|
(control: AbstractControl) => { control.disable({...opts, onlySelf: true}); });
|
2016-08-24 16:58:43 -07:00
|
|
|
|
this._updateValue();
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (opts.emitEvent !== false) {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this.valueChanges as EventEmitter<any>).emit(this.value);
|
|
|
|
|
(this.statusChanges as EventEmitter<string>).emit(this.status);
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-14 16:51:05 +01:00
|
|
|
|
this._updateAncestors(opts);
|
2016-09-20 09:08:12 -07:00
|
|
|
|
this._onDisabledChange.forEach((changeFn) => changeFn(true));
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Enables the control. This means the control is included in validation checks and
|
|
|
|
|
* the aggregate value of its parent. Its status recalculates based on its value and
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* its validators.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 启用该控件。这意味着该控件包含在有效性检查中,并会出现在其父控件的聚合值中。它的状态会根据它的值和验证器而重新计算。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* By default, if the control has children, all children are enabled.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 默认情况下,如果该控件具有子控件,则所有子控件都会被启用。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param opts Configure options that control how the control propagates changes and
|
|
|
|
|
* emits events when marked as untouched
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 当标记为 `untouched` 时,该配置项会决定该控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, mark only this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* marks all direct ancestors. Default is false..
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true`,则只标记当前控件。如果为 `false` 或没有提供,则标记所有直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is enabled.
|
|
|
|
|
* When false, no events are emitted.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或没有提供(默认),则当控件被启用时,`statusChanges` 和 `valueChanges` 这两个 Observable 都会发出最近的状态和值。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
enable(opts: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{status: string}).status = VALID;
|
2017-12-14 16:51:05 +01:00
|
|
|
|
this._forEachChild(
|
|
|
|
|
(control: AbstractControl) => { control.enable({...opts, onlySelf: true}); });
|
2017-06-12 10:59:29 -07:00
|
|
|
|
this.updateValueAndValidity({onlySelf: true, emitEvent: opts.emitEvent});
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
2017-12-14 16:51:05 +01:00
|
|
|
|
this._updateAncestors(opts);
|
2016-09-20 09:08:12 -07:00
|
|
|
|
this._onDisabledChange.forEach((changeFn) => changeFn(false));
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-12-14 16:51:05 +01:00
|
|
|
|
private _updateAncestors(opts: {onlySelf?: boolean, emitEvent?: boolean}) {
|
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent.updateValueAndValidity(opts);
|
2016-08-24 16:58:43 -07:00
|
|
|
|
this._parent._updatePristine();
|
|
|
|
|
this._parent._updateTouched();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* @param parent Sets the parent of the control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 设置该控件的父控件
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-10 11:15:59 -07:00
|
|
|
|
setParent(parent: FormGroup|FormArray): void { this._parent = parent; }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Sets the value of the control. Abstract method (implemented in sub-classes).
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 设置该控件的值。这是一个抽象方法(由子类实现)。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-08-05 13:35:17 -07:00
|
|
|
|
abstract setValue(value: any, options?: Object): void;
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Patches the value of the control. Abstract method (implemented in sub-classes).
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 修补(patch)该控件的值。这是一个抽象方法(由子类实现)。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-08-05 13:35:17 -07:00
|
|
|
|
abstract patchValue(value: any, options?: Object): void;
|
2016-07-08 13:04:25 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Resets the control. Abstract method (implemented in sub-classes).
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 重置控件。这是一个抽象方法(由子类实现)。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-07-12 15:02:25 -07:00
|
|
|
|
abstract reset(value?: any, options?: Object): void;
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Recalculates the value and validation status of the control.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 重新计算控件的值和校验状态。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* By default, it also updates the value and validity of its ancestors.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 默认情况下,它还会更新其直系祖先的值和有效性状态。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param opts Configuration options determine how the control propagates changes and emits events
|
|
|
|
|
* after updates and validity checks are applied.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 当更新和进行有效性检查之后,该配置项会决定控件如何传播变更并发出事件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* * `onlySelf`: When true, only update this control. When false or not supplied,
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* update all direct ancestors. Default is false..
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true`,则只标记当前控件。如果为 `false` 或没有提供,则标记所有直系祖先。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或没有提供(默认),则当控件被启用时,`statusChanges` 和 `valueChanges` 这两个 Observable 都会发出最近的状态和值。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
updateValueAndValidity(opts: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-09-09 12:00:38 -07:00
|
|
|
|
this._setInitialStatus();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this._updateValue();
|
|
|
|
|
|
2016-09-09 12:00:38 -07:00
|
|
|
|
if (this.enabled) {
|
2016-12-04 01:17:09 +03:00
|
|
|
|
this._cancelExistingSubscription();
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{errors: ValidationErrors | null}).errors = this._runValidator();
|
|
|
|
|
(this as{status: string}).status = this._calculateStatus();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-09-13 14:00:10 -07:00
|
|
|
|
if (this.status === VALID || this.status === PENDING) {
|
2017-06-12 10:59:29 -07:00
|
|
|
|
this._runAsyncValidator(opts.emitEvent);
|
2016-09-09 12:00:38 -07:00
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (opts.emitEvent !== false) {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this.valueChanges as EventEmitter<any>).emit(this.value);
|
|
|
|
|
(this.statusChanges as EventEmitter<string>).emit(this.status);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent.updateValueAndValidity(opts);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-29 11:33:49 -07:00
|
|
|
|
/** @internal */
|
2017-06-12 10:59:29 -07:00
|
|
|
|
_updateTreeValidity(opts: {emitEvent?: boolean} = {emitEvent: true}) {
|
|
|
|
|
this._forEachChild((ctrl: AbstractControl) => ctrl._updateTreeValidity(opts));
|
|
|
|
|
this.updateValueAndValidity({onlySelf: true, emitEvent: opts.emitEvent});
|
2016-08-29 11:33:49 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-09-13 14:00:10 -07:00
|
|
|
|
private _setInitialStatus() {
|
|
|
|
|
(this as{status: string}).status = this._allControlsDisabled() ? DISABLED : VALID;
|
|
|
|
|
}
|
2016-09-09 12:00:38 -07:00
|
|
|
|
|
2017-02-23 20:53:29 +03:00
|
|
|
|
private _runValidator(): ValidationErrors|null {
|
2016-10-21 15:14:44 -07:00
|
|
|
|
return this.validator ? this.validator(this) : null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-17 11:13:30 -07:00
|
|
|
|
private _runAsyncValidator(emitEvent?: boolean): void {
|
2016-10-21 15:14:44 -07:00
|
|
|
|
if (this.asyncValidator) {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{status: string}).status = PENDING;
|
2016-10-21 15:14:44 -07:00
|
|
|
|
const obs = toObservable(this.asyncValidator(this));
|
2016-10-19 18:54:54 +02:00
|
|
|
|
this._asyncValidationSubscription =
|
2017-02-23 20:53:29 +03:00
|
|
|
|
obs.subscribe((errors: ValidationErrors | null) => this.setErrors(errors, {emitEvent}));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private _cancelExistingSubscription(): void {
|
2016-10-21 15:14:44 -07:00
|
|
|
|
if (this._asyncValidationSubscription) {
|
2016-08-02 15:53:34 -07:00
|
|
|
|
this._asyncValidationSubscription.unsubscribe();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Sets errors on a form control when running validations manually, rather than automatically.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 在手动(而不是自动)运行校验之后,设置表单控件上的错误信息。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Calling `setErrors` also updates the validity of the parent control.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 调用 `setErrors` 还会更新父控件的有效性状态。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Manually set the errors for a control
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 手动设置控件上的错误信息。
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* const login = new FormControl('someLogin');
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* login.setErrors({
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* notUnique: true
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* });
|
|
|
|
|
*
|
|
|
|
|
* expect(login.valid).toEqual(false);
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* expect(login.errors).toEqual({ notUnique: true });
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* login.setValue('someOtherLogin');
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
|
|
|
|
* expect(login.valid).toEqual(true);
|
|
|
|
|
* ```
|
|
|
|
|
*/
|
2017-06-12 10:59:29 -07:00
|
|
|
|
setErrors(errors: ValidationErrors|null, opts: {emitEvent?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{errors: ValidationErrors | null}).errors = errors;
|
2017-06-12 10:59:29 -07:00
|
|
|
|
this._updateControlsErrors(opts.emitEvent !== false);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Retrieves a child control given the control's name or path.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 根据指定的控件名称或路径获取子控件。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param path A dot-delimited string or array of string/number values that define the path to the
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一个由点号(`.`)分隔的字符串或 "字符串/数字" 数组定义的控件路径。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Retrieve a nested control
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 获取嵌套的控件
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* For example, to get a `name` control nested within a `person` sub-group:
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 比如,要获取子控件组 `person` 中的 `name` 控件:
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* * `this.form.get('person.name');`
|
|
|
|
|
*
|
|
|
|
|
* -OR-
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* - 或 -
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
* * `this.form.get(['person', 'name']);`
|
|
|
|
|
*/
|
2017-04-17 11:13:30 -07:00
|
|
|
|
get(path: Array<string|number>|string): AbstractControl|null { return _find(this, path, '.'); }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Reports error data for a specific error occurring in this control or in another control.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 获取发生在该控件或其他控件中发生的指定错误的出错数据。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @param errorCode The error code for which to retrieve data
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要获取的数据的错误码
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @param path The path to a control to check. If not supplied, checks for the error in this
|
|
|
|
|
* control.
|
2018-06-11 14:24:00 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 要检查的控件的路径。如果没有提供该参数,则检查该控件中的错误。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @returns The error data if the control with the given path has the given error, otherwise null
|
|
|
|
|
* or undefined.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果指定路径下的控件具有指定的错误,则返回出错数据,否则为 `null` 或 `undefined`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-04-17 11:13:30 -07:00
|
|
|
|
getError(errorCode: string, path?: string[]): any {
|
2016-10-21 15:14:44 -07:00
|
|
|
|
const control = path ? this.get(path) : this;
|
2017-09-13 14:00:10 -07:00
|
|
|
|
return control && control.errors ? control.errors[errorCode] : null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Reports whether the control with the given path has the error specified.
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 报告指定路径下的控件上是否有指定的错误。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @param errorCode The error code for which to retrieve data
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要获取的数据的错误码
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @param path The path to a control to check. If not supplied, checks for the error in this
|
|
|
|
|
* control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要检查的控件的路径。如果没有提供该参数,则检查该控件中的错误。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @returns True when the control with the given path has the error, otherwise false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 如果指定路径下的控件有这个错误则返回 `true`,否则返回 `false`。
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2017-04-17 11:13:30 -07:00
|
|
|
|
hasError(errorCode: string, path?: string[]): boolean { return !!this.getError(errorCode, path); }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-09-12 20:31:13 -07:00
|
|
|
|
/**
|
|
|
|
|
* Retrieves the top-level ancestor of this control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 获取该控件的顶级祖先。
|
|
|
|
|
*
|
2016-09-12 20:31:13 -07:00
|
|
|
|
*/
|
2016-06-08 15:36:24 -07:00
|
|
|
|
get root(): AbstractControl {
|
|
|
|
|
let x: AbstractControl = this;
|
|
|
|
|
|
2016-10-21 15:14:44 -07:00
|
|
|
|
while (x._parent) {
|
2016-06-08 15:36:24 -07:00
|
|
|
|
x = x._parent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-06-27 21:01:24 -06:00
|
|
|
|
_updateControlsErrors(emitEvent: boolean): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{status: string}).status = this._calculateStatus();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-06-27 21:01:24 -06:00
|
|
|
|
if (emitEvent) {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this.statusChanges as EventEmitter<string>).emit(this.status);
|
2016-06-27 21:01:24 -06:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-21 15:14:44 -07:00
|
|
|
|
if (this._parent) {
|
2016-06-27 21:01:24 -06:00
|
|
|
|
this._parent._updateControlsErrors(emitEvent);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_initObservables() {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{valueChanges: Observable<any>}).valueChanges = new EventEmitter();
|
|
|
|
|
(this as{statusChanges: Observable<any>}).statusChanges = new EventEmitter();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private _calculateStatus(): string {
|
2016-09-01 16:51:42 -07:00
|
|
|
|
if (this._allControlsDisabled()) return DISABLED;
|
2017-09-13 14:00:10 -07:00
|
|
|
|
if (this.errors) return INVALID;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
if (this._anyControlsHaveStatus(PENDING)) return PENDING;
|
|
|
|
|
if (this._anyControlsHaveStatus(INVALID)) return INVALID;
|
|
|
|
|
return VALID;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
abstract _updateValue(): void;
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-07-12 15:02:25 -07:00
|
|
|
|
abstract _forEachChild(cb: Function): void;
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
abstract _anyControls(condition: Function): boolean;
|
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
abstract _allControlsDisabled(): boolean;
|
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
abstract _syncPendingControls(): boolean;
|
|
|
|
|
|
2016-07-12 15:02:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_anyControlsHaveStatus(status: string): boolean {
|
2016-10-19 19:55:50 +03:00
|
|
|
|
return this._anyControls((control: AbstractControl) => control.status === status);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_anyControlsDirty(): boolean {
|
|
|
|
|
return this._anyControls((control: AbstractControl) => control.dirty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_anyControlsTouched(): boolean {
|
|
|
|
|
return this._anyControls((control: AbstractControl) => control.touched);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2017-06-12 10:59:29 -07:00
|
|
|
|
_updatePristine(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{pristine: boolean}).pristine = !this._anyControlsDirty();
|
2016-07-12 15:02:25 -07:00
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent._updatePristine(opts);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2017-06-12 10:59:29 -07:00
|
|
|
|
_updateTouched(opts: {onlySelf?: boolean} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{touched: boolean}).touched = this._anyControlsTouched();
|
2016-07-12 15:02:25 -07:00
|
|
|
|
|
2017-06-12 10:59:29 -07:00
|
|
|
|
if (this._parent && !opts.onlySelf) {
|
|
|
|
|
this._parent._updateTouched(opts);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-09-20 09:08:12 -07:00
|
|
|
|
_onDisabledChange: Function[] = [];
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_isBoxedValue(formState: any): boolean {
|
2016-10-19 13:42:39 -07:00
|
|
|
|
return typeof formState === 'object' && formState !== null &&
|
|
|
|
|
Object.keys(formState).length === 2 && 'value' in formState && 'disabled' in formState;
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
2016-09-02 15:57:35 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_registerOnCollectionChange(fn: () => void): void { this._onCollectionChange = fn; }
|
2017-08-09 15:41:53 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_setUpdateStrategy(opts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null): void {
|
|
|
|
|
if (isOptionsObj(opts) && (opts as AbstractControlOptions).updateOn != null) {
|
|
|
|
|
this._updateOn = (opts as AbstractControlOptions).updateOn !;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-05 11:02:42 +01:00
|
|
|
|
* Tracks the value and validation status of an individual form control.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 跟踪独立表单控件的值和验证状态。
|
|
|
|
|
*
|
2018-04-05 11:02:42 +01:00
|
|
|
|
* This is one of the three fundamental building blocks of Angular forms, along with
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* `FormGroup` and `FormArray`. It extends the `AbstractControl` class that
|
|
|
|
|
* implements most of the base functionality for accessing the value, validation status,
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* user interactions and events.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 它和 `FormGroup` 和 `FormArray` 是 Angular 表单的三大基本构造块之一。
|
|
|
|
|
* 它扩展了 `AbstractControl` 类,并实现了关于访问值、验证状态、用户交互和事件的大部分基本功能。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @see `AbstractControl`
|
|
|
|
|
* @see [Reactive Forms Guide](guide/reactive-forms)
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* [响应式表单](guide/reactive-forms)
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @see [Usage Notes](#usage-notes)
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* [注意事项](#usage-notes)
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @usageNotes
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* ### Initializing Form Controls
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 初始化表单控件
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Instantiate a `FormControl`, with an initial value.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 用一个初始值初始化 `FormControl`。
|
|
|
|
|
*
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('some value');
|
|
|
|
|
* console.log(control.value); // 'some value'
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*```
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* The following example initializes the control with a form state object. The `value`
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* and `disabled` keys are required in this case.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 下面的例子用一个表单状态对象初始化控件。这里用到的是 `value` 和 `disabled` 键。
|
|
|
|
|
*
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl({ value: 'n/a', disabled: true });
|
|
|
|
|
* console.log(control.value); // 'n/a'
|
|
|
|
|
* console.log(control.status); // 'DISABLED'
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* The following example initializes the control with a sync validator.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 下面的例子使用一个同步验证器初始化了该控件。
|
|
|
|
|
*
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('', Validators.required);
|
|
|
|
|
* console.log(control.value); // ''
|
|
|
|
|
* console.log(control.status); // 'INVALID'
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* The following example initializes the control using an options object.
|
2017-07-25 15:01:04 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 下面的例子使用一个配置对象初始化了该控件。
|
|
|
|
|
*
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('', {
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* validators: Validators.required,
|
|
|
|
|
* asyncValidators: myAsyncValidator
|
|
|
|
|
* });
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Configure the control to update on a blur event
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 配置该控件,使其在发生 `blur` 事件时更新
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Set the `updateOn` option to `'blur'` to update on the blur `event`.
|
2017-08-02 18:10:10 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把 `updateOn` 选项设置为 `'blur'`,可以在发生 `blur` 事件时更新。
|
|
|
|
|
*
|
2017-08-02 18:10:10 -07:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('', { updateOn: 'blur' });
|
2017-08-02 18:10:10 -07:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Configure the control to update on a submit event
|
2017-08-07 15:39:25 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 配置该控件,使其在发生 `submit` 事件时更新
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Set the `updateOn` option to `'submit'` to update on a submit `event`.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 把 `updateOn` 选项设置为 `'submit'`,可以在发生 `submit` 事件时更新。
|
|
|
|
|
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('', { updateOn: 'submit' });
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Reset the control back to an initial value
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 把该控件重置回初始值
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* You reset to a specific form state by passing through a standalone
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* value or a form state object that contains both a value and a disabled state
|
|
|
|
|
* (these are the only two properties that cannot be calculated).
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 通过传递包含值和禁用状态的独立值或表单状态对象,可以将其重置为特定的表单状态(这是所支持的仅有的两个非计算状态)。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```ts
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('Nancy');
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* console.log(control.value); // 'Nancy'
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* control.reset('Drew');
|
2018-04-05 22:31:44 +01:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* console.log(control.value); // 'Drew'
|
|
|
|
|
* ```
|
|
|
|
|
*
|
|
|
|
|
* ### Reset the control back to an initial value and disabled
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 把该控件重置回初始值并禁用。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* const control = new FormControl('Nancy');
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* console.log(control.value); // 'Nancy'
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* console.log(control.status); // 'VALID'
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* control.reset({ value: 'Drew', disabled: true });
|
|
|
|
|
*
|
2018-07-26 18:57:58 +03:00
|
|
|
|
* console.log(control.value); // 'Drew'
|
|
|
|
|
* console.log(control.status); // 'DISABLED'
|
2018-11-20 20:40:33 +08:00
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-10-19 17:36:24 +01:00
|
|
|
|
* @publicApi
|
|
|
|
|
*/
|
2016-06-10 11:15:59 -07:00
|
|
|
|
export class FormControl extends AbstractControl {
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/** @internal */
|
2016-06-15 15:15:41 -07:00
|
|
|
|
_onChange: Function[] = [];
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_pendingValue: any;
|
|
|
|
|
|
2017-11-11 02:54:36 -08:00
|
|
|
|
/** @internal */
|
|
|
|
|
_pendingChange: any;
|
|
|
|
|
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* Creates a new `FormControl` instance.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 创建新的 `FormControl` 实例。
|
|
|
|
|
*
|
2018-06-27 14:33:16 -05:00
|
|
|
|
* @param formState Initializes the control with an initial value,
|
|
|
|
|
* or an object that defines the initial value and disabled state.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 使用一个初始值或定义了初始值和禁用状态的对象初始化该控件。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @param validatorOrOpts A synchronous validator function, or an array of
|
|
|
|
|
* such functions, or an `AbstractControlOptions` object that contains validation functions
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* and a validation trigger.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一个同步验证器函数或其数组,或者一个包含验证函数和验证触发器的 `AbstractControlOptions` 对象。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param asyncValidator A single async validator or array of async validator functions
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一个异步验证器函数或其数组。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
constructor(
|
2017-07-25 15:01:04 -07:00
|
|
|
|
formState: any = null,
|
|
|
|
|
validatorOrOpts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null,
|
2017-04-17 11:13:30 -07:00
|
|
|
|
asyncValidator?: AsyncValidatorFn|AsyncValidatorFn[]|null) {
|
2017-07-25 15:01:04 -07:00
|
|
|
|
super(
|
|
|
|
|
coerceToValidator(validatorOrOpts),
|
|
|
|
|
coerceToAsyncValidator(asyncValidator, validatorOrOpts));
|
2016-08-24 16:58:43 -07:00
|
|
|
|
this._applyFormState(formState);
|
2017-08-02 18:10:10 -07:00
|
|
|
|
this._setUpdateStrategy(validatorOrOpts);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity({onlySelf: true, emitEvent: false});
|
|
|
|
|
this._initObservables();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Sets a new value for the form control.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 设置该表单控件的新值。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @param value The new value for the control.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 控件的新值。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configuration options that determine how the control proopagates changes
|
|
|
|
|
* and emits events when the value changes.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当值发生变化时,该配置项决定如何传播变更以及发出事件。
|
|
|
|
|
* 该配置项会传递给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default is
|
|
|
|
|
* false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true`,则每次变更只影响该控件本身,不影响其父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control value is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值变化时,
|
|
|
|
|
* `statusChanges` 和 `valueChanges` 这两个 Observable 都会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitModelToViewChange`: When true or not supplied (the default), each change triggers an
|
|
|
|
|
* `onChange` event to
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* update the view.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitModelToViewChange`:如果为 `true` 或未提供(默认),则每次变化都会触发一个 `onChange` 事件以更新视图。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitViewToModelChange`: When true or not supplied (the default), each change triggers an
|
|
|
|
|
* `ngModelChange`
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* event to update the model.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `emitViewToModelChange`:如果为 `true` 或未提供(默认),则每次变化都会触发一个 `ngModelChange` 事件以更新模型。
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
setValue(value: any, options: {
|
2016-06-08 15:36:24 -07:00
|
|
|
|
onlySelf?: boolean,
|
|
|
|
|
emitEvent?: boolean,
|
2016-07-12 15:02:25 -07:00
|
|
|
|
emitModelToViewChange?: boolean,
|
|
|
|
|
emitViewToModelChange?: boolean
|
2016-06-08 15:36:24 -07:00
|
|
|
|
} = {}): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{value: any}).value = this._pendingValue = value;
|
2017-04-27 13:39:21 -07:00
|
|
|
|
if (this._onChange.length && options.emitModelToViewChange !== false) {
|
|
|
|
|
this._onChange.forEach(
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(changeFn) => changeFn(this.value, options.emitViewToModelChange !== false));
|
2016-06-15 15:15:41 -07:00
|
|
|
|
}
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-05 13:35:17 -07:00
|
|
|
|
/**
|
2016-09-13 00:14:07 -07:00
|
|
|
|
* Patches the value of a control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 修补控件的值。
|
|
|
|
|
*
|
2017-10-13 22:27:38 +03:00
|
|
|
|
* This function is functionally the same as {@link FormControl#setValue setValue} at this level.
|
|
|
|
|
* It exists for symmetry with {@link FormGroup#patchValue patchValue} on `FormGroups` and
|
|
|
|
|
* `FormArrays`, where it does behave differently.
|
2018-06-11 15:48:35 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 在 `FormControl` 这个层次上,该函数的功能和 {@link FormControl#setValue setValue} 完全相同。
|
|
|
|
|
* 但 `FormGroup` 和 `FormArray` 上的 {@link FormGroup#patchValue patchValue} 则具有不同的行为。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @see `setValue` for options
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `setValue` 的配置项
|
2016-08-05 13:35:17 -07:00
|
|
|
|
*/
|
|
|
|
|
patchValue(value: any, options: {
|
|
|
|
|
onlySelf?: boolean,
|
|
|
|
|
emitEvent?: boolean,
|
|
|
|
|
emitModelToViewChange?: boolean,
|
|
|
|
|
emitViewToModelChange?: boolean
|
|
|
|
|
} = {}): void {
|
|
|
|
|
this.setValue(value, options);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 00:14:07 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Resets the form control, marking it `pristine` and `untouched`, and setting
|
|
|
|
|
* the value to null.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 重置该表单控件,把它标记为 `pristine` 和 `untouched`,并把它的值设置为 `null`。
|
|
|
|
|
*
|
2018-06-27 14:33:16 -05:00
|
|
|
|
* @param formState Resets the control with an initial value,
|
|
|
|
|
* or an object that defines the initial value and disabled state.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 使用初始值或一个包含初始值和禁用状态的对象来重置该控件。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events after the value changes.
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当值发生变化时,该配置项会决定控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default is
|
|
|
|
|
* false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`:如果为 `true` ,则每个变更只会影响当前控件而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is reset.
|
|
|
|
|
* When false, no events are emitted.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件被重置时,
|
|
|
|
|
* `statusChanges` 和 `valueChanges` 这两个 Observable 都会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false`,则不会发出事件。
|
2016-09-13 00:14:07 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
reset(formState: any = null, options: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
this._applyFormState(formState);
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.markAsPristine(options);
|
|
|
|
|
this.markAsUntouched(options);
|
2017-09-13 14:00:10 -07:00
|
|
|
|
this.setValue(this.value, options);
|
2017-11-11 02:54:36 -08:00
|
|
|
|
this._pendingChange = false;
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/**
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
_updateValue() {}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
2016-07-12 15:02:25 -07:00
|
|
|
|
_anyControls(condition: Function): boolean { return false; }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
|
/**
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
_allControlsDisabled(): boolean { return this.disabled; }
|
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/**
|
|
|
|
|
* Register a listener for change events.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 注册变更事件的监听器。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param fn The method that is called when the value changes
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 当值变化时,就会调用该方法。
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-15 15:15:41 -07:00
|
|
|
|
registerOnChange(fn: Function): void { this._onChange.push(fn); }
|
2016-07-12 15:02:25 -07:00
|
|
|
|
|
2016-08-25 14:37:57 -07:00
|
|
|
|
/**
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
_clearChangeFns(): void {
|
|
|
|
|
this._onChange = [];
|
2016-09-20 09:08:12 -07:00
|
|
|
|
this._onDisabledChange = [];
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._onCollectionChange = () => {};
|
2016-08-25 14:37:57 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
|
/**
|
|
|
|
|
* Register a listener for disabled events.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 注册禁用事件的监听器。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param fn The method that is called when the disabled status changes.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 当禁用状态发生变化时,就会调用该方法。
|
2016-08-24 16:58:43 -07:00
|
|
|
|
*/
|
2016-09-20 09:08:12 -07:00
|
|
|
|
registerOnDisabledChange(fn: (isDisabled: boolean) => void): void {
|
|
|
|
|
this._onDisabledChange.push(fn);
|
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
2016-07-12 15:02:25 -07:00
|
|
|
|
/**
|
|
|
|
|
* @internal
|
|
|
|
|
*/
|
|
|
|
|
_forEachChild(cb: Function): void {}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_syncPendingControls(): boolean {
|
2017-08-09 15:41:53 -07:00
|
|
|
|
if (this.updateOn === 'submit') {
|
2017-08-07 15:39:25 -07:00
|
|
|
|
if (this._pendingDirty) this.markAsDirty();
|
|
|
|
|
if (this._pendingTouched) this.markAsTouched();
|
2017-11-11 02:54:36 -08:00
|
|
|
|
if (this._pendingChange) {
|
|
|
|
|
this.setValue(this._pendingValue, {onlySelf: true, emitModelToViewChange: false});
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-08-07 15:39:25 -07:00
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
|
private _applyFormState(formState: any) {
|
|
|
|
|
if (this._isBoxedValue(formState)) {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{value: any}).value = this._pendingValue = formState.value;
|
2016-08-24 16:58:43 -07:00
|
|
|
|
formState.disabled ? this.disable({onlySelf: true, emitEvent: false}) :
|
|
|
|
|
this.enable({onlySelf: true, emitEvent: false});
|
|
|
|
|
} else {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{value: any}).value = this._pendingValue = formState;
|
2017-08-02 18:10:10 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* Tracks the value and validity state of a group of `FormControl` instances.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 跟踪一组 `FormControl` 实例的值和有效性状态。
|
|
|
|
|
*
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* A `FormGroup` aggregates the values of each child `FormControl` into one object,
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* with each control name as the key. It calculates its status by reducing the status values
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* of its children. For example, if one of the controls in a group is invalid, the entire
|
|
|
|
|
* group becomes invalid.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `FormGroup` 把每个子 `FormControl` 的值聚合进一个对象,它的 key 是每个控件的名字。
|
|
|
|
|
* 它通过归集其子控件的状态值来计算出自己的状态。
|
|
|
|
|
* 比如,如果组中的任何一个控件是无效的,那么整个组就是无效的。
|
|
|
|
|
*
|
2016-06-10 11:15:59 -07:00
|
|
|
|
* `FormGroup` is one of the three fundamental building blocks used to define forms in Angular,
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* along with `FormControl` and `FormArray`.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `FormGroup` 是 Angular 中用来定义表单的三大基本构造块之一,就像 `FormControl`、`FormArray` 一样。
|
|
|
|
|
*
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* When instantiating a `FormGroup`, pass in a collection of child controls as the first
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* argument. The key for each child registers the name for the control.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当实例化 `FormGroup` 时,在第一个参数中传入一组子控件。每个子控件会用控件名把自己注册进去。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @usageNotes
|
|
|
|
|
*
|
|
|
|
|
* ### Create a form group with 2 controls
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 创建一个带有两个控件的表单组
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* first: new FormControl('Nancy', Validators.minLength(2)),
|
|
|
|
|
* last: new FormControl('Drew'),
|
|
|
|
|
* });
|
|
|
|
|
*
|
|
|
|
|
* console.log(form.value); // {first: 'Nancy', last; 'Drew'}
|
|
|
|
|
* console.log(form.status); // 'VALID'
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Create a form group with a group-level validator
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 创建一个具有组级验证器的表单组
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* You include group-level validators as the second arg, or group-level async
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* validators as the third arg. These come in handy when you want to perform validation
|
|
|
|
|
* that considers the value of more than one child control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 你可以用第二个参数传入一些组级验证器或用第三个参数传入一些组级异步验证器。
|
|
|
|
|
* 当你要根据一个以上子控件的值来决定有效性时,这很好用。
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* password: new FormControl('', Validators.minLength(2)),
|
|
|
|
|
* passwordConfirm: new FormControl('', Validators.minLength(2)),
|
|
|
|
|
* }, passwordMatchValidator);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* function passwordMatchValidator(g: FormGroup) {
|
|
|
|
|
* return g.get('password').value === g.get('passwordConfirm').value
|
|
|
|
|
* ? null : {'mismatch': true};
|
|
|
|
|
* }
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Like `FormControl` instances, you choose to pass in
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* validators and async validators as part of an options object.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 像 `FormControl` 实例一样,你也可以在配置对象中传入验证器和异步验证器。
|
|
|
|
|
*
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* password: new FormControl('')
|
|
|
|
|
* passwordConfirm: new FormControl('')
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* }, { validators: passwordMatchValidator, asyncValidators: otherValidator });
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Set the updateOn property for all controls in a form group
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 为表单组中的所有空间设置 `updateOn` 属性
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* The options object is used to set a default value for each child
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* control's `updateOn` property. If you set `updateOn` to `'blur'` at the
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* group level, all child controls default to 'blur', unless the child
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* has explicitly specified a different `updateOn` value.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 该选项对象可用来为每个子控件的 `updateOn` 属性设置默认值。
|
|
|
|
|
* 如果在组级把 `updateOn` 设置为 `'blur'`,则所有子控件的默认值也是 `'blur'`,除非这个子控件显式的指定了另一个 `updateOn` 值。
|
|
|
|
|
*
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* ```ts
|
|
|
|
|
* const c = new FormGroup({
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* one: new FormControl()
|
|
|
|
|
* }, { updateOn: 'blur' });
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* ```
|
2018-10-19 17:36:24 +01:00
|
|
|
|
*
|
|
|
|
|
* @publicApi
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-10 11:15:59 -07:00
|
|
|
|
export class FormGroup extends AbstractControl {
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* Creates a new `FormGroup` instance.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 创建一个新的 `FormGroup` 实例
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @param controls A collection of child controls. The key for each child is the name
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* under which it is registered.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一组子控件。每个子控件的名字就是它注册时用的 `key`。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @param validatorOrOpts A synchronous validator function, or an array of
|
|
|
|
|
* such functions, or an `AbstractControlOptions` object that contains validation functions
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* and a validation trigger.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一个同步验证器函数或其数组,或者一个包含验证函数和验证触发器的 `AbstractControlOptions` 对象。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param asyncValidator A single async validator or array of async validator functions
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 单个的异步验证器函数或其数组。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
constructor(
|
2017-07-25 15:01:04 -07:00
|
|
|
|
public controls: {[key: string]: AbstractControl},
|
|
|
|
|
validatorOrOpts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null,
|
|
|
|
|
asyncValidator?: AsyncValidatorFn|AsyncValidatorFn[]|null) {
|
|
|
|
|
super(
|
|
|
|
|
coerceToValidator(validatorOrOpts),
|
|
|
|
|
coerceToAsyncValidator(asyncValidator, validatorOrOpts));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this._initObservables();
|
2017-08-09 15:41:53 -07:00
|
|
|
|
this._setUpdateStrategy(validatorOrOpts);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._setUpControls();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity({onlySelf: true, emitEvent: false});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* Registers a control with the group's list of controls.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 向组内的控件列表中注册一个控件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* This method does not update the value or validity of the control.
|
|
|
|
|
* Use {@link FormGroup#addControl addControl} instead.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 该方法不会更新控件的值或其有效性。
|
|
|
|
|
* 使用 {@link FormGroup#addControl addControl} 代替。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param name The control name to register in the collection
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 注册到集合中的控件名
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control Provides the control for the given name
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 提供这个名字对应的控件
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-15 15:15:41 -07:00
|
|
|
|
registerControl(name: string, control: AbstractControl): AbstractControl {
|
|
|
|
|
if (this.controls[name]) return this.controls[name];
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.controls[name] = control;
|
|
|
|
|
control.setParent(this);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
control._registerOnCollectionChange(this._onCollectionChange);
|
2016-06-15 15:15:41 -07:00
|
|
|
|
return control;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a control to this group.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 往组中添加一个控件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* This method also updates the value and validity of the control.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 该方法还会更新本空间的值和有效性。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param name The control name to add to the collection
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要注册到集合中的控件名
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control Provides the control for the given name
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 提供与该控件名对应的控件。
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
addControl(name: string, control: AbstractControl): void {
|
|
|
|
|
this.registerControl(name, control);
|
|
|
|
|
this.updateValueAndValidity();
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._onCollectionChange();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Remove a control from this group.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 从该组中移除一个控件。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param name The control name to remove from the collection
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要从集合中移除的控件名
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
removeControl(name: string): void {
|
2016-09-02 15:57:35 -07:00
|
|
|
|
if (this.controls[name]) this.controls[name]._registerOnCollectionChange(() => {});
|
2016-09-19 17:15:57 -07:00
|
|
|
|
delete (this.controls[name]);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this.updateValueAndValidity();
|
|
|
|
|
this._onCollectionChange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Replace an existing control.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 替换现有控件。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param name The control name to replace in the collection
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要从集合中替换掉的控件名
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control Provides the control for the given name
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 提供具有指定名称的控件
|
|
|
|
|
*
|
2016-09-02 15:57:35 -07:00
|
|
|
|
*/
|
|
|
|
|
setControl(name: string, control: AbstractControl): void {
|
|
|
|
|
if (this.controls[name]) this.controls[name]._registerOnCollectionChange(() => {});
|
2016-09-19 17:15:57 -07:00
|
|
|
|
delete (this.controls[name]);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
if (control) this.registerControl(name, control);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity();
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._onCollectionChange();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* Check whether there is an enabled control with the given name in the group.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 检查组内是否有一个具有指定名字的已启用的控件。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Reports false for disabled controls. If you'd like to check for existence in the group
|
2017-10-13 22:27:38 +03:00
|
|
|
|
* only, use {@link AbstractControl#get get} instead.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 对于已禁用的控件,返回 `false`。如果你只想检查它是否存在于该组中,请改用 {@link AbstractControl#get get} 代替。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param name The control name to check for existence in the collection
|
2018-06-11 14:24:00 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 要在集合中检查是否存在的控件名
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @returns false for disabled controls, true otherwise.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 对于已禁用的控件返回 `false`,否则返回 `true`。
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
contains(controlName: string): boolean {
|
2016-09-12 15:15:50 -07:00
|
|
|
|
return this.controls.hasOwnProperty(controlName) && this.controls[controlName].enabled;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 11:43:08 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Sets the value of the `FormGroup`. It accepts an object that matches
|
|
|
|
|
* the structure of the group, with control names as keys.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 设置此 `FormGroup` 的值。它接受一个与组结构对应的对象,以控件名作为 key。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Set the complete value for the form group
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 设置表单组的完整值
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```
|
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* first: new FormControl(),
|
|
|
|
|
* last: new FormControl()
|
|
|
|
|
* });
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* console.log(form.value); // {first: null, last: null}
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* form.setValue({first: 'Nancy', last: 'Drew'});
|
|
|
|
|
* console.log(form.value); // {first: 'Nancy', last: 'Drew'}
|
|
|
|
|
* ```
|
2018-09-20 15:18:14 +01:00
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @throws When strict checks fail, such as setting the value of a control
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* that doesn't exist or if you excluding the value of a control.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当严格的检查失败时,比如设置了不存在的或被排除出去的控件的值。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* @param value The new value for the control that matches the structure of the group.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 控件的新值,其结构必须和该组的结构相匹配。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events after the value changes.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2018-06-06 12:17:30 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当值变化时,此配置项会决定该控件会如何传播变更以及发出事件。该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
2018-06-06 12:17:30 -05:00
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default is
|
|
|
|
|
* false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control value is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
setValue(value: {[key: string]: any}, options: {onlySelf?: boolean, emitEvent?: boolean} = {}):
|
|
|
|
|
void {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
this._checkAllValuesPresent(value);
|
2016-10-03 16:46:05 -07:00
|
|
|
|
Object.keys(value).forEach(name => {
|
2016-07-08 13:04:25 -07:00
|
|
|
|
this._throwIfControlMissing(name);
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.controls[name].setValue(value[name], {onlySelf: true, emitEvent: options.emitEvent});
|
2016-08-05 13:35:17 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 11:43:08 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Patches the value of the `FormGroup`. It accepts an object with control
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* names as keys, and does its best to match the values to the correct controls
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* in the group.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 修补此 `FormGroup` 的值。它接受一个以控件名为 key 的对象,并尽量把它们的值匹配到组中正确的控件上。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* It accepts both super-sets and sub-sets of the group without throwing an error.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 它能接受组的超集和子集,而不会抛出错误。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Patch the value for a form group
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 修补表单组的值
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* first: new FormControl(),
|
|
|
|
|
* last: new FormControl()
|
|
|
|
|
* });
|
|
|
|
|
* console.log(form.value); // {first: null, last: null}
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* form.patchValue({first: 'Nancy'});
|
|
|
|
|
* console.log(form.value); // {first: 'Nancy', last: null}
|
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-11 10:21:37 +01:00
|
|
|
|
* @param value The object that matches the structure of the group.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
2018-10-21 17:43:29 +08:00
|
|
|
|
* 与该组的结构匹配的对象。
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
2018-09-11 10:21:37 +01:00
|
|
|
|
* @param options Configuration options that determine how the control propagates changes and
|
|
|
|
|
* emits events after the value is patched.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 在修补了该值之后,此配置项会决定控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default is
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* true.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control value is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
* 该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
patchValue(value: {[key: string]: any}, options: {onlySelf?: boolean, emitEvent?: boolean} = {}):
|
|
|
|
|
void {
|
2016-10-03 16:46:05 -07:00
|
|
|
|
Object.keys(value).forEach(name => {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
if (this.controls[name]) {
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.controls[name].patchValue(value[name], {onlySelf: true, emitEvent: options.emitEvent});
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
2016-07-08 13:04:25 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
2016-07-08 13:04:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 11:43:08 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Resets the `FormGroup`, marks all descendants are marked `pristine` and `untouched`, and
|
|
|
|
|
* the value of all descendants to null.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 重置这个 `FormGroup`,把它的各级子控件都标记为 `pristine` 和 `untouched`,并把它们的值都设置为 `null`。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* You reset to a specific form state by passing in a map of states
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* that matches the structure of your form, with control names as keys. The state
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* is a standalone value or a form state object with both a value and a disabled
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* status.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 你可以通过传入一个与表单结构相匹配的以控件名为 key 的 Map,来把表单重置为特定的状态。
|
|
|
|
|
* 其状态可以是一个单独的值,也可以是一个同时具有值和禁用状态的表单状态对象。
|
|
|
|
|
*
|
2018-06-27 14:33:16 -05:00
|
|
|
|
* @param formState Resets the control with an initial value,
|
|
|
|
|
* or an object that defines the initial value and disabled state.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 使用一个初始值或包含初始值与禁用状态的对象重置该控件。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param options Configuration options that determine how the control propagates changes
|
|
|
|
|
* and emits events when the group is reset.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 当该组被重置时,此配置项会决定该控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default is
|
|
|
|
|
* false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is reset.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
* 该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* @usageNotes
|
2018-06-07 13:37:01 -05:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Reset the form group values
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 重置该表单组的值
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```ts
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* first: new FormControl('first name'),
|
|
|
|
|
* last: new FormControl('last name')
|
|
|
|
|
* });
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* console.log(form.value); // {first: 'first name', last: 'last name'}
|
|
|
|
|
*
|
|
|
|
|
* form.reset({ first: 'name', last: 'last name' });
|
|
|
|
|
*
|
|
|
|
|
* console.log(form.value); // {first: 'name', last: 'last name'}
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Reset the form group values and disabled status
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 重置该表单组的值以及禁用状态
|
|
|
|
|
*
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* const form = new FormGroup({
|
|
|
|
|
* first: new FormControl('first name'),
|
|
|
|
|
* last: new FormControl('last name')
|
|
|
|
|
* });
|
|
|
|
|
*
|
|
|
|
|
* form.reset({
|
2016-09-13 11:43:08 -07:00
|
|
|
|
* first: {value: 'name', disabled: true},
|
|
|
|
|
* last: 'last'
|
|
|
|
|
* });
|
|
|
|
|
*
|
|
|
|
|
* console.log(this.form.value); // {first: 'name', last: 'last name'}
|
|
|
|
|
* console.log(this.form.get('first').status); // 'DISABLED'
|
|
|
|
|
* ```
|
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
reset(value: any = {}, options: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-07-12 15:02:25 -07:00
|
|
|
|
this._forEachChild((control: AbstractControl, name: string) => {
|
2017-04-27 13:39:21 -07:00
|
|
|
|
control.reset(value[name], {onlySelf: true, emitEvent: options.emitEvent});
|
2016-07-12 15:02:25 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
|
|
|
|
this._updatePristine(options);
|
|
|
|
|
this._updateTouched(options);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 11:43:08 -07:00
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* The aggregate value of the `FormGroup`, including any disabled controls.
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 这个 `FormGroup` 的聚合值,包括所有已禁用的控件。
|
|
|
|
|
*
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* Retrieves all values regardless of disabled status.
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* The `value` property is the best way to get the value of the group, because
|
|
|
|
|
* it excludes disabled controls in the `FormGroup`.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 获取所有控件的值而不管其禁用状态。
|
|
|
|
|
* `value` 属性是获取组中的值的最佳方式,因为它从 `FormGroup` 中排除了所有已禁用的控件。
|
2016-09-13 11:43:08 -07:00
|
|
|
|
*/
|
2016-11-09 02:44:36 +03:00
|
|
|
|
getRawValue(): any {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
return this._reduceChildren(
|
|
|
|
|
{}, (acc: {[k: string]: AbstractControl}, control: AbstractControl, name: string) => {
|
2016-11-18 14:44:05 +03:00
|
|
|
|
acc[name] = control instanceof FormControl ? control.value : (<any>control).getRawValue();
|
2016-08-24 16:58:43 -07:00
|
|
|
|
return acc;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_syncPendingControls(): boolean {
|
|
|
|
|
let subtreeUpdated = this._reduceChildren(false, (updated: boolean, child: AbstractControl) => {
|
|
|
|
|
return child._syncPendingControls() ? true : updated;
|
|
|
|
|
});
|
|
|
|
|
if (subtreeUpdated) this.updateValueAndValidity({onlySelf: true});
|
|
|
|
|
return subtreeUpdated;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-08 13:04:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_throwIfControlMissing(name: string): void {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
if (!Object.keys(this.controls).length) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`
|
2016-08-05 13:35:17 -07:00
|
|
|
|
There are no form controls registered with this group yet. If you're using ngModel,
|
|
|
|
|
you may want to check next tick (e.g. use setTimeout).
|
|
|
|
|
`);
|
|
|
|
|
}
|
2016-07-08 13:04:25 -07:00
|
|
|
|
if (!this.controls[name]) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`Cannot find form control with name: ${name}.`);
|
2016-07-08 13:04:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 15:02:25 -07:00
|
|
|
|
/** @internal */
|
2016-07-15 16:26:19 -07:00
|
|
|
|
_forEachChild(cb: (v: any, k: string) => void): void {
|
2016-10-03 16:46:05 -07:00
|
|
|
|
Object.keys(this.controls).forEach(k => cb(this.controls[k], k));
|
2016-07-15 16:26:19 -07:00
|
|
|
|
}
|
2016-07-12 15:02:25 -07:00
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/** @internal */
|
2016-10-19 19:55:50 +03:00
|
|
|
|
_setUpControls(): void {
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._forEachChild((control: AbstractControl) => {
|
|
|
|
|
control.setParent(this);
|
|
|
|
|
control._registerOnCollectionChange(this._onCollectionChange);
|
|
|
|
|
});
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2017-09-13 14:00:10 -07:00
|
|
|
|
_updateValue(): void { (this as{value: any}).value = this._reduceValue(); }
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-07-12 15:02:25 -07:00
|
|
|
|
_anyControls(condition: Function): boolean {
|
2016-10-19 19:55:50 +03:00
|
|
|
|
let res = false;
|
2016-07-12 15:02:25 -07:00
|
|
|
|
this._forEachChild((control: AbstractControl, name: string) => {
|
|
|
|
|
res = res || (this.contains(name) && condition(control));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
});
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_reduceValue() {
|
|
|
|
|
return this._reduceChildren(
|
|
|
|
|
{}, (acc: {[k: string]: AbstractControl}, control: AbstractControl, name: string) => {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
if (control.enabled || this.disabled) {
|
|
|
|
|
acc[name] = control.value;
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
return acc;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_reduceChildren(initValue: any, fn: Function) {
|
2016-10-19 19:55:50 +03:00
|
|
|
|
let res = initValue;
|
2016-08-24 16:58:43 -07:00
|
|
|
|
this._forEachChild(
|
|
|
|
|
(control: AbstractControl, name: string) => { res = fn(res, control, name); });
|
2016-06-08 15:36:24 -07:00
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-08-24 16:58:43 -07:00
|
|
|
|
_allControlsDisabled(): boolean {
|
2016-11-12 14:08:58 +01:00
|
|
|
|
for (const controlName of Object.keys(this.controls)) {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
if (this.controls[controlName].enabled) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-08 12:21:48 -07:00
|
|
|
|
return Object.keys(this.controls).length > 0 || this.disabled;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
2016-08-05 13:35:17 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_checkAllValuesPresent(value: any): void {
|
|
|
|
|
this._forEachChild((control: AbstractControl, name: string) => {
|
|
|
|
|
if (value[name] === undefined) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`Must supply a value for form control with name: '${name}'.`);
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* Tracks the value and validity state of an array of `FormControl`,
|
|
|
|
|
* `FormGroup` or `FormArray` instances.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 跟踪一个控件数组的值和有效性状态,控件可以是 `FormControl`、`FormGroup` 或 `FormArray` 的实例。
|
|
|
|
|
*
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* A `FormArray` aggregates the values of each child `FormControl` into an array.
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* It calculates its status by reducing the status values of its children. For example, if one of
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* the controls in a `FormArray` is invalid, the entire array becomes invalid.
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `FormArray` 聚合了数组中每个表单控件的值。
|
|
|
|
|
* 它还会根据其所有子控件的状态总结出自己的状态。比如,如果 `FromArray` 中的任何一个控件是无效的,那么整个数组也会变成无效的。
|
|
|
|
|
*
|
2016-06-10 11:15:59 -07:00
|
|
|
|
* `FormArray` is one of the three fundamental building blocks used to define forms in Angular,
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* along with `FormControl` and `FormGroup`.
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* `FormArray` 是 Angular 表单中定义的三个基本构造块之一,就像 `FormControl` 和 `FormGroup` 一样。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @usageNotes
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Create an array of form controls
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 创建表单控件的数组
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const arr = new FormArray([
|
|
|
|
|
* new FormControl('Nancy', Validators.minLength(2)),
|
|
|
|
|
* new FormControl('Drew'),
|
|
|
|
|
* ]);
|
|
|
|
|
*
|
|
|
|
|
* console.log(arr.value); // ['Nancy', 'Drew']
|
|
|
|
|
* console.log(arr.status); // 'VALID'
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Create a form array with array-level validators
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 创建一个带有数组级验证器的表单数组
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* You include array-level validators and async validators. These come in handy
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* when you want to perform validation that considers the value of more than one child
|
|
|
|
|
* control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 你可以定义数组级的验证器和异步验证器。当你需要根据一个或多个子控件的值来进行有效性验证时,这很有用。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* The two types of validators are passed in separately as the second and third arg
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* respectively, or together as part of an options object.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 这两种类型的验证器分别通过第二个和第三个参数或作为配置对象的一部分传进去。
|
|
|
|
|
*
|
2017-07-25 15:01:04 -07:00
|
|
|
|
* ```
|
|
|
|
|
* const arr = new FormArray([
|
|
|
|
|
* new FormControl('Nancy'),
|
|
|
|
|
* new FormControl('Drew')
|
|
|
|
|
* ], {validators: myValidator, asyncValidators: myAsyncValidator});
|
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
|
|
|
|
* ### Set the updateOn property for all controls in a form array
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 为表单数组中的所有控件设置 `updateOn` 属性
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* The options object is used to set a default value for each child
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* control's `updateOn` property. If you set `updateOn` to `'blur'` at the
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* array level, all child controls default to 'blur', unless the child
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* has explicitly specified a different `updateOn` value.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 该配置对象可以为每个子控件的 `updateOn` 属性设置默认值。
|
|
|
|
|
* 如果在数组级把 `updateOn` 设置为 `'blur'`,则所有子控件的默认值也是 `'blur'`,除非这个子控件显式的指定了另一个 `updateOn` 值。
|
|
|
|
|
*
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* ```ts
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* const arr = new FormArray([
|
2017-08-09 15:41:53 -07:00
|
|
|
|
* new FormControl()
|
|
|
|
|
* ], {updateOn: 'blur'});
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Adding or removing controls from a form array
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 从表单数组中添加或删除控件
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* To change the controls in the array, use the `push`, `insert`, or `removeAt` methods
|
2016-06-10 11:15:59 -07:00
|
|
|
|
* in `FormArray` itself. These methods ensure the controls are properly tracked in the
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* form's hierarchy. Do not modify the array of `AbstractControl`s used to instantiate
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* the `FormArray` directly, as that result in strange and unexpected behavior such
|
2016-06-08 15:36:24 -07:00
|
|
|
|
* as broken change detection.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 要改变数组中的控件列表,可以使用 `FormArray` 本身的 `push`、`insert` 或 `removeAt` 方法。这些方法能确保表单数组正确的跟踪这些子控件。
|
|
|
|
|
* 不要直接修改实例化 `FormArray` 时传入的那个 `AbstractControl` 数组,否则会导致奇怪的、非预期的行为,比如破坏变更检测机制。
|
2018-04-05 22:31:44 +01:00
|
|
|
|
*
|
2018-10-19 17:36:24 +01:00
|
|
|
|
* @publicApi
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
2016-06-10 11:15:59 -07:00
|
|
|
|
export class FormArray extends AbstractControl {
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* Creates a new `FormArray` instance.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 创建一个新的 `FormArray` 实例
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* @param controls An array of child controls. Each child control is given an index
|
2018-09-20 10:23:04 +02:00
|
|
|
|
* where it is registered.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 一个子控件数组。在注册后,每个子控件都会有一个指定的索引。
|
|
|
|
|
*
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* @param validatorOrOpts A synchronous validator function, or an array of
|
|
|
|
|
* such functions, or an `AbstractControlOptions` object that contains validation functions
|
2018-06-06 12:17:30 -05:00
|
|
|
|
* and a validation trigger.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 一个同步验证器函数或其数组,或者一个包含验证函数和验证触发器的 `AbstractControlOptions` 对象。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param asyncValidator A single async validator or array of async validator functions
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 单个的异步验证器函数或其数组。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-08 16:38:52 -07:00
|
|
|
|
constructor(
|
2017-07-25 15:01:04 -07:00
|
|
|
|
public controls: AbstractControl[],
|
|
|
|
|
validatorOrOpts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null,
|
|
|
|
|
asyncValidator?: AsyncValidatorFn|AsyncValidatorFn[]|null) {
|
|
|
|
|
super(
|
|
|
|
|
coerceToValidator(validatorOrOpts),
|
|
|
|
|
coerceToAsyncValidator(asyncValidator, validatorOrOpts));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this._initObservables();
|
2017-08-09 15:41:53 -07:00
|
|
|
|
this._setUpdateStrategy(validatorOrOpts);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._setUpControls();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity({onlySelf: true, emitEvent: false});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* Get the `AbstractControl` at the given `index` in the array.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 获取数组中指定 `index` 处的 `AbstractControl`。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param index Index in the array to retrieve the control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要获取的控件在数组中的索引
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
at(index: number): AbstractControl { return this.controls[index]; }
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-05 10:58:12 +01:00
|
|
|
|
* Insert a new `AbstractControl` at the end of the array.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 在数组的末尾插入一个新的 `AbstractControl`。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control Form control to be inserted
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要插入的表单控件
|
|
|
|
|
*
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
push(control: AbstractControl): void {
|
|
|
|
|
this.controls.push(control);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._registerControl(control);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity();
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._onCollectionChange();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* Insert a new `AbstractControl` at the given `index` in the array.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 在数组中的指定 `index` 处插入一个新的 `AbstractControl`。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param index Index in the array to insert the control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要插入该控件的索引序号
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control Form control to be inserted
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要插入的表单控件
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-08 15:36:24 -07:00
|
|
|
|
insert(index: number, control: AbstractControl): void {
|
2016-10-19 19:55:50 +03:00
|
|
|
|
this.controls.splice(index, 0, control);
|
|
|
|
|
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._registerControl(control);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity();
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-01 07:35:06 -05:00
|
|
|
|
/**
|
|
|
|
|
* Remove the control at the given `index` in the array.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 移除位于数组中的指定 `index` 处的控件。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param index Index in the array to remove the control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要移除的控件在数组中的索引
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*/
|
2016-06-08 15:36:24 -07:00
|
|
|
|
removeAt(index: number): void {
|
2016-09-02 15:57:35 -07:00
|
|
|
|
if (this.controls[index]) this.controls[index]._registerOnCollectionChange(() => {});
|
2016-10-19 19:55:50 +03:00
|
|
|
|
this.controls.splice(index, 1);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
this.updateValueAndValidity();
|
2016-09-02 15:57:35 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Replace an existing control.
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 替换现有控件。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param index Index in the array to replace the control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要替换的控件在数组中的索引
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* @param control The `AbstractControl` control to replace the existing control
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要用来替换现有控件的 `AbstractControl` 控件
|
2016-09-02 15:57:35 -07:00
|
|
|
|
*/
|
|
|
|
|
setControl(index: number, control: AbstractControl): void {
|
|
|
|
|
if (this.controls[index]) this.controls[index]._registerOnCollectionChange(() => {});
|
2016-10-19 19:55:50 +03:00
|
|
|
|
this.controls.splice(index, 1);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
|
|
|
|
|
if (control) {
|
2016-10-19 19:55:50 +03:00
|
|
|
|
this.controls.splice(index, 0, control);
|
2016-09-02 15:57:35 -07:00
|
|
|
|
this._registerControl(control);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.updateValueAndValidity();
|
|
|
|
|
this._onCollectionChange();
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Length of the control array.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 控件数组的长度。
|
2016-06-08 15:36:24 -07:00
|
|
|
|
*/
|
|
|
|
|
get length(): number { return this.controls.length; }
|
|
|
|
|
|
2016-09-13 13:07:40 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Sets the value of the `FormArray`. It accepts an array that matches
|
|
|
|
|
* the structure of the control.
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 设置此 `FormArray` 的值。它接受一个与控件结构相匹配的数组。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* This method performs strict checks, and throws an error if you try
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* to set the value of a control that doesn't exist or if you exclude the
|
|
|
|
|
* value of a control.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 该方法会执行严格检查,如果你视图设置不存在或被排除出去的控件的值,就会抛出错误。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Set the values for the controls in the form array
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 设置表单数组中各个控件的值
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```
|
|
|
|
|
* const arr = new FormArray([
|
|
|
|
|
* new FormControl(),
|
|
|
|
|
* new FormControl()
|
|
|
|
|
* ]);
|
|
|
|
|
* console.log(arr.value); // [null, null]
|
|
|
|
|
*
|
|
|
|
|
* arr.setValue(['Nancy', 'Drew']);
|
|
|
|
|
* console.log(arr.value); // ['Nancy', 'Drew']
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* @param value Array of values for the controls
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 要传给这些控件的值的数组
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configure options that determine how the control propagates changes and
|
|
|
|
|
* emits events after the value changes
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当值变化时,此配置项会决定该控件会如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default
|
|
|
|
|
* is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control value is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
* 该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
setValue(value: any[], options: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
this._checkAllValuesPresent(value);
|
2016-07-08 13:04:25 -07:00
|
|
|
|
value.forEach((newValue: any, index: number) => {
|
|
|
|
|
this._throwIfControlMissing(index);
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.at(index).setValue(newValue, {onlySelf: true, emitEvent: options.emitEvent});
|
2016-08-05 13:35:17 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 13:07:40 -07:00
|
|
|
|
/**
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* Patches the value of the `FormArray`. It accepts an array that matches the
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* structure of the control, and does its best to match the values to the correct
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* controls in the group.
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 修补此 `FormArray` 的值。它接受一个与该控件的结构相匹配的数组,并尽量把它们的值匹配到组中正确的控件上。
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* It accepts both super-sets and sub-sets of the array without throwing an error.
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 它能接受数组的超集和子集,而不会抛出错误。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Patch the values for controls in a form array
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 修补表单数组中各个控件的值
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ```
|
|
|
|
|
* const arr = new FormArray([
|
|
|
|
|
* new FormControl(),
|
|
|
|
|
* new FormControl()
|
|
|
|
|
* ]);
|
|
|
|
|
* console.log(arr.value); // [null, null]
|
|
|
|
|
*
|
|
|
|
|
* arr.patchValue(['Nancy']);
|
|
|
|
|
* console.log(arr.value); // ['Nancy', null]
|
|
|
|
|
* ```
|
|
|
|
|
*
|
|
|
|
|
* @param value Array of latest values for the controls
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 由各个控件最近的值组成的数组
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configure options that determine how the control propagates changes and
|
|
|
|
|
* emits events after the value changes
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 在修补了该值之后,此配置项会决定控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default
|
|
|
|
|
* is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control value is updated.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
* 该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
patchValue(value: any[], options: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
value.forEach((newValue: any, index: number) => {
|
|
|
|
|
if (this.at(index)) {
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.at(index).patchValue(newValue, {onlySelf: true, emitEvent: options.emitEvent});
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
2016-07-08 13:04:25 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
2016-07-08 13:04:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 13:07:40 -07:00
|
|
|
|
/**
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* Resets the `FormArray` and all descendants are marked `pristine` and `untouched`, and the
|
|
|
|
|
* value of all descendants to null or null maps.
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 重置这个 `FormArray`,把它的各级子控件都标记为 `pristine` 和 `untouched`,并把它们的值都设置为 `null`。
|
|
|
|
|
*
|
2018-06-11 14:24:00 -05:00
|
|
|
|
* You reset to a specific form state by passing in an array of states
|
|
|
|
|
* that matches the structure of the control. The state is a standalone value
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* or a form state object with both a value and a disabled status.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 你可以通过传入一个与表单结构相匹配的状态数组,来把表单重置为特定的状态。
|
|
|
|
|
* 每个状态可以是一个单独的值,也可以是一个同时具有值和禁用状态的表单状态对象。
|
|
|
|
|
*
|
2018-09-20 15:18:14 +01:00
|
|
|
|
* @usageNotes
|
2018-10-21 17:43:29 +08:00
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Reset the values in a form array
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 重置表单数组中的各个值
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* ```ts
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* const arr = new FormArray([
|
|
|
|
|
* new FormControl(),
|
|
|
|
|
* new FormControl()
|
|
|
|
|
* ]);
|
|
|
|
|
* arr.reset(['name', 'last name']);
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
|
|
|
|
* console.log(this.arr.value); // ['name', 'last name']
|
|
|
|
|
* ```
|
|
|
|
|
*
|
2018-06-01 07:35:06 -05:00
|
|
|
|
* ### Reset the values in a form array and the disabled status for the first control
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* ### 重置表单数组中的各个值和第一个控件的禁用状态
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
* ```
|
|
|
|
|
* this.arr.reset([
|
|
|
|
|
* {value: 'name', disabled: true},
|
|
|
|
|
* 'last'
|
|
|
|
|
* ]);
|
|
|
|
|
*
|
|
|
|
|
* console.log(this.arr.value); // ['name', 'last name']
|
|
|
|
|
* console.log(this.arr.get(0).status); // 'DISABLED'
|
|
|
|
|
* ```
|
2018-06-01 07:35:06 -05:00
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* @param value Array of values for the controls
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 各个控件值的数组
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* @param options Configure options that determine how the control propagates changes and
|
|
|
|
|
* emits events after the value changes
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 当值变化时,此配置项会决定该控件如何传播变更以及发出事件。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `onlySelf`: When true, each change only affects this control, and not its parent. Default
|
|
|
|
|
* is false.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `onlySelf`::如果为 `true`,则每个变更仅仅影响当前控件,而不会影响父控件。默认为 `false`。
|
|
|
|
|
*
|
2018-06-11 15:48:35 -05:00
|
|
|
|
* * `emitEvent`: When true or not supplied (the default), both the `statusChanges` and
|
|
|
|
|
* `valueChanges`
|
|
|
|
|
* observables emit events with the latest status and value when the control is reset.
|
|
|
|
|
* When false, no events are emitted.
|
2018-06-07 13:37:01 -05:00
|
|
|
|
* The configuration options are passed to the {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} method.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* `emitEvent`:如果为 `true` 或未提供(默认),则当控件值发生变化时,`statusChanges` 和 `valueChanges` 这两个 `Observable` 分别会以最近的状态和值发出事件。
|
|
|
|
|
* 如果为 `false` 则不发出事件。
|
|
|
|
|
* 该配置项会被传给 {@link AbstractControl#updateValueAndValidity
|
|
|
|
|
* updateValueAndValidity} 方法。
|
|
|
|
|
*
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*/
|
2017-04-27 13:39:21 -07:00
|
|
|
|
reset(value: any = [], options: {onlySelf?: boolean, emitEvent?: boolean} = {}): void {
|
2016-07-12 15:02:25 -07:00
|
|
|
|
this._forEachChild((control: AbstractControl, index: number) => {
|
2017-04-27 13:39:21 -07:00
|
|
|
|
control.reset(value[index], {onlySelf: true, emitEvent: options.emitEvent});
|
2016-07-12 15:02:25 -07:00
|
|
|
|
});
|
2017-04-27 13:39:21 -07:00
|
|
|
|
this.updateValueAndValidity(options);
|
|
|
|
|
this._updatePristine(options);
|
|
|
|
|
this._updateTouched(options);
|
2016-07-12 15:02:25 -07:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-13 13:07:40 -07:00
|
|
|
|
/**
|
|
|
|
|
* The aggregate value of the array, including any disabled controls.
|
|
|
|
|
*
|
2018-09-01 09:19:36 +08:00
|
|
|
|
* 这个 `FormArray` 的聚合值,包括所有已禁用的控件。
|
|
|
|
|
*
|
2018-06-07 13:31:25 -05:00
|
|
|
|
* Reports all values regardless of disabled status.
|
|
|
|
|
* For enabled controls only, the `value` property is the best way to get the value of the array.
|
2018-09-01 09:19:36 +08:00
|
|
|
|
*
|
|
|
|
|
* 获取所有控件的值而不管其禁用状态。
|
|
|
|
|
* 如果只想获取已启用的控件的值,则最好使用 `value` 属性来获取此数组的值。
|
2016-09-13 13:07:40 -07:00
|
|
|
|
*/
|
2016-11-18 14:44:05 +03:00
|
|
|
|
getRawValue(): any[] {
|
|
|
|
|
return this.controls.map((control: AbstractControl) => {
|
|
|
|
|
return control instanceof FormControl ? control.value : (<any>control).getRawValue();
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_syncPendingControls(): boolean {
|
|
|
|
|
let subtreeUpdated = this.controls.reduce((updated: boolean, child: AbstractControl) => {
|
|
|
|
|
return child._syncPendingControls() ? true : updated;
|
|
|
|
|
}, false);
|
|
|
|
|
if (subtreeUpdated) this.updateValueAndValidity({onlySelf: true});
|
|
|
|
|
return subtreeUpdated;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-08 13:04:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_throwIfControlMissing(index: number): void {
|
2016-08-05 13:35:17 -07:00
|
|
|
|
if (!this.controls.length) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`
|
2016-08-05 13:35:17 -07:00
|
|
|
|
There are no form controls registered with this array yet. If you're using ngModel,
|
|
|
|
|
you may want to check next tick (e.g. use setTimeout).
|
|
|
|
|
`);
|
|
|
|
|
}
|
2016-07-08 13:04:25 -07:00
|
|
|
|
if (!this.at(index)) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`Cannot find form control at index ${index}`);
|
2016-07-08 13:04:25 -07:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-12 15:02:25 -07:00
|
|
|
|
/** @internal */
|
|
|
|
|
_forEachChild(cb: Function): void {
|
|
|
|
|
this.controls.forEach((control: AbstractControl, index: number) => { cb(control, index); });
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
|
/** @internal */
|
2016-08-24 16:58:43 -07:00
|
|
|
|
_updateValue(): void {
|
2017-09-13 14:00:10 -07:00
|
|
|
|
(this as{value: any}).value =
|
|
|
|
|
this.controls.filter((control) => control.enabled || this.disabled)
|
|
|
|
|
.map((control) => control.value);
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-07-12 15:02:25 -07:00
|
|
|
|
_anyControls(condition: Function): boolean {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
return this.controls.some((control: AbstractControl) => control.enabled && condition(control));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** @internal */
|
2016-09-02 15:57:35 -07:00
|
|
|
|
_setUpControls(): void {
|
|
|
|
|
this._forEachChild((control: AbstractControl) => this._registerControl(control));
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|
2016-08-05 13:35:17 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_checkAllValuesPresent(value: any): void {
|
|
|
|
|
this._forEachChild((control: AbstractControl, i: number) => {
|
|
|
|
|
if (value[i] === undefined) {
|
2016-08-25 00:50:16 -07:00
|
|
|
|
throw new Error(`Must supply a value for form control at index: ${i}.`);
|
2016-08-05 13:35:17 -07:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2016-08-24 16:58:43 -07:00
|
|
|
|
|
|
|
|
|
/** @internal */
|
|
|
|
|
_allControlsDisabled(): boolean {
|
2016-11-12 14:08:58 +01:00
|
|
|
|
for (const control of this.controls) {
|
2016-08-24 16:58:43 -07:00
|
|
|
|
if (control.enabled) return false;
|
|
|
|
|
}
|
2016-09-08 12:21:48 -07:00
|
|
|
|
return this.controls.length > 0 || this.disabled;
|
2016-08-24 16:58:43 -07:00
|
|
|
|
}
|
2016-09-02 15:57:35 -07:00
|
|
|
|
|
|
|
|
|
private _registerControl(control: AbstractControl) {
|
|
|
|
|
control.setParent(this);
|
|
|
|
|
control._registerOnCollectionChange(this._onCollectionChange);
|
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
}
|