当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript MaybePromise.resolve方法代码示例

本文整理汇总了TypeScript中lib/classes/maybe-promise.MaybePromise.resolve方法的典型用法代码示例。如果您正苦于以下问题:TypeScript MaybePromise.resolve方法的具体用法?TypeScript MaybePromise.resolve怎么用?TypeScript MaybePromise.resolve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在lib/classes/maybe-promise.MaybePromise的用法示例。


在下文中一共展示了MaybePromise.resolve方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: showNotification

  private showNotification(request: RedirectRequest): MaybePromise<void> {
    this.debugLog.log("going to show a redirection notification");
    const browser = this.requestService.getBrowser(request);
    if (browser === null) {
      this.debugLog.log("showNotification: browser n/a");
      return MaybePromise.reject<void>(undefined);
    }

    const window = browser.ownerGlobal;

    const p = tryMultipleTimes(() => {
      const windowModule = this.windowModuleMap.get(window);
      if (!windowModule) {
        this.debugLog.log("showNotification: window module n/a");
        return false;
      }

      // Parameter "replaceIfPossible" is set to true,
      // because the "origin" of
      // redirections going through "nsIChannelEventSink" is just an
      // intermediate URI of a redirection chain, not a real site.
      return windowModule.r21n.showNotification(
          browser,
          {
            origin: request.originURI,
            target: request.destURIWithRef,
          },
          0,
          true,
      );
    });
    return MaybePromise.resolve(p);
  }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:33,代码来源:redirection-service.ts

示例2: startupSelf

 protected startupSelf() {
   this.addRulePopup = this.windowService.$id(
       this.window,
       addRuleMenuName,
   ) as any;
   return MaybePromise.resolve(undefined);
 }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:7,代码来源:redirection-notifications.ts

示例3: startupSelf

 public startupSelf() {
   const manifestUrl = this.chromeFileService.
       getChromeUrl("bootstrap-data/manifest.json");
   const p = this.chromeFileService.parseJSON(manifestUrl).then((data) => {
     this.data = data;
   });
   return MaybePromise.resolve(p);
 }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:8,代码来源:manifest.ts

示例4: startupSelf

  protected startupSelf() {
    if (this.cachedSettings.get("browserSettings.disableNetworkPrediction")) {
      this.networkPrivacyApi.networkPredictionEnabled.set({value: false}).catch(
          this.log.onError("set networkPredictionEnabled false"),
      );
    } else {
      this.networkPrivacyApi.networkPredictionEnabled.clear({}).catch(
          this.log.onError("clear networkPredictionEnabled setting"),
      );
    }

    return MaybePromise.resolve(undefined);
  }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:13,代码来源:browser-settings.module.ts

示例5: startupSelf

  protected startupSelf() {
    // create a scope variable
    (this.window as any).rpcontinued = {
      classicmenu: this.classicmenu,
      menu: this.menu,
      overlay: this.overlay,
    };

    this.xulTreeLists_ = this.xulService.getXulTreeLists(this.overlay);

    // add all XUL elements
    this.xulService.addTreeElementsToWindow(
        this.window,
        this.xulTreeLists.mainTree,
    );

    return MaybePromise.resolve(undefined);
  }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:18,代码来源:xul-trees.ts

示例6: genMaybePromise

function genMaybePromise({isFulfilled, isPromiseWrapper, value = {}, usingAllFn = false}): MaybePromise<any> {
  const mpArg = isPromiseWrapper ? genPromise({isFulfilled, value}) : (value as any);
  const mp = isPromiseWrapper || isFulfilled ?
      MaybePromise.resolve(mpArg) : MaybePromise.reject(mpArg);
  return usingAllFn ? MaybePromise.all([mp]) : mp;
}
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:6,代码来源:test-maybe-promise.ts

示例7: startupSelf

 protected startupSelf() {
   return MaybePromise.resolve(this.startupSelfAsync());
 }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:3,代码来源:settings-migration.ts

示例8: startupSelf

 protected startupSelf() {
   this.addToolbarButtonToAustralis();
   return MaybePromise.resolve(undefined);
 }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:4,代码来源:toolbarbutton.australis.ts

示例9: startupSelf

  protected startupSelf() {
    const promises: IInfoPromises = {};

    const checkPromise = (aPropName: keyof IInfoPromises) => {
      (promises[aPropName] as Promise<any>).catch((e) => {
        this.log.error(`Error initializing "${aPropName}":`, e);
      });
    };

    const infos: IOptionalInfos = {};

    // -------------------------------------------------------------------------
    // RP version info
    // -------------------------------------------------------------------------

    promises.lastRPVersion = Promise.resolve(
        this.cachedSettings.get("lastVersion") as IInfos["lastRPVersion"],
    );
    checkPromise("lastRPVersion");

    promises.isRPUpgrade =
        promises.lastRPVersion.
        then((lastRPVersion) => {
          // Compare with version 1.0.0a8 since that version introduced
          // the "welcome window".
          infos.isRPUpgrade = !!lastRPVersion &&
              this.versionComparator.compare(lastRPVersion, "1.0.0a8") <= 0;
          return infos.isRPUpgrade;
        });
    checkPromise("isRPUpgrade");

    promises.curRPVersion =
        this.managementApi.getSelf().
        then((addon) => {
          infos.curRPVersion = addon.version;
          return infos.curRPVersion;
        });
    checkPromise("curRPVersion");

    // -------------------------------------------------------------------------
    // app version info
    // -------------------------------------------------------------------------

    promises.lastAppVersion = Promise.resolve(
        this.cachedSettings.get("lastAppVersion") as IInfos["lastAppVersion"],
    );
    checkPromise("lastAppVersion");

    promises.curAppVersion =
        this.runtimeApi.getBrowserInfo().
        then(({version}) => {
          infos.curAppVersion = version;
          return version;
        });
    checkPromise("curAppVersion");

    // -------------------------------------------------------------------------
    // store last*Version
    // -------------------------------------------------------------------------

    const p = Promise.all(
        objectValues(promises as IObject<Promise<any>>),
    ).then(() => {
      this.infos = infos as IInfos;
      const {curAppVersion, curRPVersion} = infos;
      return this.cachedSettings.set({
        lastAppVersion: curAppVersion,
        lastVersion: curRPVersion,
      });
    }).catch((e) => {
      this.log.error("Failed to initialize VersionInfoService", e);
    }) as Promise<void>;

    return MaybePromise.resolve(p);
  }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:75,代码来源:version-info-service.ts

示例10: startupSelf

 protected startupSelf() {
   this.topics.forEach((topic) => {
     this.observerService.addObserver(this, topic, false);
   });
   return MaybePromise.resolve(undefined);
 }
开发者ID:RequestPolicyContinued,项目名称:requestpolicy,代码行数:6,代码来源:xpcom-observer-module.ts


注:本文中的lib/classes/maybe-promise.MaybePromise.resolve方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。