49 lines
2.3 KiB
C#
49 lines
2.3 KiB
C#
using Ryujinx.Ava.Common.Locale;
|
|
using Ryujinx.UI.Common;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ryujinx.Ava.UI.Helpers
|
|
{
|
|
internal class UserErrorDialog
|
|
{
|
|
private static string GetErrorCode(UserError error)
|
|
{
|
|
return $"RYU-{(uint)error:X4}";
|
|
}
|
|
|
|
private static string GetErrorTitle(UserError error) =>
|
|
error switch
|
|
{
|
|
UserError.NoKeys => LocaleManager.Instance[LocaleKeys.UserErrorNoKeys],
|
|
UserError.NoFirmware => LocaleManager.Instance[LocaleKeys.UserErrorNoFirmware],
|
|
UserError.FirmwareParsingFailed => LocaleManager.Instance[LocaleKeys.UserErrorFirmwareParsingFailed],
|
|
UserError.ApplicationNotFound => LocaleManager.Instance[LocaleKeys.UserErrorApplicationNotFound],
|
|
UserError.Unknown => LocaleManager.Instance[LocaleKeys.UserErrorUnknown],
|
|
_ => LocaleManager.Instance[LocaleKeys.UserErrorUndefined],
|
|
};
|
|
|
|
private static string GetErrorDescription(UserError error) =>
|
|
error switch
|
|
{
|
|
UserError.NoKeys => LocaleManager.Instance[LocaleKeys.UserErrorNoKeysDescription],
|
|
UserError.NoFirmware => LocaleManager.Instance[LocaleKeys.UserErrorNoFirmwareDescription],
|
|
UserError.FirmwareParsingFailed => LocaleManager.Instance[LocaleKeys.UserErrorFirmwareParsingFailedDescription],
|
|
UserError.ApplicationNotFound => LocaleManager.Instance[LocaleKeys.UserErrorApplicationNotFoundDescription],
|
|
UserError.Unknown => LocaleManager.Instance[LocaleKeys.UserErrorUnknownDescription],
|
|
_ => LocaleManager.Instance[LocaleKeys.UserErrorUndefinedDescription],
|
|
};
|
|
|
|
public static async Task ShowUserErrorDialog(UserError error)
|
|
{
|
|
string errorCode = GetErrorCode(error);
|
|
|
|
await ContentDialogHelper.CreateInfoDialog(
|
|
LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogUserErrorDialogMessage, errorCode, GetErrorTitle(error)),
|
|
GetErrorDescription(error),
|
|
string.Empty,
|
|
LocaleManager.Instance[LocaleKeys.InputDialogOk],
|
|
LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogUserErrorDialogTitle, errorCode));
|
|
}
|
|
}
|
|
}
|