我有一个自定义复选框指令,它添加了传统标签/跨度样式的样式以及其他一些功能。它在自身周围注入包装器并在旁边注入跨度。我刚刚意识到,当放置在结构指令中时,它无法操纵 DOM。大多数设置是在构造函数中完成的,但我认为这可能需要更多的 Angular 生命周期感知才能与结构父级一起使用。
示例问题 DOM:
<ng-container *ngIf="test">
<!-- <div class="row align-middle"> -->
<input type="text" alloy placeholder="you should see a checkbox">
<input type="checkbox" alloy alloyLabel="default">
<!-- </div> -->
</ng-container>
使用该评论的 div 它可以工作。但是,由于 ng-container 是直接父级,因此渲染器无法注入 DOM。这是构造函数:
constructor(
protected el: ElementRef,
protected renderer: Renderer2,
protected focusMonitor: FocusMonitor,
@Host() @Optional() protected identityDirective: AlloyIdentityDirective) {
super();
// If we don't have a label wrapper, create one
this.labelElement = this.renderer.parentNode(el.nativeElement);
if (!(this.labelElement instanceof HTMLLabelElement)) {
const label = this.renderer.createElement('label');
// Inject wrapper then move native element (input) within it.
this.renderer.insertBefore(this.labelElement, label, this.el.nativeElement);
this.renderer.removeChild(this.labelElement, this.el.nativeElement);
this.renderer.appendChild(label, this.el.nativeElement);
this.labelElement = label;
// We must add the span because that's what actually gets the check styling
this.styledElement = this.renderer.createElement('span');
this.renderer.appendChild(this.labelElement, this.styledElement);
}
编辑:添加了结果 DOM
没有实际错误。在有缺陷的情况下( 的直接父级ng-container
)我最终得到了初始元素,但没有注入:
<input type="checkbox" alloy alloyLabel="default">
使用包装器div
,我得到了预期的注入(_ngcontent* 已删除):
<label class="alloy-check-wrapper">
<input alloy="" alloylabel="default" type="checkbox" class="alloy-check">
<span></span>
<span class="alloyLabel">default</span>
</label>