本文整理匯總了TypeScript中common/actions.actions.quitWhenMain方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript actions.quitWhenMain方法的具體用法?TypeScript actions.quitWhenMain怎麽用?TypeScript actions.quitWhenMain使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類common/actions.actions
的用法示例。
在下文中一共展示了actions.quitWhenMain方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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;
}
}
示例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;
}
}