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


TypeScript actions.closeAllTabs方法代码示例

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


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

示例1: convertMenuAction

function convertMenuAction(
  window: string,
  payload: IMenuItem,
  runtime: IRuntime
) {
  const { role, localizedLabel } = payload;

  switch (role) {
    case "about":
      return actions.openInExternalBrowser({ url: urls.appHomepage });
    default: // muffin
  }

  const labelString = localizedLabel ? localizedLabel[0] : null;

  switch (labelString) {
    case "sidebar.new_tab":
      return actions.newTab({ window });
    case "menu.file.close_tab":
      return runtime.platform === "osx"
        ? actions.closeTabOrAuxWindow({ window })
        : actions.closeCurrentTab({ window });
    case "menu.file.close_all_tabs":
      return actions.closeAllTabs({ window });
    case "menu.file.close_window":
      return actions.hideWindow({ window });
    case "menu.file.quit":
      return actions.quitWhenMain({ window });
    case "menu.file.preferences":
      return actions.navigate({ window, url: "itch://preferences" });
    case "menu.view.downloads":
      return actions.navigate({ window, url: "itch://downloads" });
    case "menu.account.change_user":
      return actions.changeUser({});
    case "menu.help.view_terms":
      return actions.openInExternalBrowser({ url: urls.termsOfService });
    case "menu.help.view_license":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/blob/master/LICENSE`,
      });
    case "menu.help.report_issue":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/issues/new`,
      });
    case "menu.help.search_issue":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/search?type=Issues`,
      });
    case "menu.help.release_notes":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/releases`,
      });
    default:
      return null;
  }
}
开发者ID:HorrerGames,项目名称:itch,代码行数:56,代码来源:flesh-out-template.ts

示例2: async

  watcher.on(actions.closeTab, async (store, action) => {
    const { wind, tab } = action.payload;
    const rs = store.getState();
    if (!hasMultipleTabs(rs, wind)) {
      return;
    }

    let andFocus: string = null;

    const nav = rs.winds[wind].navigation;
    if (nav.openTabs.length === 1) {
      logger.debug(`Closing last tab, replacing it with a new-tab`);
      store.dispatch(actions.closeAllTabs({ wind }));
      return;
    }

    if (nav.tab === tab) {
      let tabIndex = nav.openTabs.indexOf(tab);
      if (tabIndex === -1) {
        logger.error(
          `${tab} is not in the set of open tabs ${JSON.stringify(
            nav.openTabs
          )}`
        );
        return;
      }

      if (tabIndex + 1 < nav.openTabs.length) {
        andFocus = nav.openTabs[tabIndex + 1];
      } else if (tabIndex - 1 >= 0) {
        andFocus = nav.openTabs[tabIndex - 1];
      } else {
        logger.error(
          `Can't figure out which other tab to focus from ${JSON.stringify(
            nav.openTabs
          )} after closing ${tab}`
        );
        return;
      }
    }

    store.dispatch(
      actions.tabsClosed({
        wind,
        tabs: [tab],
        andFocus,
      })
    );
  });
开发者ID:itchio,项目名称:itch,代码行数:49,代码来源:navigation.ts

示例3: convertMenuAction

function convertMenuAction(wind: string, payload: MenuItem, runtime: Runtime) {
  const { role, localizedLabel } = payload;

  switch (role) {
    case "about":
      return actions.openInExternalBrowser({ url: urls.appHomepage });
    default: // muffin
  }

  const labelString = localizedLabel ? localizedLabel[0] : null;

  switch (labelString) {
    case "menu.file.show_next_tab":
      return actions.showNextTab({ wind });
    case "menu.file.show_previous_tab":
      return actions.showPreviousTab({ wind });
    case "menu.file.open_dev_tools":
      return actions.openDevTools({ wind });
    case "menu.file.focus_search":
      return actions.focusSearch({ wind });
    case "menu.file.focus_in_page_search":
      return actions.focusInPageSearch({ wind });
    case "menu.command.reload":
      return actions.commandReload({ wind });
    case "menu.command.main":
      return actions.commandMain({ wind });
    case "menu.command.location":
      return actions.commandLocation({ wind });
    case "menu.command.go_back":
      return actions.commandGoBack({ wind });
    case "menu.command.go_forward":
      return actions.commandGoForward({ wind });
    case "menu.file.focus_tab_1":
      return actions.focusNthTab({ wind, index: 1 });
    case "menu.file.focus_tab_2":
      return actions.focusNthTab({ wind, index: 2 });
    case "menu.file.focus_tab_3":
      return actions.focusNthTab({ wind, index: 3 });
    case "menu.file.focus_tab_4":
      return actions.focusNthTab({ wind, index: 4 });
    case "menu.file.focus_tab_5":
      return actions.focusNthTab({ wind, index: 5 });
    case "menu.file.focus_tab_6":
      return actions.focusNthTab({ wind, index: 6 });
    case "menu.file.focus_tab_7":
      return actions.focusNthTab({ wind, index: 7 });
    case "menu.file.focus_tab_8":
      return actions.focusNthTab({ wind, index: 8 });
    case "menu.file.focus_tab_9":
      return actions.focusNthTab({ wind, index: 9 });

    case "sidebar.new_tab":
      return actions.newTab({ wind });
    case "menu.file.close_tab":
      return runtime.platform === "osx"
        ? actions.closeTabOrAuxWindow({ wind })
        : actions.closeCurrentTab({ wind });
    case "menu.file.close_all_tabs":
      return actions.closeAllTabs({ wind });
    case "menu.file.close_window":
      return actions.hideWind({ wind });
    case "menu.file.quit":
      return actions.quitWhenMain({ wind });
    case "menu.file.preferences":
      return actions.navigate({ wind, url: "itch://preferences" });
    case "menu.view.downloads":
      return actions.navigate({ wind, url: "itch://downloads" });
    case "menu.account.change_user":
      return actions.changeUser({});
    case "menu.help.view_terms":
      return actions.openInExternalBrowser({ url: urls.termsOfService });
    case "menu.help.view_license":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/blob/master/LICENSE`,
      });
    case "menu.help.report_issue":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/issues/new`,
      });
    case "menu.help.search_issue":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/search?type=Issues`,
      });
    case "menu.help.release_notes":
      return actions.openInExternalBrowser({
        url: `${urls.itchRepo}/releases`,
      });
    default:
      return null;
  }
}
开发者ID:itchio,项目名称:itch,代码行数:91,代码来源:flesh-out-template.ts


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