當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript material.MdDialogRef類代碼示例

本文整理匯總了TypeScript中@angular/material.MdDialogRef的典型用法代碼示例。如果您正苦於以下問題:TypeScript MdDialogRef類的具體用法?TypeScript MdDialogRef怎麽用?TypeScript MdDialogRef使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了MdDialogRef類的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: codepeerRunInfo

    public codepeerRunInfo(): Observable<boolean> {
        let dialogRef: MdDialogRef<CodepeerRunInfoDialog>;

        dialogRef = this.dialog.open(CodepeerRunInfoDialog);

        return dialogRef.afterClosed();
    }
開發者ID:AdaCore,項目名稱:gnatdashboard,代碼行數:7,代碼來源:codepeer-dialog.service.ts

示例2: confirm

    public confirm(
      title: string,
      message: string,
      btnOkText: string = 'Продовжити',
      btnCancelText: string = 'Відмінити',
      viewContainerRef?: ViewContainerRef): Observable<boolean> {

        // Docs: https://material.angular.io/components/component/dialog
        // http://www.madhur.co.in/blog/2017/03/26/angular-confirmation-dialog.html

        let dialogRef: MdDialogRef<DialogComponent>;
        const dialogConfig = new MdDialogConfig();
        // FIXME dialogConfig.viewContainerRef = viewContainerRef;

        dialogRef = this.dialog.open(DialogComponent, dialogConfig);

        dialogRef.componentInstance.title = title;
        dialogRef.componentInstance.message = message;
        dialogRef.componentInstance.btnOkText = btnOkText;
        dialogRef.componentInstance.btnCancelText = btnCancelText;

        const result = dialogRef.afterClosed();

        return result;
    }
開發者ID:rostag,項目名稱:bigpolicy_eu,代碼行數:25,代碼來源:dialog.service.ts

示例3: reviewHistory

    public reviewHistory(): Observable<boolean> {
        let dialogRef: MdDialogRef<ReviewHistoryDialog>;

        dialogRef = this.dialog.open(ReviewHistoryDialog);

        return dialogRef.afterClosed();
    }
開發者ID:AdaCore,項目名稱:gnatdashboard,代碼行數:7,代碼來源:dialog.service.ts

示例4: confirm

    public confirm(title: string, message: string): Observable<boolean> {

        let dialogRef: MdDialogRef<SimpleDialogComponent>;

        dialogRef = this.dialog.open(SimpleDialogComponent);
        dialogRef.componentInstance.title = title;
        dialogRef.componentInstance.message = message;

        return dialogRef.afterClosed();
    }
開發者ID:ultrarunner,項目名稱:ultrarunner.github.io,代碼行數:10,代碼來源:dialog.service.ts

示例5: confirm

    confirm(viewContainerRef: ViewContainerRef, options?: Object) {
        let dialogRef: MdDialogRef<DialogConfirmComponent>;

        let config = new MdDialogConfig();
        config.viewContainerRef = viewContainerRef;

        dialogRef = this.dialog.open(DialogConfirmComponent, config);

        Object.assign(dialogRef.componentInstance, options);

        return dialogRef.afterClosed();
    }
開發者ID:garage-it,項目名稱:SmartHouse-frontend,代碼行數:12,代碼來源:dialog.service.ts

示例6: deleteProduct

  deleteProduct(product: any) {
    let dialogRef = this.dialog.open(DeleteDialogComponent);
    dialogRef.afterClosed().subscribe(result => {
      this.selectedOption = result;
      if (this.selectedOption === 'delete') {
        this.db.object('/products/' + product.key).remove();
        if (product.category) {
          this.db.object('/categories/' + product.payload.val().category + '/products/' + product.key).remove();
        }

        // if (product.thumbnail) {
        //   let storage = firebase.storage();
        //   let imageRef = storage.refFromURL(product.thumbnail);
        //   let me = this;
        //   imageRef.delete().then(function() {
        //     let snackBarRef = me.snackBar.open('Product deleted', 'OK!', {
        //       duration: 3000
        //     });
        //   }).catch(function(error) {
        //     console.log('error', error);
        //   });
        // } else {
          let snackBarRef = this.snackBar.open('Product deleted', 'OK!', {
            duration: 3000
          });
        // }
      }
    });
  }
開發者ID:mogeta,項目名稱:firebase-cms,代碼行數:29,代碼來源:admin-products.component.ts

示例7: closeModal

 closeModal() {
   const data = {
     ambulance: {},
     valid: false
   };
   this.dialogRef.close(data);
 }
開發者ID:manuelao-s4ds,項目名稱:Emergencies-ui,代碼行數:7,代碼來源:modal-edit-ambulances.component.ts

示例8: update

 update() {
   const data = {
     ambulance: {},
     error: {},
     valid: false
   };
   debugger
   if (this.formAmbulance.valid) {
     const ambulance = {
       _id: this.data._id, 
       car: this.formAmbulance.get('car').value,
       car_plate: this.formAmbulance.get('car_plate').value,
       type_ambulance: this.formAmbulance.get('type_ambulance').value,
       available: this.formAmbulance.get('available').value
     };
     this.formAmbulance.reset({
       car: '',
       car_plate: '',
       type_ambulance: '',
       available: ''
     });
     data.ambulance = ambulance;
     data.valid = true;
     this.dialogRef.close(data);
   }else {
     this.errorMessage = 'Los campos marcados con * son obligatorios';
   }
 }
開發者ID:manuelao-s4ds,項目名稱:Emergencies-ui,代碼行數:28,代碼來源:modal-edit-ambulances.component.ts

示例9: update

 update() {
   const data = {
     emergency: {},
     error: {},
     valid: false
   };
   if (this.formEmergency.valid) {
     const emergency = {
       _id: this.data._id,
       date: this.formEmergency.get('date').value,
       type_emergency: this.formEmergency.get('category').value,
       driver: this.driverSelected,
       ambulance: this.ambulanceSelected,
       paramedic: this.paramedicsSelected,
       patient: this.patients,
       location: this.data.location
     };
     this.formEmergency.reset({
       driver: '',
       ambulance: '',
       paramedics: ''
     });
     data.emergency = emergency;
     data.valid = true;
     this.dialogRef.close(data);
   }else {
     this.errorMessage = 'Los campos marcados con * son obligatorios';
   }
 }
開發者ID:manuelao-s4ds,項目名稱:Emergencies-ui,代碼行數:29,代碼來源:modal-edit-emergencies.component.ts

示例10: closeModal

 closeModal() {
   const data = {
     paramedic: {},
     valid: false
   };
   this.dialogRef.close(data);
 }
開發者ID:manuelao-s4ds,項目名稱:Emergencies-ui,代碼行數:7,代碼來源:modal-edit-paramedics.component.ts


注:本文中的@angular/material.MdDialogRef類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。