about summary refs log tree commit diff
path: root/ModerationClient/Views/MainWindow/MainWindow.axaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ModerationClient/Views/MainWindow/MainWindow.axaml.cs')
-rw-r--r--ModerationClient/Views/MainWindow/MainWindow.axaml.cs124
1 files changed, 124 insertions, 0 deletions
diff --git a/ModerationClient/Views/MainWindow/MainWindow.axaml.cs b/ModerationClient/Views/MainWindow/MainWindow.axaml.cs
new file mode 100644
index 0000000..01027c1
--- /dev/null
+++ b/ModerationClient/Views/MainWindow/MainWindow.axaml.cs
@@ -0,0 +1,124 @@
+using System;
+using Avalonia;
+using Avalonia.Controls;
+using Avalonia.Diagnostics;
+using Avalonia.Input;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using ModerationClient.Services;
+using ModerationClient.ViewModels;
+
+namespace ModerationClient.Views.MainWindow;
+
+public partial class MainWindow : Window {
+    public MainWindow(CommandLineConfiguration cfg, MainWindowViewModel dataContext, IHostApplicationLifetime appLifetime) {
+        InitializeComponent();
+        DataContext = dataContext;
+        _ = dataContext.AuthService.LoadProfileAsync().ContinueWith(x => {
+            if (x.IsFaulted) {
+                Console.WriteLine("Failed to load profile: " + x.Exception);
+            }
+        });
+        Console.WriteLine("mainwnd");
+#if DEBUG
+        this.AttachDevTools(new DevToolsOptions() {
+            ShowAsChildWindow = true,
+            LaunchView = DevToolsViewKind.LogicalTree,
+        });
+#endif
+        PropertyChanged += (sender, args) => {
+            // Console.WriteLine($"MainWindow PropertyChanged: {args.Property.Name} ({args.OldValue} -> {args.NewValue})");
+            switch (args.Property.Name) {
+                case nameof(ClientSize): {
+                    if (DataContext is not MainWindowViewModel viewModel) {
+                        Console.WriteLine("WARN: MainWindowViewModel is null, ignoring ClientSize change!");
+                        return;
+                    }
+
+                    viewModel.PhysicalSize = new Size(ClientSize.Width, ClientSize.Height - TopPanel.Bounds.Height);
+                    break;
+                }
+            }
+        };
+
+        TopPanel.PropertyChanged += (_, args) => {
+            if (args.Property.Name == nameof(Visual.Bounds)) {
+                if (DataContext is not MainWindowViewModel viewModel) {
+                    Console.WriteLine("WARN: MainWindowViewModel is null, ignoring TopPanel.Bounds change!");
+                    return;
+                }
+
+                viewModel.PhysicalSize = new Size(ClientSize.Width, ClientSize.Height - TopPanel.Bounds.Height);
+            }
+        };
+
+        dataContext.AuthService.PropertyChanged += (sender, args) => {
+            if (args.PropertyName == nameof(MatrixAuthenticationService.IsLoggedIn)) {
+                if (dataContext.AuthService.IsLoggedIn) {
+                    // dataContext.CurrentViewModel = new ClientViewModel(dataContext.AuthService);
+                    dataContext.CurrentViewModel = App.Current.Host.Services.GetRequiredService<ClientViewModel>();
+                    var window = App.Current.Host.Services.GetRequiredService<UserManagementWindow>();
+                    window.Show();
+                }
+                else {
+                    dataContext.CurrentViewModel = new LoginViewModel(dataContext.AuthService);
+                }
+            }
+        };
+
+        dataContext.Scale = cfg.Scale;
+        Width *= cfg.Scale;
+        Height *= cfg.Scale;
+
+        appLifetime.ApplicationStopping.Register(() => {
+            Console.WriteLine("ApplicationStopping triggered");
+            Close();
+        });
+    }
+
+    protected override void OnKeyDown(KeyEventArgs e) => OnKeyDown(this, e);
+
+    private void OnKeyDown(object? _, KeyEventArgs e) {
+        if (DataContext is not MainWindowViewModel viewModel) {
+            Console.WriteLine($"WARN: DataContext is {DataContext?.GetType().Name ?? "null"}, ignoring key press!");
+            return;
+        }
+
+        // Console.WriteLine("MainWindow KeyDown: " + e.Key);
+        if (e.Key == Key.Escape) {
+            viewModel.Scale = 1.0f;
+        }
+        else if (e.Key == Key.F1) {
+            viewModel.Scale -= 0.1f;
+            if (viewModel.Scale < 0.1f) {
+                viewModel.Scale = 0.1f;
+            }
+        }
+        else if (e.Key == Key.F2) {
+            viewModel.Scale += 0.1f;
+            if (viewModel.Scale > 5.0f) {
+                viewModel.Scale = 5.0f;
+            }
+        }
+        else if (e.KeyModifiers == KeyModifiers.Control) {
+            if (e.Key == Key.K) {
+                if (viewModel.CurrentViewModel is ClientViewModel clientViewModel) {
+                    Console.WriteLine("QuickSwitcher invoked");
+                }
+                else Console.WriteLine("WARN: CurrentViewModel is not ClientViewModel, ignoring Quick Switcher");
+            }
+            else if (e.Key == Key.U ) {
+                Console.WriteLine("UserManagementWindow invoked");
+                var window = App.Current.Host.Services.GetRequiredService<UserManagementWindow>();
+                window.Show();
+            }
+            else if (e.Key == Key.F5) {
+                Console.WriteLine("Launching new process");
+                System.Diagnostics.Process.Start(System.Diagnostics.Process.GetCurrentProcess().MainModule?.FileName, Environment.GetCommandLineArgs());
+            }
+            else if (e.Key == Key.F9) {
+                
+            }
+        }
+    }
+}
\ No newline at end of file