本文整理汇总了TypeScript中common/modals.modals.showError.make方法的典型用法代码示例。如果您正苦于以下问题:TypeScript modals.showError.make方法的具体用法?TypeScript modals.showError.make怎么用?TypeScript modals.showError.make使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类common/modals.modals.showError
的用法示例。
在下文中一共展示了modals.showError.make方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
onError: async (e, log) => {
const response = await promisedModal(
store,
modals.showError.make({
wind: "root",
title: ["prompt.uninstall_error.title"],
message: ["prompt.uninstall_error.message"],
buttons: [
{
label: ["prompt.action.ok"],
action: actions.modalResponse({}),
},
"cancel",
],
widgetParams: { rawError: e, log },
})
);
if (!response) {
// modal was closed
return;
}
logger.info(`Should remove entry anyway, performing hard uninstall`);
try {
await mcall(messages.UninstallPerform, { caveId, hard: true });
store.dispatch(actions.uninstallEnded({}));
} catch (e) {
logger.error(`Well, even hard uninstall didn't work: ${e.stack}`);
}
},
示例2: async
convo.on(messages.PrereqsFailed, async ({ errorStack, error }) => {
closePrereqsModal();
const { title } = game;
let errorMessage = error;
errorMessage = errorMessage.split("\n")[0];
let log = logger.getLog();
const res = await promisedModal(
store,
modals.showError.make({
wind: "root",
title: ["game.install.could_not_launch", { title }],
message: [
"game.install.could_not_launch.message",
{ title, errorMessage },
],
detail: ["game.install.could_not_launch.detail"],
widgetParams: {
game,
rawError: { stack: errorStack },
log,
},
buttons: [
{
label: ["prompt.action.continue"],
action: actions.modalResponse({
continue: true,
}),
},
"cancel",
],
})
);
if (res) {
return { continue: true };
}
return { continue: false };
});
示例3: async
watcher.on(actions.removeInstallLocation, async (store, action) => {
const { id } = action.payload;
const { installLocations } = await mcall(messages.InstallLocationsList, {});
if (installLocations.length <= 1) {
// refuse to remove the last one
return;
}
const { installLocation } = await mcall(messages.InstallLocationsGetByID, {
id,
});
if (!installLocation) {
return;
}
{
const res = await promisedModal(
store,
modals.naked.make({
wind: "root",
title: ["prompt.install_location_remove.title"],
message: ["prompt.install_location_remove.message"],
detail: [
"prompt.install_location_remove.detail",
{
location: installLocation.path,
},
],
buttons: [
{
label: ["prompt.action.confirm_removal"],
action: actions.modalResponse({}),
},
"cancel",
],
widgetParams: null,
})
);
if (!res) {
// modal was closed
return;
}
const logger = recordingLogger(mainLogger);
try {
await mcall(messages.InstallLocationsRemove, { id }, convo => {
hookLogging(convo, logger);
});
store.dispatch(actions.installLocationsChanged({}));
} catch (e) {
store.dispatch(
actions.openModal(
modals.showError.make({
wind: "root",
title: _("prompt.show_error.generic_message"),
message: t(store.getState().i18n, formatError(e)),
widgetParams: {
rawError: e,
log: logger.getLog(),
forceDetails: true,
},
buttons: ["ok"],
})
)
);
}
}
});
示例4: 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),
})
);
}
}
}
示例5: 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),
})
);
}
},