refactor(facade): Remove most of StringMapWrapper facade. (#12022)

This change mostly automated by
12012b07a2
with some manual fixes.
This commit is contained in:
Alex Eagle
2016-10-03 16:46:05 -07:00
committed by Chuck Jazdzewski
parent ed9c2b6281
commit b64b5ece65
36 changed files with 140 additions and 205 deletions

View File

@ -939,9 +939,9 @@ export class FormGroup extends AbstractControl {
*/
setValue(value: {[key: string]: any}, {onlySelf}: {onlySelf?: boolean} = {}): void {
this._checkAllValuesPresent(value);
StringMapWrapper.forEach(value, (newValue: any, name: string) => {
Object.keys(value).forEach(name => {
this._throwIfControlMissing(name);
this.controls[name].setValue(newValue, {onlySelf: true});
this.controls[name].setValue(value[name], {onlySelf: true});
});
this.updateValueAndValidity({onlySelf: onlySelf});
}
@ -968,9 +968,9 @@ export class FormGroup extends AbstractControl {
* ```
*/
patchValue(value: {[key: string]: any}, {onlySelf}: {onlySelf?: boolean} = {}): void {
StringMapWrapper.forEach(value, (newValue: any, name: string) => {
Object.keys(value).forEach(name => {
if (this.controls[name]) {
this.controls[name].patchValue(newValue, {onlySelf: true});
this.controls[name].patchValue(value[name], {onlySelf: true});
}
});
this.updateValueAndValidity({onlySelf: onlySelf});
@ -1046,7 +1046,7 @@ export class FormGroup extends AbstractControl {
/** @internal */
_forEachChild(cb: (v: any, k: string) => void): void {
StringMapWrapper.forEach(this.controls, cb);
Object.keys(this.controls).forEach(k => cb(this.controls[k], k));
}
/** @internal */