0

完成从 Angular 5 到 8 的升级后,除了 Material 模态对话框之外,几乎所有东西都可以正常工作。使用浏览器调试器,我们可以看到结构在 DOM 中,但它们没有被绘制出来。我们最初使用的是 No-op animator 模块。当我将它切换到 BrowserAnimations 模块时,会出现动画对话框,但是一旦动画完成,它就会在视觉上消失。它仍然在那里,您可以与它进行部分交互——如果您单击应呈现关闭按钮的位置,对话框将关闭。(您可以说这是因为“玻璃”/灰色屏幕盖消失了。)我们已经修复了所有单元测试 (2500+),它们运行 100% 干净,并且大多数应用程序都按预期工作。只是对话框在视觉上消失了。

我已经尝试过的事情:

  1. 通过 Chrome 调试工具将各种项目的 z-index 设置为荒谬的值 (25000)
  2. 通过调试器将 CSS 显示属性显式设置为“阻止”各种元素
  3. 将 CSS 可见性显式设置为“可见”
  4. 将 CSS 不透明度显式设置为“1”
  5. 验证对话框组件都列在它们所在模块的 EntryComponents 中(并且该模块已导入主应用程序模块)

Angular 5 一切正常——这绝对是升级的副作用。我怀疑这可能是 Material 与我们正在使用的其他模块的交互,这些模块曾经一起玩得很好,但现在不再这样做了。但是,我不确定那可能是什么或如何弄清楚。为此,这是我们正在使用的(package.json extact):

  "dependencies": {
    "@angular/animations": "^8.2.1",
    "@angular/cdk": "^8.1.2",
    "@angular/common": "^8.2.1",
    "@angular/compiler": "^8.2.1",
    "@angular/core": "^8.2.1",
    "@angular/flex-layout": "^8.0.0-beta.27",
    "@angular/forms": "^8.2.1",
    "@angular/material": "^8.1.2",
    "@angular/material-moment-adapter": "^8.1.2",
    "@angular/platform-browser": "^8.2.1",
    "@angular/platform-browser-dynamic": "^8.2.1",
    "@angular/router": "^8.2.1",
    "@ngx-translate/core": "^11.0.1",
    "@ngx-translate/http-loader": "^4.0.0",
    "bootstrap": "^4.3.1",
    "classlist.js": "^1.1.20150312",
    "core-js": "^3.2.1",
    "hammerjs": "^2.0.8",
    "jwt-decode": "^2.2.0",
    "moment": "^2.24.0",
    "ngx-bootstrap": "^5.1.1",
    "pdfjs-dist": "^2.1.266",
    "rxjs": "^6.5.2",
    "ts-helpers": "^1.1.2",
    "tslib": "^1.10.0",
    "velocity-animate": "^1.5.2",
    "web-animations-js": "^2.3.2",
    "zone.js": "~0.9.1"
  },

在我的 app.module.ts 我有以下内容:

@NgModule({
    imports: [
        <<<snip>>> ModalTemplatesModule, 
        BrowserAnimationsModule, <<<snip>>>    ],

然后将 ModalTemplatesModule 定义为:

const modalTemplates: any[] = [
    ModalTimeoutComponent,
    ConfirmActionModalComponent,
    // etc...
];

@NgModule({
    imports: [
        SharedModule,
        ReactiveFormsModule,
        FormsModule,
        CommonComponentsModule,
        CommonNonComponentsModule
    ],
    declarations: modalTemplates,
    exports: modalTemplates,
    providers: [
        ConfigService,
        TransactionService
    ],
    entryComponents: modalTemplates
})
export class ModalTemplatesModule {}

我们确实为我们所有的模态创建了一个包装器,然后我们将特定的对话框内容放入其中。所以如果代码有问题,很可能在这个类中。但这很简单...... ModalWrapper 模板:

<div fxLayoutAlign="center center" fxLayout="column" fxFlexFill>
    <div class="modal-wrapper full-width" fxLayout="column" fxLayoutAlign="center center">
        <div *ngIf="showCloseButton" class="full-width" fxLayoutAlign="end end" fxLayout="column" fxFlex="none">
            <button id="closeButton" class="close-button-outside" (click)="close()" #closeButton>
            <span fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="0.5rem">
                <i class="icon-close-hover"></i>
                <span>{{"common.buttons.close" | translate}}</span>
            </span>
            </button>
        </div>
        <ng-content></ng-content>
    </div>
</div>

实际的标签位于通过 .

模态包装组件

@Component({
    selector : 'modal-wrapper',
    templateUrl: './modal-wrapper.component.html',
    styleUrls: ['./modal-wrapper.component.scss']
})
export class ModalWrapperComponent {
    @Output() onClose: EventEmitter<void> = new EventEmitter<void>();
    @Input() showCloseButton: boolean = true;

    constructor() {}

    close(): void {
        this.onClose.emit();
    }
}

在这一点上,我对它为什么消失以及如何修复它的想法已经不多了。希望其他人遇到此问题并认识到问题并知道如何解决它!

更新:如果我使用 Chrome 的 WAVE 辅助功能插件并“禁用所有 CSS”,对话框元素会出现在屏幕底部。所以这表明这是一个与风格相关的问题。还有其他方法可以“隐藏”某些东西吗?

4

1 回答 1

0

终于想通了。在我们的 Angular 5 代码中,我们有一个 material-overrides.scss 文件。在其中,有人添加了以下样式:

mat-dialog-container {
  opacity: 0;
  @include transform(translate3d(0, 3.5rem, 0));
  @include transition(opacity $animation-time, -webkit-transform $animation-time);
}

当我注释掉 opacity: 0 时,我的对话框开始出现。不知道为什么我们在 Angular 5(材料 2.0.0-beta)中有这个。当时似乎没有引起任何问题,但现在确实发生了。总之,问题解决了。

于 2019-10-04T19:57:11.147 回答