我有一个数据集,其中包含一组面板,其中包含有关应加载到 mat-tab-group 中的组件的信息。mat-tab-group 中的选项卡可以关闭。为此,我更改了用于构建选项卡组的数据结构。因此,当我们有一个包含 4 个面板的数组(在选项卡组中呈现 4 个选项卡)并且我们删除一个面板时,该数组将只有 3 个值,并且只呈现三个选项卡。
问题是已删除选项卡中的组件实际上会保持活动状态。我通过在我的组件的构造函数中添加一个间隔来测试这一点。当组件消失时,我希望它真的消失了,但是间隔中的 console.log 会继续记录。
这是最小复制的堆栈闪电: https ://stackblitz.com/edit/angular-wfkpqq
我做了一些谷歌搜索并检查了文档,但我找不到任何关于关闭 mat-tabs 的信息。有一个家伙告诉某人这应该由用户实现,但他们并没有真正为您提供正确执行此操作的工具。
如何确保我的孤立组件被销毁?
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-dock',
templateUrl: './dock.component.html',
styleUrls: ['./dock.component.css']
})
export class DockComponent {
public dock: any;
constructor() {
this.dock = {
panels: [
{
name: 'panel1'
},
{
name: 'panel2'
},
{
name: 'panel3'
},
{
name: 'panel4'
}
]
}
}
public onClose(panel): void {
var index = this.dock.panels.indexOf(panel);
if (index > -1) {
this.dock.panels.splice(index, 1);
}
}
}
<mat-tab-group #tabs>
<ng-container *ngFor="let panel of dock.panels">
<mat-tab>
<ng-template mat-tab-label>
<div>
<span class="tab-title">{{panel.name}}</span>
<span style="flex: 1 1 auto;"></span>
<div class="tab-options">
<button mat-icon-button (click)="onClose(panel)">
<mat-icon>close</mat-icon>
</button>
</div>
</div>
</ng-template>
<!-- ng-template with matTabContent makes the tabs lazy load -->
<ng-template matTabContent>
<app-annoying [name]="panel.name"></app-annoying>
</ng-template>
</mat-tab>
</ng-container>
</mat-tab-group>
[编辑] 问题是别的。我分离了一个动态插入的组件,以便我可以移动组件。我在关闭组件时也这样做了,因此面板被分离,因此永远不会调用 OnDestroy。我会接受唯一的答案,因为它引导我犯了错误。