实际上,有两件事要实现:
- 提供表单组件逻辑的组件。它不会因为它的输入将被提供
ngModel
自身
- 自定义
ControlValueAccessor
将实现这个组件之间的桥梁ngModel
/ngControl
让我们取样。我想实现一个管理公司标签列表的组件。该组件将允许添加和删除标签。我想添加一个验证以确保标签列表不为空。我将在组件中定义它,如下所述:
(...)
import {TagsComponent} from './app.tags.ngform';
import {TagsValueAccessor} from './app.tags.ngform.accessor';
function notEmpty(control) {
if(control.value == null || control.value.length===0) {
return {
notEmpty: true
}
}
return null;
}
@Component({
selector: 'company-details',
directives: [ FormFieldComponent, TagsComponent, TagsValueAccessor ],
template: `
<form [ngFormModel]="companyForm">
Name: <input [(ngModel)]="company.name"
[ngFormControl]="companyForm.controls.name"/>
Tags: <tags [(ngModel)]="company.tags"
[ngFormControl]="companyForm.controls.tags"></tags>
</form>
`
})
export class DetailsComponent implements OnInit {
constructor(_builder:FormBuilder) {
this.company = new Company('companyid',
'some name', [ 'tag1', 'tag2' ]);
this.companyForm = _builder.group({
name: ['', Validators.required],
tags: ['', notEmpty]
});
}
}
该TagsComponent
组件定义了添加和删除tags
列表中元素的逻辑。
@Component({
selector: 'tags',
template: `
<div *ngIf="tags">
<span *ngFor="#tag of tags" style="font-size:14px"
class="label label-default" (click)="removeTag(tag)">
{{label}} <span class="glyphicon glyphicon-remove"
aria- hidden="true"></span>
</span>
<span> | </span>
<span style="display:inline-block;">
<input [(ngModel)]="tagToAdd"
style="width: 50px; font-size: 14px;" class="custom"/>
<em class="glyphicon glyphicon-ok" aria-hidden="true"
(click)="addTag(tagToAdd)"></em>
</span>
</div>
`
})
export class TagsComponent {
@Output()
tagsChange: EventEmitter;
constructor() {
this.tagsChange = new EventEmitter();
}
setValue(value) {
this.tags = value;
}
removeLabel(tag:string) {
var index = this.tags.indexOf(tag, 0);
if (index != undefined) {
this.tags.splice(index, 1);
this.tagsChange.emit(this.tags);
}
}
addLabel(label:string) {
this.tags.push(this.tagToAdd);
this.tagsChange.emit(this.tags);
this.tagToAdd = '';
}
}
如您所见,此组件中没有输入,只有setValue
一个(这里的名称并不重要)。我们稍后使用它来提供从ngModel
到组件的值。该组件定义一个事件,以通知组件(标签列表)的状态何时更新。
现在让我们实现此组件和ngModel
/ 之间的链接ngControl
。这对应于实现该ControlValueAccessor
接口的指令。必须根据NG_VALUE_ACCESSOR
令牌为此值访问器定义一个提供程序(不要忘记使用forwardRef
该提供程序,因为该指令是在之后定义的)。
该指令将tagsChange
在主机的事件上附加一个事件侦听器(即,该指令所附加的组件,即TagsComponent
)。onChange
事件发生时将调用该方法。此方法对应于Angular2注册的方法。这样,它将知道更改并相应地更新关联的表单控件。
当中writeValue
绑定的值ngForm
更新时,将调用。注入附加的组件(即,TagsComponent)后,我们将能够调用它以传递此值(请参见前面的setValue
方法)。
不要忘记CUSTOM_VALUE_ACCESSOR
在指令的绑定中提供。
这是自定义的完整代码ControlValueAccessor
:
import {TagsComponent} from './app.tags.ngform';
const CUSTOM_VALUE_ACCESSOR = CONST_EXPR(new Provider(
NG_VALUE_ACCESSOR, {useExisting: forwardRef(() => TagsValueAccessor), multi: true}));
@Directive({
selector: 'tags',
host: {'(tagsChange)': 'onChange($event)'},
providers: [CUSTOM_VALUE_ACCESSOR]
})
export class TagsValueAccessor implements ControlValueAccessor {
onChange = (_) => {};
onTouched = () => {};
constructor(private host: TagsComponent) { }
writeValue(value: any): void {
this.host.setValue(value);
}
registerOnChange(fn: (_: any) => void): void { this.onChange = fn; }
registerOnTouched(fn: () => void): void { this.onTouched = fn; }
}
这样,当我删除tags
公司的所有内容时,控件的valid
属性companyForm.controls.tags
将false
自动变为。
有关更多详细信息,请参见本文(“与NgModel兼容的组件”一节):