我一直试图制作标签视图,并认为内容投影可能是一个很好的方法。我从这个article学到了它。我认为只要输入给定的组件数组就可以使其动态化,并且它们将显示为所选选项卡的页面。
我试图这样做:
@Component({
selector: 'my-app',
template:`
<h1>Experiments</h1>
<button class="add-button" (click)="add()">Add</button>`
})
export class App {
components:Array<any> = [PrepSetupTab,FinalizeTab]
constructor(private cdr: ChangeDetectorRef,
private compFR: ComponentFactoryResolver,
private viewContainer: ViewContainerRef ){}
add():void{
var transTabRefs: Array<any>= []
this.components.forEach(tabComponent=>{
let compFactory = this.compFR.resolveComponentFactory(tabComponent);
let compRef = this.viewContainer.createComponent(compFactory);
let tabFactory = this.compFR.resolveComponentFactory(Tab);
let transcludedTabRef = this.viewContainer.createComponent(tabFactory,this.viewContainer.length - 1, undefined, [[compRef.location.nativeElement]]);
transTabRefs.push(transcludedTabRef.location.nativeElement);
})
let tabsFactory = this.compFR.resolveComponentFactory(Tabs); // notice this is the tabs not tab
this.viewContainer.createComponent(tabsFactory,0,undefined,[transTabRefs]);
}
}
旁注,add()作为按钮的点击处理程序并不是为避免此错误而设计的其他功能:"EXCEPTION: Expression has changed after it was checked"
。如果我把它放在任何生命周期钩子中,我就会遇到这个错误。虽然这对于以后处理是一个挑战。
所以基本上我正在创建数组中的每个Component,然后我将它们作为每个创建的Tab组件的ng-content加入。然后获取每个Tab组件并将其粘贴到选项卡组件的ng-content中。
问题是Tabs Component没有找到动态创建的Tab子项的contentChildren。以下是选项卡组件的代码,其中内容子项未定义。
@Component({
selector: 'tabs',
template:`
<ul class="nav nav-tabs">
<li *ngFor="let tab of tabs" (click)="selectTab(tab)" [class.active]="tab.active">
<a>{{tab.title}}</a>
</li>
</ul>
<ng-content></ng-content>
`
})
export class Tabs implements AfterContentInit {
@ContentChildren(Tab) tabs: QueryList<Tab>;
// contentChildren are set
ngAfterContentInit() {
// get all active tabs
let activeTabs = this.tabs.filter((tab)=>tab.active);
// if there is no active tab set, activate the first
if(activeTabs.length === 0) {
this.selectTab(this.tabs.first);
}
}
selectTab(tab: Tab){
// deactivate all tabs
this.tabs.toArray().forEach(tab => tab.active = false);
// activate the tab the user has clicked on.
tab.active = true;
}
}
我似乎很清楚Tab组件是在不同的时间创建的,然后当我需要从Tabs组件中将它们作为内容子项访问时。我也尝试过使用ChangeDetectionRef.changeDetect(),但这并没有帮助。
也许通过内容投影来做这件事并不是最简单的方式,所以我愿意接受建议。这是plunk,谢谢!
答案 0 :(得分:0)
看看我在这里给出的例子dynamically add elements to DOM,也许你会发现一些有用的问题。在你的plnkr中,tabs数组是空的。
答案 1 :(得分:0)
@ContentChildren
不适用于动态创建的组件。
<强>为什么吗
这是因为投影候选人必须在编译时知道。
以下是用于计算ContentChildren
function calcQueryValues(view, startIndex, endIndex, queryDef, values) {
for (var /** @type {?} */ i = startIndex; i <= endIndex; i++) {
var /** @type {?} */ nodeDef = view.def.nodes[i];
var /** @type {?} */ valueType = nodeDef.matchedQueries[queryDef.id];
if (valueType != null) {
values.push(getQueryValue(view, nodeDef, valueType));
}
它使用viewDefinition
中为组件声明的节点。
当您通过createComponent创建tabs
组件并手动传递可投影节点时,您没有更改viewDefinition
工厂的制表符组件,因此angular不会了解动态节点。
可能的解决方案是手动初始化标签
您可以在 Plunkr
中观察它