mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
86 lines
2.6 KiB
C#
86 lines
2.6 KiB
C#
using System.Media;
|
|
using System.Windows;
|
|
using System.Windows.Interop;
|
|
|
|
#if !DEBUG_ROSLYN_PUBLISH
|
|
using Windows.Win32;
|
|
using Windows.Win32.Foundation;
|
|
#endif
|
|
|
|
namespace Bloxstrap.UI.Elements.Dialogs
|
|
{
|
|
// hmm... do i use MVVM for this?
|
|
// this is entirely static, so i think im fine without it, and this way is just so much more efficient
|
|
|
|
/// <summary>
|
|
/// Interaction logic for ExceptionDialog.xaml
|
|
/// </summary>
|
|
public partial class ExceptionDialog
|
|
{
|
|
public ExceptionDialog(Exception exception)
|
|
{
|
|
Exception? innerException = exception.InnerException;
|
|
|
|
InitializeComponent();
|
|
|
|
Title = RootTitleBar.Title = $"{App.ProjectName} Exception";
|
|
|
|
AddException(exception);
|
|
|
|
if (!App.Logger.Initialized)
|
|
LocateLogFileButton.Content = "Copy log contents";
|
|
|
|
LocateLogFileButton.Click += delegate
|
|
{
|
|
if (App.Logger.Initialized)
|
|
Process.Start("explorer.exe", $"/select,\"{App.Logger.FileLocation}\"");
|
|
else
|
|
Clipboard.SetDataObject(String.Join("\r\n", App.Logger.Backlog));
|
|
};
|
|
|
|
ReportOptions.DropDownClosed += (sender, e) =>
|
|
{
|
|
string? selectionName = ReportOptions.SelectedItem.ToString();
|
|
|
|
ReportOptions.SelectedIndex = 0;
|
|
|
|
if (selectionName is null)
|
|
return;
|
|
|
|
if (selectionName.EndsWith("GitHub"))
|
|
Utilities.ShellExecute($"https://github.com/{App.ProjectRepository}/issues");
|
|
else if (selectionName.EndsWith("Discord"))
|
|
Utilities.ShellExecute("https://discord.gg/nKjV3mGq6R");
|
|
};
|
|
|
|
CloseButton.Click += delegate
|
|
{
|
|
Close();
|
|
};
|
|
|
|
SystemSounds.Hand.Play();
|
|
|
|
Loaded += delegate
|
|
{
|
|
IntPtr hWnd = new WindowInteropHelper(this).Handle;
|
|
#if !DEBUG_ROSLYN_PUBLISH
|
|
PInvoke.FlashWindow((HWND)hWnd, true);
|
|
#endif
|
|
};
|
|
}
|
|
|
|
private void AddException(Exception exception, bool inner = false)
|
|
{
|
|
if (!inner)
|
|
ErrorRichTextBox.Selection.Text = $"{exception.GetType()}: {exception.Message}";
|
|
|
|
if (exception.InnerException is null)
|
|
return;
|
|
|
|
ErrorRichTextBox.Selection.Text += $"\n\n[Inner Exception]\n{exception.InnerException.GetType()}: {exception.InnerException.Message}";
|
|
|
|
AddException(exception.InnerException, true);
|
|
}
|
|
}
|
|
}
|