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


TypeScript actions.commandGoBack方法代碼示例

本文整理匯總了TypeScript中common/actions.actions.commandGoBack方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript actions.commandGoBack方法的具體用法?TypeScript actions.commandGoBack怎麽用?TypeScript actions.commandGoBack使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在common/actions.actions的用法示例。


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

示例1: switch

 nativeWindow.on("app-command", (e, cmd) => {
   switch (cmd as AppCommand) {
     case "browser-backward":
       store.dispatch(
         actions.commandGoBack({
           window,
         })
       );
       break;
     case "browser-forward":
       store.dispatch(
         actions.commandGoForward({
           window,
         })
       );
       break;
     default:
     // ignore unknown app commands
   }
 });
開發者ID:HorrerGames,項目名稱:itch,代碼行數:20,代碼來源:main-window.ts

示例2: 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

示例3: rendererWindow

 combo.bindGlobal(["alt+left"], () => {
   store.dispatch(actions.commandGoBack({ window: rendererWindow() }));
 });
開發者ID:HorrerGames,項目名稱:itch,代碼行數:3,代碼來源:index.ts


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