角度-跨所有组件共享模式

时间:2018-07-05 21:44:19

标签: angular singleton refactoring angular-material angular-services

我正在尝试实现自定义的确认对话框功能,该功能计划在整个应用程序中提供-适用于所有组件。

为此,我使用Angular Material

模式是一个单独的组件,我可以通过以下方式在另一个组件中进行解析:

const dialogRef = this.confirmDialog.open(ConfirmDialogComponent, ... });

我面临的问题-使用这种方法,我必须在每个组件中复制代码DRY principle被违反了。

有关更多详细信息:

...
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。尽管仍然会有一些重复的代码-例如与构造函数相关的代码。

但是,在软件设计方面,有没有更好/更简洁的方法重构我拥有的东西?

谢谢。

1 个答案:

答案 0 :(得分:2)

例如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.
  }
}

component.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.');
  }