本文整理汇总了TypeScript中common/actions.actions.changeUser方法的典型用法代码示例。如果您正苦于以下问题:TypeScript actions.changeUser方法的具体用法?TypeScript actions.changeUser怎么用?TypeScript actions.changeUser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common/actions.actions
的用法示例。
在下文中一共展示了actions.changeUser方法的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;
}
}
示例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: userMenu
export function userMenu(store: Store): MenuTemplate {
return [
{
icon: "rocket",
localizedLabel: ["sidebar.view_creator_profile"],
action: actions.viewCreatorProfile({}),
},
{
icon: "fire",
localizedLabel: ["sidebar.view_community_profile"],
action: actions.viewCommunityProfile({}),
},
{
type: "separator",
},
{
icon: "download",
localizedLabel: ["sidebar.downloads"],
id: "user-menu-downloads",
action: actions.navigate({
wind: "root",
url: "itch://downloads",
}),
accelerator: "CmdOrCtrl+J",
},
{
icon: "cog",
localizedLabel: ["sidebar.preferences"],
id: "user-menu-preferences",
action: actions.navigate({
wind: "root",
url: "itch://preferences",
}),
accelerator: "CmdOrCtrl+,",
},
{
type: "separator",
},
{
icon: "bug",
localizedLabel: ["menu.help.report_issue"],
action: actions.sendFeedback({}),
},
{
icon: "lifebuoy",
localizedLabel: ["menu.help.help"],
action: actions.navigate({ wind: "root", url: urls.manual }),
},
{
type: "separator",
},
{
icon: "shuffle",
localizedLabel: ["menu.account.change_user"],
id: "user-menu-change-user",
action: actions.changeUser({}),
},
{
icon: "exit",
localizedLabel: ["menu.file.quit"],
action: actions.quit({}),
accelerator: "CmdOrCtrl+Q",
},
];
}