Angular中可重用的自定义组件列表

时间:2018-05-21 14:22:22

标签: angular list angular2-template children ngfor

我想在Angular5中创建可重用的SortedList组件。该列表应接受任何listItems(对象)数组作为属性。从ListContainer组件我想使用列表并传递列表项模板,如下所示:

<div class='list-container'>
<SortedList [items]='getListItems()' [categories]='getSortCategories()' >
  <ACustomItem [item]='item'></AcustomItem>
</SortedList
<div>

ACustomItem将是接受[item]的任何组件,html将根据实现而有所不同。

在我的SortList中,我有:

<div class='sorted-list'>
  <div class='sorted-list__header'>
    <div class='sorted-list__header-title'>{{title}}</div>
    <select [(ngModel)]='selectedCategory' (ngModelChange)='onCategoryChange($event)'>
      <option *ngFor='let category of categories' [ngValue]='category.id'>{{category.name}}</option>
    </select>
  </div>
  <div class='sorted-list__body'>
    <div *ngFor="let item of data | orderBy: selectedCategory.id ">
     <ng-content></ng-content>
    </div>
  </div>
</div>

上面不起作用,这里缺少什么?我假设我需要在这里使用ng-template,但不确定它应该如何嵌入到这里?

1 个答案:

答案 0 :(得分:2)

我找到了this解决方案,并为Angular 5和您的特定组件修改了它。由于Angular removed的第5版ngOutletContexthere,因此在stackblitz中就是一个例子。

SortedList组件模板

<div *ngFor="let item of items">
    <template [ngTemplateOutletContext]='{item: item}' [ngTemplateOutlet]="templateVariable"></template>
</div>

SortedList组件ts

@Input() items: any[];
@ContentChild(TemplateRef) templateVariable: TemplateRef<any>;

应用组件模板

<app-sorted-list [items]="myItems">
    <ng-template let-item="item">
        <!--Here can be any component-->
        <app-sorted-list-item [item]="item"></app-sorted-list-item>
    </ng-template> 
</app-sorted-list>