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


TypeScript toastr.info函數代碼示例

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


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

示例1: switch

      this.toastsPromise.then((toasts: IToast[]) => {
        for (let t of toasts){
          //Setup callbacks to track dismisal status
          let overrides: ToastrOptions = {
            onclick: () => {
              ToastService.acknowledgeToast(t.Id, this.context.pageContext.web.id);
            },
            onCloseClick: () => {
              ToastService.acknowledgeToast(t.Id, this.context.pageContext.web.id);
            }
          };

          switch (t.Severity){
            case 'Warning':
              toastr.warning(t.Message, t.Title, overrides);
              break;
            case 'Error':
              toastr.error(t.Message, t.Title, overrides);
              break;
            case 'Success':
              toastr.success(t.Message, t.Title, overrides);
              break;
            default:
              toastr.info(t.Message, t.Title, overrides);
              break;
          }
        }
      }).catch((error: any): void => {
開發者ID:AdrianDiaz81,項目名稱:sp-dev-fx-extensions,代碼行數:28,代碼來源:SpfxToastrApplicationCustomizer.ts

示例2:

 listenerFunction = event => {
     if (event.id === "saving") {
         toastr.info(localizedNotification, "", {
             positionClass: "toast-top-left",
             preventDuplicates: true,
             showDuration: 300,
             hideDuration: 300,
             timeOut: 1000,
             extendedTimeOut: 1000,
             showEasing: "swing",
             showMethod: "fadeIn",
             hideEasing: "linear",
             hideMethod: "fadeOut",
             messageClass: "toast-for-saved-message",
             iconClass: ""
         });
     }
 };
開發者ID:BloomBooks,項目名稱:BloomDesktop,代碼行數:18,代碼來源:pageThumbnailList.ts

示例3: showInfoMessage

    /**
	* Show info message using toaster library
	*/
    showInfoMessage(message: string, title: string): void {
        toastr.info(message, title);
    }
開發者ID:atul221282,項目名稱:AureliaTSApp,代碼行數:6,代碼來源:message.ts

示例4: info

 info(message: string, title?: string) {
   return toastr.info(message, title);
 }
開發者ID:IMinchevQA,項目名稱:Angular2_SPA-CarSystem,代碼行數:3,代碼來源:toastr.service.ts

示例5: info

 this.socket.on("UPDATE_REDUX", action => {
     info("Realtime update coming in!");
     this.store.dispatch(action)
 });
開發者ID:brechtbilliet,項目名稱:winecellar,代碼行數:4,代碼來源:realtime.ts

示例6: next

 return next().then((a: any) => { console.log(a.status); toastr.info(a.status); return a;});
開發者ID:rajajhansi,項目名稱:communityapp-aurelia-tswebpack,代碼行數:1,代碼來源:shell.ts


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