angular-cn/packages/forms/src/directives/ng_form.ts

159 lines
5.0 KiB
TypeScript
Raw Normal View History

/**
* @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
*/
import {Directive, EventEmitter, Inject, Optional, Self, forwardRef} from '@angular/core';
import {AbstractControl, FormControl, FormGroup} from '../model';
import {NG_ASYNC_VALIDATORS, NG_VALIDATORS} from '../validators';
import {ControlContainer} from './control_container';
2016-06-08 18:36:24 -04:00
import {Form} from './form_interface';
import {NgControl} from './ng_control';
import {NgModel} from './ng_model';
import {NgModelGroup} from './ng_model_group';
import {composeAsyncValidators, composeValidators, setUpControl, setUpFormContainer} from './shared';
2016-06-08 18:36:24 -04:00
2016-07-30 22:18:14 -04:00
export const formDirectiveProvider: any = {
provide: ControlContainer,
useExisting: forwardRef(() => NgForm)
};
2016-06-08 18:36:24 -04:00
const resolvedPromise = Promise.resolve(null);
2016-06-08 18:36:24 -04:00
/**
* @whatItDoes Creates a top-level {@link FormGroup} instance and binds it to a form
* to track aggregate form value and validation status.
2016-06-08 18:36:24 -04:00
*
* @howToUse
2016-06-08 18:36:24 -04:00
*
* As soon as you import the `FormsModule`, this directive becomes active by default on
* all `<form>` tags. You don't need to add a special selector.
2016-06-08 18:36:24 -04:00
*
* You can export the directive into a local template variable using `ngForm` as the key
* (ex: `#myForm="ngForm"`). This is optional, but useful. Many properties from the underlying
* {@link FormGroup} instance are duplicated on the directive itself, so a reference to it
* will give you access to the aggregate value and validity status of the form, as well as
* user interaction properties like `dirty` and `touched`.
2016-06-08 18:36:24 -04:00
*
* To register child controls with the form, you'll want to use {@link NgModel} with a
* `name` attribute. You can also use {@link NgModelGroup} if you'd like to create
* sub-groups within the form.
2016-06-08 18:36:24 -04:00
*
* You can listen to the directive's `ngSubmit` event to be notified when the user has
* triggered a form submission. The `ngSubmit` event will be emitted with the original form
* submission event.
2016-06-08 18:36:24 -04:00
*
* {@example forms/ts/simpleForm/simple_form_example.ts region='Component'}
2016-06-08 18:36:24 -04:00
*
* * **npm package**: `@angular/forms`
2016-06-08 18:36:24 -04:00
*
* * **NgModule**: `FormsModule`
2016-06-08 18:36:24 -04:00
*
* @stable
2016-06-08 18:36:24 -04:00
*/
@Directive({
selector: 'form:not([ngNoForm]):not([formGroup]),ngForm,[ngForm]',
2016-06-08 18:36:24 -04:00
providers: [formDirectiveProvider],
host: {'(submit)': 'onSubmit($event)', '(reset)': 'onReset()'},
2016-06-08 18:36:24 -04:00
outputs: ['ngSubmit'],
exportAs: 'ngForm'
})
export class NgForm extends ControlContainer implements Form {
private _submitted: boolean = false;
form: FormGroup;
2016-06-08 18:36:24 -04:00
ngSubmit = new EventEmitter();
constructor(
@Optional() @Self() @Inject(NG_VALIDATORS) validators: any[],
@Optional() @Self() @Inject(NG_ASYNC_VALIDATORS) asyncValidators: any[]) {
2016-06-08 18:36:24 -04:00
super();
this.form =
new FormGroup({}, composeValidators(validators), composeAsyncValidators(asyncValidators));
2016-06-08 18:36:24 -04:00
}
get submitted(): boolean { return this._submitted; }
get formDirective(): Form { return this; }
get control(): FormGroup { return this.form; }
2016-06-08 18:36:24 -04:00
get path(): string[] { return []; }
get controls(): {[key: string]: AbstractControl} { return this.form.controls; }
addControl(dir: NgModel): void {
resolvedPromise.then(() => {
const container = this._findContainer(dir.path);
dir._control = <FormControl>container.registerControl(dir.name, dir.control);
setUpControl(dir.control, dir);
dir.control.updateValueAndValidity({emitEvent: false});
2016-06-08 18:36:24 -04:00
});
}
getControl(dir: NgModel): FormControl { return <FormControl>this.form.get(dir.path); }
2016-06-08 18:36:24 -04:00
removeControl(dir: NgModel): void {
resolvedPromise.then(() => {
const container = this._findContainer(dir.path);
2016-11-11 13:47:34 -05:00
if (container) {
2016-06-08 18:36:24 -04:00
container.removeControl(dir.name);
}
});
}
addFormGroup(dir: NgModelGroup): void {
resolvedPromise.then(() => {
const container = this._findContainer(dir.path);
const group = new FormGroup({});
setUpFormContainer(group, dir);
2016-06-08 18:36:24 -04:00
container.registerControl(dir.name, group);
group.updateValueAndValidity({emitEvent: false});
});
}
removeFormGroup(dir: NgModelGroup): void {
resolvedPromise.then(() => {
const container = this._findContainer(dir.path);
2016-11-11 13:47:34 -05:00
if (container) {
2016-06-08 18:36:24 -04:00
container.removeControl(dir.name);
}
});
}
getFormGroup(dir: NgModelGroup): FormGroup { return <FormGroup>this.form.get(dir.path); }
2016-06-08 18:36:24 -04:00
updateModel(dir: NgControl, value: any): void {
resolvedPromise.then(() => {
const ctrl = <FormControl>this.form.get(dir.path);
ctrl.setValue(value);
2016-06-08 18:36:24 -04:00
});
}
setValue(value: {[key: string]: any}): void { this.control.setValue(value); }
onSubmit($event: Event): boolean {
2016-06-08 18:36:24 -04:00
this._submitted = true;
this.ngSubmit.emit($event);
2016-06-08 18:36:24 -04:00
return false;
}
onReset(): void { this.resetForm(); }
resetForm(value: any = undefined): void {
this.form.reset(value);
this._submitted = false;
}
2016-06-08 18:36:24 -04:00
/** @internal */
_findContainer(path: string[]): FormGroup {
2016-06-08 18:36:24 -04:00
path.pop();
2016-10-21 18:14:44 -04:00
return path.length ? <FormGroup>this.form.get(path) : this.form;
2016-06-08 18:36:24 -04:00
}
}