此解决方案只是一种解决方法,并且有其缺陷。下面会提到。
脚步 :
在模板中:
禁用 mat-tab-group 的所有选项卡
<mat-tab label="Tab 0" disabled>
在 mat-tab-group 上提供单击事件处理程序。还可以selectedIndex
使用组件类中的变量设置属性。
<mat-tab-group (click)="tabClick($event)" [selectedIndex]="selectedTabIndex">
在组件类中:
声明变量selectedTabIndex
selectedTabIndex = 0;
创建一个方法来获取选项卡索引,提供选项卡标签。
getTabIndex(tabName: string): number {
switch (tabName) {
case 'Tab 0': return 0;
case 'Tab 1': return 1;
case 'Tab 2': return 2;
default: return -1; // return -1 if clicked text is not a tab label text
}
}
我们可以从 click 事件的属性中获取 tab-label 文本
`clickEventName.toElement.innerText`
在 mat-tab-group 上创建处理 click 事件的方法。
tabClick(clickEvent: any) {
// Get the index of clicked tab using the above function
const clickedTabIndex = this.getTabIndex(clickEvent.toElement.innerText);
// if click was not on a tab label, do nothing
if (clickedTabIndex === -1) {
return;
}
// if current tab is same as clicked tab, no need to change.
//Otherwise check whether editing is going on and decide
if (!(this.selectedTabIndex === clickedTabIndex)) {
if ( /*logic for form dirty check*/ ) {
// if form is dirty, show a warning modal and don't change tab.
}
else {
// if form is not dirty, change the tab
this.selectedTabIndex = clickedTabIndex;
}
}
}
在我的情况下,每个选项卡内容都在单独的组件中。所以我曾经@ViewChild
访问它们并检查任何表单是否脏。
缺陷:
由于此方法使用单击元素的文本来切换选项卡,因此您的一个选项卡可能包含一些文本内容与其他选项卡标题相同的元素。
所以它可能会触发标签更改。如果可能,您可以在单击事件中查找其他属性以防止出现这种情况。tabClick()
我在方法的开头使用了以下代码
if (!((clickEvent.toElement.className).toString().includes('mat-tab-label'))) {
return;
}
您可能需要覆盖css
ofdisabled
状态mat-tab
以使其看起来自然
模板:
<mat-tab-group (click)="tabClick($event)" [selectedIndex]="selectedTabIndex">
<mat-tab label="Tab 0" disabled>
// Tab 0 Content
</mat-tab>
<mat-tab label="Tab 1" disabled>
// Tab 1 Content
</mat-tab>
<mat-tab label="Tab 2" disabled>
// Tab 2 Content
</mat-tab>
</mat-tab-group>