2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 12:08:49 -07:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 09:47:54 -07:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
2020-05-18 11:08:23 -07:00
|
|
|
import {isDevMode} from '@angular/core';
|
refactor(forms): deprecate ngModel usage on same field as formControl (#22633)
Support for using the `ngModel` input property and `ngModelChange`
event with reactive form directives has been deprecated in
Angular v6 and will be removed in Angular v7.
Now deprecated:
```html
<input [formControl]="control" [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
This has been deprecated for a few reasons. First, developers have
found this pattern confusing. It seems like the actual `ngModel`
directive is being used, but in fact it's an input/output property
named `ngModel` on the reactive form directive that simply approximates
(some of) its behavior. Specifically, it allows getting/setting the
value and intercepting value events. However, some of `ngModel`'s other
features - like delaying updates with`ngModelOptions` or exporting the
directive - simply don't work, which has understandably caused some
confusion.
In addition, this pattern mixes template-driven and reactive forms
strategies, which we generally don't recommend because it doesn't take
advantage of the full benefits of either strategy. Setting the value in
the template violates the template-agnostic principles behind reactive
forms, whereas adding a FormControl/FormGroup layer in the class removes
the convenience of defining forms in the template.
To update your code before v7, you'll want to decide whether to stick
with reactive form directives (and get/set values using reactive forms
patterns) or switch over to template-driven directives.
After (choice 1 - use reactive forms):
```html
<input [formControl]="control">
```
```ts
this.control.setValue('some value');
```
After (choice 2 - use template-driven forms):
```html
<input [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
You can also choose to silence this warning by providing a config for
`ReactiveFormsModule` at import time:
```ts
imports: [
ReactiveFormsModule.withConfig({warnOnNgModelWithFormControl: 'never'});
]
```
Alternatively, you can choose to surface a separate warning for each
instance of this pattern with a config value of `"always"`. This may
help to track down where in the code the pattern is being used as the
code is being updated.
Note: `warnOnNgModelWithFormControl` is set up as deprecated so that it
can be removed in v7 when it is no longer needed. This will not display
properly in API docs yet because dgeni doesn't yet support deprecating
properties in object literals, but we have an open issue to resolve the
discrepancy here: https://github.com/angular/angular/issues/22640.
PR Close #22633
2018-03-07 09:46:10 -08:00
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
import {AbstractControl, FormArray, FormControl, FormGroup} from '../model';
|
|
|
|
import {getControlAsyncValidators, getControlValidators, mergeValidators} from '../validators';
|
2020-08-05 19:14:08 -07:00
|
|
|
|
2016-06-08 16:38:52 -07:00
|
|
|
import {AbstractControlDirective} from './abstract_control_directive';
|
2016-06-12 16:37:42 -07:00
|
|
|
import {AbstractFormGroupDirective} from './abstract_form_group_directive';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {CheckboxControlValueAccessor} from './checkbox_value_accessor';
|
|
|
|
import {ControlContainer} from './control_container';
|
2016-06-08 15:36:24 -07:00
|
|
|
import {ControlValueAccessor} from './control_value_accessor';
|
|
|
|
import {DefaultValueAccessor} from './default_value_accessor';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {NgControl} from './ng_control';
|
2016-06-08 15:36:24 -07:00
|
|
|
import {NumberValueAccessor} from './number_value_accessor';
|
|
|
|
import {RadioControlValueAccessor} from './radio_control_value_accessor';
|
2016-10-19 20:12:13 +03:00
|
|
|
import {RangeValueAccessor} from './range_value_accessor';
|
2016-08-02 09:40:42 -07:00
|
|
|
import {FormArrayName} from './reactive_directives/form_group_name';
|
refactor(forms): deprecate ngModel usage on same field as formControl (#22633)
Support for using the `ngModel` input property and `ngModelChange`
event with reactive form directives has been deprecated in
Angular v6 and will be removed in Angular v7.
Now deprecated:
```html
<input [formControl]="control" [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
This has been deprecated for a few reasons. First, developers have
found this pattern confusing. It seems like the actual `ngModel`
directive is being used, but in fact it's an input/output property
named `ngModel` on the reactive form directive that simply approximates
(some of) its behavior. Specifically, it allows getting/setting the
value and intercepting value events. However, some of `ngModel`'s other
features - like delaying updates with`ngModelOptions` or exporting the
directive - simply don't work, which has understandably caused some
confusion.
In addition, this pattern mixes template-driven and reactive forms
strategies, which we generally don't recommend because it doesn't take
advantage of the full benefits of either strategy. Setting the value in
the template violates the template-agnostic principles behind reactive
forms, whereas adding a FormControl/FormGroup layer in the class removes
the convenience of defining forms in the template.
To update your code before v7, you'll want to decide whether to stick
with reactive form directives (and get/set values using reactive forms
patterns) or switch over to template-driven directives.
After (choice 1 - use reactive forms):
```html
<input [formControl]="control">
```
```ts
this.control.setValue('some value');
```
After (choice 2 - use template-driven forms):
```html
<input [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
You can also choose to silence this warning by providing a config for
`ReactiveFormsModule` at import time:
```ts
imports: [
ReactiveFormsModule.withConfig({warnOnNgModelWithFormControl: 'never'});
]
```
Alternatively, you can choose to surface a separate warning for each
instance of this pattern with a config value of `"always"`. This may
help to track down where in the code the pattern is being used as the
code is being updated.
Note: `warnOnNgModelWithFormControl` is set up as deprecated so that it
can be removed in v7 when it is no longer needed. This will not display
properly in API docs yet because dgeni doesn't yet support deprecating
properties in object literals, but we have an open issue to resolve the
discrepancy here: https://github.com/angular/angular/issues/22640.
PR Close #22633
2018-03-07 09:46:10 -08:00
|
|
|
import {ReactiveErrors} from './reactive_errors';
|
2016-06-08 16:38:52 -07:00
|
|
|
import {SelectControlValueAccessor} from './select_control_value_accessor';
|
2016-06-27 00:24:27 +02:00
|
|
|
import {SelectMultipleControlValueAccessor} from './select_multiple_control_value_accessor';
|
2020-07-22 19:09:24 -07:00
|
|
|
import {AsyncValidatorFn, Validator, ValidatorFn} from './validators';
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
|
2020-04-06 15:44:00 -07:00
|
|
|
export function controlPath(name: string|null, parent: ControlContainer): string[] {
|
|
|
|
return [...parent.path!, name!];
|
2016-06-08 15:36:24 -07:00
|
|
|
}
|
|
|
|
|
2016-06-10 11:15:59 -07:00
|
|
|
export function setUpControl(control: FormControl, dir: NgControl): void {
|
2020-06-29 08:17:13 -04:00
|
|
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
|
|
if (!control) _throwError(dir, 'Cannot find control with');
|
|
|
|
if (!dir.valueAccessor) _throwError(dir, 'No value accessor for form control with');
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
setUpValidators(control, dir, /* handleOnValidatorChange */ true);
|
|
|
|
|
2020-04-06 15:44:00 -07:00
|
|
|
dir.valueAccessor!.writeValue(control.value);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
setUpViewChangePipeline(control, dir);
|
|
|
|
setUpModelChangePipeline(control, dir);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
setUpBlurPipeline(control, dir);
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2020-11-09 22:58:19 -08:00
|
|
|
setUpDisabledChangeHandler(control, dir);
|
2016-06-08 15:36:24 -07:00
|
|
|
}
|
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
export function cleanUpControl(control: FormControl|null, dir: NgControl) {
|
2020-06-29 08:17:13 -04:00
|
|
|
const noop = () => {
|
|
|
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
|
|
_noControlError(dir);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
dir.valueAccessor!.registerOnChange(noop);
|
|
|
|
dir.valueAccessor!.registerOnTouched(noop);
|
2016-11-10 16:20:59 -08:00
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
cleanUpValidators(control, dir, /* handleOnValidatorChange */ true);
|
|
|
|
|
2020-11-09 22:58:19 -08:00
|
|
|
if (control) {
|
|
|
|
dir._invokeOnDestroyCallbacks();
|
|
|
|
control._registerOnCollectionChange(() => {});
|
|
|
|
}
|
2020-07-22 19:09:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function registerOnValidatorChange<V>(validators: (V|Validator)[], onChange: () => void): void {
|
|
|
|
validators.forEach((validator: (V|Validator)) => {
|
|
|
|
if ((<Validator>validator).registerOnValidatorChange)
|
|
|
|
(<Validator>validator).registerOnValidatorChange!(onChange);
|
2016-11-10 16:20:59 -08:00
|
|
|
});
|
2020-07-22 19:09:24 -07:00
|
|
|
}
|
2016-11-10 16:20:59 -08:00
|
|
|
|
2020-11-09 22:58:19 -08:00
|
|
|
/**
|
|
|
|
* Sets up disabled change handler function on a given form control if ControlValueAccessor
|
|
|
|
* associated with a given directive instance supports the `setDisabledState` call.
|
|
|
|
*
|
|
|
|
* @param control Form control where disabled change handler should be setup.
|
|
|
|
* @param dir Corresponding directive instance associated with this control.
|
|
|
|
*/
|
|
|
|
export function setUpDisabledChangeHandler(control: FormControl, dir: NgControl): void {
|
|
|
|
if (dir.valueAccessor!.setDisabledState) {
|
|
|
|
const onDisabledChange = (isDisabled: boolean) => {
|
|
|
|
dir.valueAccessor!.setDisabledState!(isDisabled);
|
|
|
|
};
|
|
|
|
control.registerOnDisabledChange(onDisabledChange);
|
|
|
|
|
|
|
|
// Register a callback function to cleanup disabled change handler
|
|
|
|
// from a control instance when a directive is destroyed.
|
|
|
|
dir._registerOnDestroy(() => {
|
|
|
|
control._unregisterOnDisabledChange(onDisabledChange);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
/**
|
|
|
|
* Sets up sync and async directive validators on provided form control.
|
|
|
|
* This function merges validators from the directive into the validators of the control.
|
|
|
|
*
|
|
|
|
* @param control Form control where directive validators should be setup.
|
|
|
|
* @param dir Directive instance that contains validators to be setup.
|
|
|
|
* @param handleOnValidatorChange Flag that determines whether directive validators should be setup
|
|
|
|
* to handle validator input change.
|
|
|
|
*/
|
|
|
|
export function setUpValidators(
|
|
|
|
control: AbstractControl, dir: AbstractControlDirective,
|
|
|
|
handleOnValidatorChange: boolean): void {
|
|
|
|
const validators = getControlValidators(control);
|
|
|
|
if (dir.validator !== null) {
|
|
|
|
control.setValidators(mergeValidators<ValidatorFn>(validators, dir.validator));
|
|
|
|
} else if (typeof validators === 'function') {
|
|
|
|
// If sync validators are represented by a single validator function, we force the
|
|
|
|
// `Validators.compose` call to happen by executing the `setValidators` function with
|
|
|
|
// an array that contains that function. We need this to avoid possible discrepancies in
|
|
|
|
// validators behavior, so sync validators are always processed by the `Validators.compose`.
|
|
|
|
// Note: we should consider moving this logic inside the `setValidators` function itself, so we
|
|
|
|
// have consistent behavior on AbstractControl API level. The same applies to the async
|
|
|
|
// validators logic below.
|
|
|
|
control.setValidators([validators]);
|
|
|
|
}
|
|
|
|
|
|
|
|
const asyncValidators = getControlAsyncValidators(control);
|
|
|
|
if (dir.asyncValidator !== null) {
|
|
|
|
control.setAsyncValidators(
|
|
|
|
mergeValidators<AsyncValidatorFn>(asyncValidators, dir.asyncValidator));
|
|
|
|
} else if (typeof asyncValidators === 'function') {
|
|
|
|
control.setAsyncValidators([asyncValidators]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Re-run validation when validator binding changes, e.g. minlength=3 -> minlength=4
|
|
|
|
if (handleOnValidatorChange) {
|
|
|
|
const onValidatorChange = () => control.updateValueAndValidity();
|
|
|
|
registerOnValidatorChange<ValidatorFn>(dir._rawValidators, onValidatorChange);
|
|
|
|
registerOnValidatorChange<AsyncValidatorFn>(dir._rawAsyncValidators, onValidatorChange);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cleans up sync and async directive validators on provided form control.
|
|
|
|
* This function reverts the setup performed by the `setUpValidators` function, i.e.
|
|
|
|
* removes directive-specific validators from a given control instance.
|
|
|
|
*
|
|
|
|
* @param control Form control from where directive validators should be removed.
|
|
|
|
* @param dir Directive instance that contains validators to be removed.
|
|
|
|
* @param handleOnValidatorChange Flag that determines whether directive validators should also be
|
|
|
|
* cleaned up to stop handling validator input change (if previously configured to do so).
|
|
|
|
*/
|
|
|
|
export function cleanUpValidators(
|
|
|
|
control: AbstractControl|null, dir: AbstractControlDirective,
|
|
|
|
handleOnValidatorChange: boolean): void {
|
|
|
|
if (control !== null) {
|
|
|
|
if (dir.validator !== null) {
|
|
|
|
const validators = getControlValidators(control);
|
|
|
|
if (Array.isArray(validators) && validators.length > 0) {
|
|
|
|
// Filter out directive validator function.
|
|
|
|
control.setValidators(validators.filter(validator => validator !== dir.validator));
|
|
|
|
}
|
2016-11-10 16:20:59 -08:00
|
|
|
}
|
|
|
|
|
2020-07-22 19:09:24 -07:00
|
|
|
if (dir.asyncValidator !== null) {
|
|
|
|
const asyncValidators = getControlAsyncValidators(control);
|
|
|
|
if (Array.isArray(asyncValidators) && asyncValidators.length > 0) {
|
|
|
|
// Filter out directive async validator function.
|
|
|
|
control.setAsyncValidators(
|
|
|
|
asyncValidators.filter(asyncValidator => asyncValidator !== dir.asyncValidator));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handleOnValidatorChange) {
|
|
|
|
// Clear onValidatorChange callbacks by providing a noop function.
|
|
|
|
const noop = () => {};
|
|
|
|
registerOnValidatorChange<ValidatorFn>(dir._rawValidators, noop);
|
|
|
|
registerOnValidatorChange<AsyncValidatorFn>(dir._rawAsyncValidators, noop);
|
|
|
|
}
|
2016-08-25 14:37:57 -07:00
|
|
|
}
|
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
function setUpViewChangePipeline(control: FormControl, dir: NgControl): void {
|
2020-04-06 15:44:00 -07:00
|
|
|
dir.valueAccessor!.registerOnChange((newValue: any) => {
|
2017-08-02 18:10:10 -07:00
|
|
|
control._pendingValue = newValue;
|
2017-11-11 02:54:36 -08:00
|
|
|
control._pendingChange = true;
|
2017-08-02 18:10:10 -07:00
|
|
|
control._pendingDirty = true;
|
|
|
|
|
2017-08-09 15:41:53 -07:00
|
|
|
if (control.updateOn === 'change') updateControl(control, dir);
|
2017-08-02 18:10:10 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function setUpBlurPipeline(control: FormControl, dir: NgControl): void {
|
2020-04-06 15:44:00 -07:00
|
|
|
dir.valueAccessor!.registerOnTouched(() => {
|
2017-08-07 15:39:25 -07:00
|
|
|
control._pendingTouched = true;
|
|
|
|
|
2017-11-11 02:54:36 -08:00
|
|
|
if (control.updateOn === 'blur' && control._pendingChange) updateControl(control, dir);
|
2017-08-09 15:41:53 -07:00
|
|
|
if (control.updateOn !== 'submit') control.markAsTouched();
|
2017-08-02 18:10:10 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-07 15:39:25 -07:00
|
|
|
function updateControl(control: FormControl, dir: NgControl): void {
|
|
|
|
if (control._pendingDirty) control.markAsDirty();
|
|
|
|
control.setValue(control._pendingValue, {emitModelToViewChange: false});
|
2018-01-12 20:03:54 -08:00
|
|
|
dir.viewToModelUpdate(control._pendingValue);
|
2017-11-11 02:54:36 -08:00
|
|
|
control._pendingChange = false;
|
2017-08-07 15:39:25 -07:00
|
|
|
}
|
|
|
|
|
2017-08-02 18:10:10 -07:00
|
|
|
function setUpModelChangePipeline(control: FormControl, dir: NgControl): void {
|
2020-11-09 22:58:19 -08:00
|
|
|
const onChange = (newValue: any, emitModelEvent: boolean) => {
|
2017-08-02 18:10:10 -07:00
|
|
|
// control -> view
|
2020-04-06 15:44:00 -07:00
|
|
|
dir.valueAccessor!.writeValue(newValue);
|
2017-08-02 18:10:10 -07:00
|
|
|
|
|
|
|
// control -> ngModel
|
|
|
|
if (emitModelEvent) dir.viewToModelUpdate(newValue);
|
2020-11-09 22:58:19 -08:00
|
|
|
};
|
|
|
|
control.registerOnChange(onChange);
|
|
|
|
|
|
|
|
// Register a callback function to cleanup onChange handler
|
|
|
|
// from a control instance when a directive is destroyed.
|
|
|
|
dir._registerOnDestroy(() => {
|
|
|
|
control._unregisterOnChange(onChange);
|
2017-08-02 18:10:10 -07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-25 13:27:29 -07:00
|
|
|
export function setUpFormContainer(
|
2020-04-06 15:44:00 -07:00
|
|
|
control: FormGroup|FormArray, dir: AbstractFormGroupDirective|FormArrayName) {
|
2020-06-29 08:17:13 -04:00
|
|
|
if (control == null && (typeof ngDevMode === 'undefined' || ngDevMode))
|
|
|
|
_throwError(dir, 'Cannot find control with');
|
2020-07-22 19:09:24 -07:00
|
|
|
setUpValidators(control, dir, /* handleOnValidatorChange */ false);
|
2016-06-08 15:36:24 -07:00
|
|
|
}
|
|
|
|
|
2016-08-25 14:37:57 -07:00
|
|
|
function _noControlError(dir: NgControl) {
|
|
|
|
return _throwError(dir, 'There is no FormControl instance attached to form control element with');
|
|
|
|
}
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
function _throwError(dir: AbstractControlDirective, message: string): void {
|
2016-07-13 14:13:02 -07:00
|
|
|
let messageEnd: string;
|
2020-04-06 15:44:00 -07:00
|
|
|
if (dir.path!.length > 1) {
|
2017-04-17 11:13:30 -07:00
|
|
|
messageEnd = `path: '${dir.path!.join(' -> ')}'`;
|
2020-04-06 15:44:00 -07:00
|
|
|
} else if (dir.path![0]) {
|
2016-07-13 14:13:02 -07:00
|
|
|
messageEnd = `name: '${dir.path}'`;
|
|
|
|
} else {
|
|
|
|
messageEnd = 'unspecified name attribute';
|
|
|
|
}
|
2016-08-25 00:50:16 -07:00
|
|
|
throw new Error(`${message} ${messageEnd}`);
|
2016-06-08 15:36:24 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function isPropertyUpdated(changes: {[key: string]: any}, viewModel: any): boolean {
|
2016-09-19 17:15:57 -07:00
|
|
|
if (!changes.hasOwnProperty('model')) return false;
|
|
|
|
const change = changes['model'];
|
2016-06-08 15:36:24 -07:00
|
|
|
|
|
|
|
if (change.isFirstChange()) return true;
|
2020-05-18 11:08:23 -07:00
|
|
|
return !Object.is(viewModel, change.currentValue);
|
2016-06-08 15:36:24 -07:00
|
|
|
}
|
|
|
|
|
2016-10-19 13:42:39 -07:00
|
|
|
const BUILTIN_ACCESSORS = [
|
|
|
|
CheckboxControlValueAccessor,
|
|
|
|
RangeValueAccessor,
|
|
|
|
NumberValueAccessor,
|
|
|
|
SelectControlValueAccessor,
|
|
|
|
SelectMultipleControlValueAccessor,
|
|
|
|
RadioControlValueAccessor,
|
|
|
|
];
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
export function isBuiltInAccessor(valueAccessor: ControlValueAccessor): boolean {
|
2016-10-19 13:42:39 -07:00
|
|
|
return BUILTIN_ACCESSORS.some(a => valueAccessor.constructor === a);
|
2016-08-24 16:58:43 -07:00
|
|
|
}
|
|
|
|
|
2017-08-07 21:11:46 -07:00
|
|
|
export function syncPendingControls(form: FormGroup, directives: NgControl[]): void {
|
|
|
|
form._syncPendingControls();
|
|
|
|
directives.forEach(dir => {
|
|
|
|
const control = dir.control as FormControl;
|
2017-11-11 02:54:36 -08:00
|
|
|
if (control.updateOn === 'submit' && control._pendingChange) {
|
2017-08-07 21:11:46 -07:00
|
|
|
dir.viewToModelUpdate(control._pendingValue);
|
2017-11-11 02:54:36 -08:00
|
|
|
control._pendingChange = false;
|
2017-08-07 21:11:46 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
// TODO: vsavkin remove it once https://github.com/angular/angular/issues/3011 is implemented
|
2016-06-08 16:38:52 -07:00
|
|
|
export function selectValueAccessor(
|
2017-04-17 11:13:30 -07:00
|
|
|
dir: NgControl, valueAccessors: ControlValueAccessor[]): ControlValueAccessor|null {
|
2016-09-30 09:26:53 -07:00
|
|
|
if (!valueAccessors) return null;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2020-06-29 08:17:13 -04:00
|
|
|
if (!Array.isArray(valueAccessors) && (typeof ngDevMode === 'undefined' || ngDevMode))
|
2018-03-13 19:34:18 +01:00
|
|
|
_throwError(dir, 'Value accessor was not provided as an array for form control with');
|
|
|
|
|
2017-04-17 11:13:30 -07:00
|
|
|
let defaultAccessor: ControlValueAccessor|undefined = undefined;
|
|
|
|
let builtinAccessor: ControlValueAccessor|undefined = undefined;
|
|
|
|
let customAccessor: ControlValueAccessor|undefined = undefined;
|
2018-03-13 19:34:18 +01:00
|
|
|
|
2016-06-08 15:36:24 -07:00
|
|
|
valueAccessors.forEach((v: ControlValueAccessor) => {
|
2016-10-19 13:42:39 -07:00
|
|
|
if (v.constructor === DefaultValueAccessor) {
|
2016-06-08 15:36:24 -07:00
|
|
|
defaultAccessor = v;
|
|
|
|
|
2016-08-24 16:58:43 -07:00
|
|
|
} else if (isBuiltInAccessor(v)) {
|
2020-06-29 08:17:13 -04:00
|
|
|
if (builtinAccessor && (typeof ngDevMode === 'undefined' || ngDevMode))
|
2016-07-13 14:13:02 -07:00
|
|
|
_throwError(dir, 'More than one built-in value accessor matches form control with');
|
2016-06-08 15:36:24 -07:00
|
|
|
builtinAccessor = v;
|
|
|
|
|
|
|
|
} else {
|
2020-06-29 08:17:13 -04:00
|
|
|
if (customAccessor && (typeof ngDevMode === 'undefined' || ngDevMode))
|
2016-07-13 14:13:02 -07:00
|
|
|
_throwError(dir, 'More than one custom value accessor matches form control with');
|
2016-06-08 15:36:24 -07:00
|
|
|
customAccessor = v;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-10-19 13:42:39 -07:00
|
|
|
if (customAccessor) return customAccessor;
|
|
|
|
if (builtinAccessor) return builtinAccessor;
|
|
|
|
if (defaultAccessor) return defaultAccessor;
|
2016-06-08 15:36:24 -07:00
|
|
|
|
2020-06-29 08:17:13 -04:00
|
|
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
|
|
_throwError(dir, 'No valid value accessor for form control with');
|
|
|
|
}
|
2016-06-08 15:36:24 -07:00
|
|
|
return null;
|
|
|
|
}
|
2017-08-07 21:11:46 -07:00
|
|
|
|
2020-11-09 22:58:19 -08:00
|
|
|
export function removeListItem<T>(list: T[], el: T): void {
|
2017-08-07 21:11:46 -07:00
|
|
|
const index = list.indexOf(el);
|
|
|
|
if (index > -1) list.splice(index, 1);
|
2017-11-11 02:54:36 -08:00
|
|
|
}
|
refactor(forms): deprecate ngModel usage on same field as formControl (#22633)
Support for using the `ngModel` input property and `ngModelChange`
event with reactive form directives has been deprecated in
Angular v6 and will be removed in Angular v7.
Now deprecated:
```html
<input [formControl]="control" [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
This has been deprecated for a few reasons. First, developers have
found this pattern confusing. It seems like the actual `ngModel`
directive is being used, but in fact it's an input/output property
named `ngModel` on the reactive form directive that simply approximates
(some of) its behavior. Specifically, it allows getting/setting the
value and intercepting value events. However, some of `ngModel`'s other
features - like delaying updates with`ngModelOptions` or exporting the
directive - simply don't work, which has understandably caused some
confusion.
In addition, this pattern mixes template-driven and reactive forms
strategies, which we generally don't recommend because it doesn't take
advantage of the full benefits of either strategy. Setting the value in
the template violates the template-agnostic principles behind reactive
forms, whereas adding a FormControl/FormGroup layer in the class removes
the convenience of defining forms in the template.
To update your code before v7, you'll want to decide whether to stick
with reactive form directives (and get/set values using reactive forms
patterns) or switch over to template-driven directives.
After (choice 1 - use reactive forms):
```html
<input [formControl]="control">
```
```ts
this.control.setValue('some value');
```
After (choice 2 - use template-driven forms):
```html
<input [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
You can also choose to silence this warning by providing a config for
`ReactiveFormsModule` at import time:
```ts
imports: [
ReactiveFormsModule.withConfig({warnOnNgModelWithFormControl: 'never'});
]
```
Alternatively, you can choose to surface a separate warning for each
instance of this pattern with a config value of `"always"`. This may
help to track down where in the code the pattern is being used as the
code is being updated.
Note: `warnOnNgModelWithFormControl` is set up as deprecated so that it
can be removed in v7 when it is no longer needed. This will not display
properly in API docs yet because dgeni doesn't yet support deprecating
properties in object literals, but we have an open issue to resolve the
discrepancy here: https://github.com/angular/angular/issues/22640.
PR Close #22633
2018-03-07 09:46:10 -08:00
|
|
|
|
|
|
|
// TODO(kara): remove after deprecation period
|
|
|
|
export function _ngModelWarning(
|
|
|
|
name: string, type: {_ngModelWarningSentOnce: boolean},
|
2020-04-06 15:44:00 -07:00
|
|
|
instance: {_ngModelWarningSent: boolean}, warningConfig: string|null) {
|
refactor(forms): deprecate ngModel usage on same field as formControl (#22633)
Support for using the `ngModel` input property and `ngModelChange`
event with reactive form directives has been deprecated in
Angular v6 and will be removed in Angular v7.
Now deprecated:
```html
<input [formControl]="control" [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
This has been deprecated for a few reasons. First, developers have
found this pattern confusing. It seems like the actual `ngModel`
directive is being used, but in fact it's an input/output property
named `ngModel` on the reactive form directive that simply approximates
(some of) its behavior. Specifically, it allows getting/setting the
value and intercepting value events. However, some of `ngModel`'s other
features - like delaying updates with`ngModelOptions` or exporting the
directive - simply don't work, which has understandably caused some
confusion.
In addition, this pattern mixes template-driven and reactive forms
strategies, which we generally don't recommend because it doesn't take
advantage of the full benefits of either strategy. Setting the value in
the template violates the template-agnostic principles behind reactive
forms, whereas adding a FormControl/FormGroup layer in the class removes
the convenience of defining forms in the template.
To update your code before v7, you'll want to decide whether to stick
with reactive form directives (and get/set values using reactive forms
patterns) or switch over to template-driven directives.
After (choice 1 - use reactive forms):
```html
<input [formControl]="control">
```
```ts
this.control.setValue('some value');
```
After (choice 2 - use template-driven forms):
```html
<input [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
You can also choose to silence this warning by providing a config for
`ReactiveFormsModule` at import time:
```ts
imports: [
ReactiveFormsModule.withConfig({warnOnNgModelWithFormControl: 'never'});
]
```
Alternatively, you can choose to surface a separate warning for each
instance of this pattern with a config value of `"always"`. This may
help to track down where in the code the pattern is being used as the
code is being updated.
Note: `warnOnNgModelWithFormControl` is set up as deprecated so that it
can be removed in v7 when it is no longer needed. This will not display
properly in API docs yet because dgeni doesn't yet support deprecating
properties in object literals, but we have an open issue to resolve the
discrepancy here: https://github.com/angular/angular/issues/22640.
PR Close #22633
2018-03-07 09:46:10 -08:00
|
|
|
if (!isDevMode() || warningConfig === 'never') return;
|
|
|
|
|
|
|
|
if (((warningConfig === null || warningConfig === 'once') && !type._ngModelWarningSentOnce) ||
|
|
|
|
(warningConfig === 'always' && !instance._ngModelWarningSent)) {
|
2020-06-29 08:17:13 -04:00
|
|
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
|
|
ReactiveErrors.ngModelWarning(name);
|
|
|
|
}
|
refactor(forms): deprecate ngModel usage on same field as formControl (#22633)
Support for using the `ngModel` input property and `ngModelChange`
event with reactive form directives has been deprecated in
Angular v6 and will be removed in Angular v7.
Now deprecated:
```html
<input [formControl]="control" [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
This has been deprecated for a few reasons. First, developers have
found this pattern confusing. It seems like the actual `ngModel`
directive is being used, but in fact it's an input/output property
named `ngModel` on the reactive form directive that simply approximates
(some of) its behavior. Specifically, it allows getting/setting the
value and intercepting value events. However, some of `ngModel`'s other
features - like delaying updates with`ngModelOptions` or exporting the
directive - simply don't work, which has understandably caused some
confusion.
In addition, this pattern mixes template-driven and reactive forms
strategies, which we generally don't recommend because it doesn't take
advantage of the full benefits of either strategy. Setting the value in
the template violates the template-agnostic principles behind reactive
forms, whereas adding a FormControl/FormGroup layer in the class removes
the convenience of defining forms in the template.
To update your code before v7, you'll want to decide whether to stick
with reactive form directives (and get/set values using reactive forms
patterns) or switch over to template-driven directives.
After (choice 1 - use reactive forms):
```html
<input [formControl]="control">
```
```ts
this.control.setValue('some value');
```
After (choice 2 - use template-driven forms):
```html
<input [(ngModel)]="value">
```
```ts
this.value = 'some value';
```
You can also choose to silence this warning by providing a config for
`ReactiveFormsModule` at import time:
```ts
imports: [
ReactiveFormsModule.withConfig({warnOnNgModelWithFormControl: 'never'});
]
```
Alternatively, you can choose to surface a separate warning for each
instance of this pattern with a config value of `"always"`. This may
help to track down where in the code the pattern is being used as the
code is being updated.
Note: `warnOnNgModelWithFormControl` is set up as deprecated so that it
can be removed in v7 when it is no longer needed. This will not display
properly in API docs yet because dgeni doesn't yet support deprecating
properties in object literals, but we have an open issue to resolve the
discrepancy here: https://github.com/angular/angular/issues/22640.
PR Close #22633
2018-03-07 09:46:10 -08:00
|
|
|
type._ngModelWarningSentOnce = true;
|
|
|
|
instance._ngModelWarningSent = true;
|
|
|
|
}
|
|
|
|
}
|