本文整理汇总了TypeScript中common/actions.actions.sendFeedback方法的典型用法代码示例。如果您正苦于以下问题:TypeScript actions.sendFeedback方法的具体用法?TypeScript actions.sendFeedback怎么用?TypeScript actions.sendFeedback使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common/actions.actions
的用法示例。
在下文中一共展示了actions.sendFeedback方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
onError: async (e: Error, log) => {
let title = game ? game.title : "<missing game>";
const re = asRequestError(e);
if (re) {
switch (re.rpcError.code) {
case Code.OperationAborted:
// just ignore it
return;
case Code.InstallFolderDisappeared:
// oh we can do something about that.
store.dispatch(
actions.openModal(
modals.naked.make({
wind: "root",
title: ["game.install.could_not_launch", { title }],
coverUrl: game.coverUrl,
stillCoverUrl: game.stillCoverUrl,
message: `The folder where **${title}** was installed doesn't exist anymore.`,
detail: `That means we can't open it.`,
bigButtons: [
{
icon: "delete",
label: "Remove install entry",
tags: [{ label: "Recommended" }],
action: actions.queueCaveUninstall({ caveId: cave.id }),
},
{
icon: "folder-open",
label: "Open parent folder",
className: "secondary",
tags: [{ label: "Seeing is believing." }],
action: actions.exploreCave({ caveId: cave.id }),
},
],
buttons: ["nevermind"],
widgetParams: null,
})
)
);
return;
}
}
const res = await promisedModal(
store,
modals.showError.make({
wind: "root",
title: ["game.install.could_not_launch", { title }],
coverUrl: game.coverUrl,
stillCoverUrl: game.stillCoverUrl,
message: t(store.getState().i18n, formatError(e)),
detail: isInternalError(e)
? ["game.install.could_not_launch.detail"]
: null,
widgetParams: {
rawError: e,
log,
game,
forceDetails: true,
showSendReport: true,
},
buttons: [
{
label: ["prompt.action.ok"],
action: "widgetResponse",
},
{
label: showInExplorerString(),
className: "secondary",
action: actions.exploreCave({ caveId: cave.id }),
},
"cancel",
],
})
);
if (res && res.sendReport) {
store.dispatch(
actions.sendFeedback({
log: mergeLogAndError(log, e),
})
);
}
},
示例2: showInstallErrorModal
export async function showInstallErrorModal(params: InstallErrorParams) {
let buttons: ModalButtonSpec[] = [];
let detail: LocalizedString;
let shouldRetry = true;
let forceDetails = false;
const { store, e, log, retryAction, stopAction, game } = params;
const { i18n } = store.getState();
const re = asRequestError(e);
if (re) {
switch (re.rpcError.code) {
case messages.Code.UnsupportedPackaging: {
const learnMore = t(i18n, ["docs.how_to_help"]);
detail = `[${learnMore}](https://itch.io/docs/itch/integrating/quickstart.html)`;
shouldRetry = false;
forceDetails = true;
break;
}
}
}
if (shouldRetry) {
buttons = [
...buttons,
{
label: ["game.install.try_again"],
icon: "repeat",
action: retryAction(),
},
];
}
buttons = [
...buttons,
{
label: ["grid.item.discard_download"],
icon: "delete",
action: "widgetResponse",
},
"cancel",
];
const allowReport = isInternalError(e);
const typedModal = modals.showError.make({
wind: "root",
title: ["prompt.install_error.title"],
message: t(i18n, formatError(e)),
detail,
widgetParams: {
rawError: e,
log,
forceDetails,
game,
showSendReport: allowReport,
},
buttons,
});
const res = await promisedModal(store, typedModal);
if (res) {
store.dispatch(stopAction());
if (allowReport && res.sendReport) {
store.dispatch(
actions.sendFeedback({
log: mergeLogAndError(log, e),
})
);
}
}
}
示例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",
},
];
}