嵌套 *ngFors - 更好的选择? (Angular 7)

Nested *ngFors - better alternative? (Angular 7)

我有一个 object,它包含一个数组 - 这个数组可以包含一个或多个与 parent 相同类型的 object。可能的关卡数量没有限制。要显示当前数据集中的所有数据,我有以下代码:

<div *ngIf="selectedUserMappings">
  <ul *ngFor="let group of selectedUserMappings.childGroups">
    <li style="font-weight:600;">{{group.name}}</li>
    <div *ngFor="let child of group.childGroups">
      <li *ngIf="child.active">{{child.name}}</li>
      <div *ngFor="let n2child of child.childGroups">
        <li *ngIf="n2child.active">{{n2child.name}}</li>
        <div *ngFor="let n3child of n2child.childGroups">
          <li *ngIf="n3child.active">{{n3child.name}}</li>
        </div>
      </div>
    </div>
  </ul>
</div>

这不是达到预期结果的好方法。任何关于更好方法的指示?

编辑:从目前的建议来看,我认为要走的路将是虚拟组件。我需要在列表中显示具有不同样式的外部 parent,我现在可以这样做。但是,我还需要隐藏没有孩子活动的 top-level parents(所有 objects 都有一个 active-boolean),以及不活动的孩子。 non-active 个孩子的 children 应该仍然可见。有任何想法吗?这是我到目前为止得到的:

import { Component, OnInit, Input } from '@angular/core';
import { UserGroupMapping } from 'src/app/models/models';

@Component({
  selector: 'list-item',
  templateUrl: './list-item.component.html',
  styleUrls: ['./list-item.component.scss']
})
export class ListItemComponent implements OnInit {
  @Input() data;
  list: Array<any> = [];

  constructor() { }

  ngOnInit() {
    this.data.forEach(item => {
    this.createList(item, true);
    });
  }

  createList(data, parent?) {
    if (parent) {
       this.list.push({'name': data.name, 'class': 'parent'});
       if (data.childGroups && data.childGroups.length > 0) {
        this.createList(data, false);
       }
    } else {
      data.childGroups.forEach(i => {
        this.list.push({'name': i.name, 'class': 'child'});
        if (i.childGroups && i.childGroups.length > 0) {
          this.createList(i, false);
        }
      });
    }
    console.log(this.list);
  }
}

像这样从 parent 组件调用:

  <div *ngIf="mappings">
    <list-item [data]="mappings.childGroups"></list-item>
  </div>

你在描述一棵树。尝试使用某种树组件。例如 prime ng 有一个树组件。

我最终放弃了虚拟组件,在显示它之前直接在我的组件中构建列表 - 这样会更容易立即显示更改。

  createSummary() {
    this.listFinished = false;
    this.mappings.childGroups.forEach(item => {
      this.list = [];
      this.createList(item, true);

      this.list.forEach(i => {
        if (i.active) {
          this.list[0].active = true;
        }
      });
      this.lists.push(this.list);
    });
    this.listFinished = true;
  }

  createList(data, parent?) {
    if (parent) {
       this.list.push({'name': data.name, 'class': 'parent', 'active': false});
       if (data.childGroups && data.childGroups.length > 0) {
        this.createList(data, false);
       }
    } else {
      data.childGroups.forEach(i => {
        this.list.push({'name': i.name, 'class': 'child', 'active': i.active});
        if (i.childGroups && i.childGroups.length > 0) {
          this.createList(i, false);
        }
      });
    }
}

那我这样显示:

  <div *ngIf="listFinished">
    <ul *ngFor="let list of lists">
      <div *ngFor="let item of list">
        <li [class]="item.class" *ngIf="item.active">
          {{item.name}}
        </li>
      </div>
    </ul>
  </div>