我正在使用角度自定义元素来构建一个应用程序,其中 MatDialog 是自定义元素的一部分。我在主机应用程序中也有一个 MatMenu。问题是,当我在页面加载时打开 mat-dialog,然后打开 mat-menu,mat-dialog 之后就不起作用了,否则如果我先打开菜单,然后再打开 mat-dialog,则菜单不起作用工作了。
您可以在以下位置找到 stackblitz:https ://stackblitz.com/edit/angular-nr58ab-tbu38h
我在 index.html 本身中添加了 MatDialog 应用程序的 main.js 代码。main.js 是在 prod 模式下使用 ngx-build-plus 构建应用程序后生成的,输出哈希为 none 且单包为 true。
MatDialog 应用程序代码如下:
app.module.ts
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { NgModule, Injector } from "@angular/core";
import { AppRoutingModule } from "./app-routing.module";
import { AppComponent } from "./app.component";
import { createCustomElement } from "@angular/elements";
import { MatDialogModule, MatButtonModule } from "@angular/material";
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
AppRoutingModule,
MatDialogModule,
BrowserAnimationsModule,
MatButtonModule
],
providers: [],
bootstrap: [AppComponent],
entryComponents: [AppComponent]
})
export class AppModule {
constructor(private injector: Injector) {
const myCustomElement = createCustomElement(AppComponent, {
injector: this.injector
});
customElements.define("app-test-data", myCustomElement);
}
ngDoBootstrap() {}
}
app.component.ts
import { Component, Input, TemplateRef } from "@angular/core";
import { MatDialog } from "@angular/material";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.css"]
})
export class AppComponent {
constructor(private dialog: MatDialog) {}
openModal(temp: TemplateRef<any>) {
this.dialog.open(temp, { width: "100px", height: "100px" });
}
}
和 app.component.html
<button mat-raised-button (click)="openModal(modal)">Open</button>
<ng-template #modal>
<mat-dialog-content>
Hello
</mat-dialog-content>
</ng-template>
这是我在 stackblitz 中构建并放入应用程序的 index.html 中的应用程序。
我已经坚持了一段时间,我也尝试在 NgZone.run() 中运行 dialog.open() ,但也没有运气。谢谢。