Pcc2MainForm.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. using Microsoft.AspNetCore.Components.WebView.WindowsForms;
  2. using Microsoft.AspNetCore.Components.WebView;
  3. using PCC2.AppScaffold;
  4. using PCC2.EventBus;
  5. using PCC2.Logging;
  6. using PCC2.Gui.Events;
  7. namespace PCC2.Gui
  8. {
  9. public partial class Pcc2MainForm : Form
  10. {
  11. private IAsyncEventBus _eventBus = null!;
  12. private bool _isShuttingDown;
  13. private bool _isShuttingDownCompleted;
  14. public Pcc2MainForm()
  15. {
  16. InitializeComponent();
  17. Shown += Pcc2MainForm_Shown;
  18. FormClosing += Pcc2MainForm_FormClosing;
  19. }
  20. private async void Pcc2MainForm_Shown(object? sender, EventArgs e)
  21. {
  22. ApplicationInitializationStatusLabel.Text = "Building host...";
  23. Application.DoEvents();
  24. HostHolder.BuildHost();
  25. _eventBus = HostHolder.EventBus;
  26. async Task UiShowEventHandler(UiShownEvent obj)
  27. {
  28. ApplicationInitializationPanel.Hide();
  29. _eventBus.UnSubscript<UiShownEvent>(UiShowEventHandler);
  30. #if DEBUG
  31. MainBlazorWebView.WebView.CoreWebView2.OpenDevToolsWindow();
  32. #endif
  33. }
  34. _eventBus.Subscript((Func<UiShownEvent, Task>)UiShowEventHandler);
  35. async Task LocalMethod(LoggingEvent le)
  36. {
  37. if (ApplicationInitializationPanel.Visible == false) return;
  38. if (ApplicationInitializationStatusLabel.InvokeRequired)
  39. {
  40. Invoke(delegate
  41. {
  42. ApplicationInitializationStatusLabel.Text = $"{le.LogLevel} {le.Content}";
  43. Application.DoEvents();
  44. });
  45. }
  46. else
  47. {
  48. ApplicationInitializationStatusLabel.Text = $"{le.LogLevel} {le.Content}";
  49. }
  50. }
  51. HostHolder.EventBus.Subscript<LoggingEvent>(LocalMethod);
  52. ApplicationInitializationStatusLabel.Text = "Starting host...";
  53. Application.DoEvents();
  54. await HostHolder.StartAsync();
  55. async void OnUrlLoading(object? o, UrlLoadingEventArgs args)
  56. {
  57. MainBlazorWebView.UrlLoading -= OnUrlLoading;
  58. ApplicationInitializationStatusLabel.Text = "Loading UI...";
  59. Application.DoEvents();
  60. }
  61. MainBlazorWebView.UrlLoading += OnUrlLoading;
  62. MainBlazorWebView.HostPage = "wwwroot\\index.html";
  63. MainBlazorWebView.Services = HostHolder.ServiceProvider;
  64. MainBlazorWebView.RootComponents.Add<Blazor.MainUI>("#app");
  65. }
  66. private async void Pcc2MainForm_FormClosing(object? sender, FormClosingEventArgs e)
  67. {
  68. if (_isShuttingDownCompleted == false) e.Cancel = true;
  69. if (_isShuttingDown) return;
  70. _isShuttingDown = true;
  71. try
  72. {
  73. ApplicationInitializationPanel.Show();
  74. ApplicationInitializationTitleLabel.Text = "Application shutting down...";
  75. Application.DoEvents();
  76. await HostHolder.StopAsync();
  77. ApplicationInitializationStatusLabel.Text = "Window will close after 3 second...";
  78. Application.DoEvents();
  79. await Task.Delay(3000);
  80. }
  81. finally
  82. {
  83. _isShuttingDownCompleted = true;
  84. Close();
  85. }
  86. }
  87. }
  88. }