本文整理汇总了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
}
});
示例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;
}
}
示例3: rendererWindow
combo.bindGlobal(["alt+left"], () => {
store.dispatch(actions.commandGoBack({ window: rendererWindow() }));
});