作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试实现自定义确认对话框功能,该功能计划在整个应用程序范围内提供 - 跨所有组件。
为此,我使用了Angular Material
。
模态是一个单独的组件,我通过以下方式在另一个组件中解析它:
const dialogRef = this.confirmDialog.open(ConfirmDialogComponent, ... });
我面临的问题 - 使用这种方法我必须在每个组件中复制代码。违反了 DRY 原则
。
更多详情:
...
export class SearchComponent extends AppComponentBase {...
constructor(public confirmDialog: MatDialog, ...) { super(injector); }
confirm(title: string, message: string) {
var promise = new Promise((resolve, reject) => {
const dialogRef = this.confirmDialog.open(ConfirmDialogComponent, {
width: '250px',
data: { title: title, message: message }
});
dialogRef.afterClosed().subscribe(result => {
if (result) {
resolve();
} else {
reject();
}
});
});
return promise;
}
显然,我可以将共享代码移动到基础组件 - AppComponentBase
。尽管仍然会有一些重复的代码——例如构造函数相关代码。
但是,在软件设计方面是否有更好/更简洁的方法来重构我所拥有的?
谢谢。
最佳答案
一个工作示例 StackBlitz
将其放在根级别的/shared 或/services 文件夹中。
服务:
import { Observable } from 'rxjs';
import { MessagesComponent } from './messages.component';
import { MatDialogRef, MatDialog } from '@angular/material';
import { Injectable } from '@angular/core';
@Injectable()
export class MessagesService {
dialogRef: MatDialogRef<MessagesComponent>;
constructor(private dialog: MatDialog) { }
public openDialog(title: string, message: string): Observable<any> {
this.dialogRef = this.dialog.open(MessagesComponent);
this.dialogRef.componentInstance.title = title;
this.dialogRef.componentInstance.message = message;
return this.dialogRef.afterClosed();
// Nothing can live after afterClosed.
}
}
组件.ts
import { Component, OnInit } from '@angular/core';
import { MatDialogRef } from '@angular/material';
@Component({
selector: 'app-messages',
templateUrl: './messages.component.html'
})
export class MessagesComponent implements OnInit {
public title: string;
public message: string;
constructor(
private dialogRef: MatDialogRef<MessagesComponent>,
) { }
private closeWithTimer() {
setTimeout (() => {
this.dialogRef.close();
}, 2000);
}
ngOnInit() {
this.closeWithTimer();
}
}
html:
<h1 mat-dialog-title>{{title}}!</h1>
<div mat-dialog-content>{{message}}</div>
从您的 Universe 中的某个组件调用:
constructor(
private httpService: HttpService,
public dialogRef: MatDialogRef<AddMemberComponent>, // Used by the html component.
private messagesService: MessagesService,
public formErrorsService: FormErrorsService
) { }
this.httpService.addRecord(this.membersUrl, enteredData)
.subscribe(
res => {
this.success();
},
(err: HttpErrorResponse) => {
console.log(err.error);
console.log(err.message);
this.handleError(err);
}
);
在该组件的 ts 底部:
private success() {
this.messagesService.openDialog('Success', 'Database updated as you wished!');
}
private handleError(error) {
this.messagesService.openDialog('Error addm1', 'Please check your Internet connection.');
}
关于angular - 跨所有组件共享模态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51200285/
我来自 Asp.Net 世界,试图理解 Angular State 的含义。 什么是 Angular 状态?它类似于Asp.Net中的ascx组件吗?是子页面吗?它类似于工作流程状态吗? 我听到很多人
我一直在寻找 3 态拨动开关,但运气不佳。 基本上我需要一个具有以下状态的开关: |开 |不适用 |关 | slider 默认从中间开始,一旦用户向左或向右滑动,就无法回到N/A(未回答)状态。 有人
我是一名优秀的程序员,十分优秀!