about summary refs log tree commit diff
path: root/MatrixRoomUtils.Desktop/MainWindow.axaml.cs
blob: 6ef573ee19f69b7bea272530a611e8c35ab0a800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using Avalonia.Controls;
using Avalonia.Interactivity;
using MatrixRoomUtils.Abstractions;
using MatrixRoomUtils.Desktop.Components;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;

namespace MatrixRoomUtils.Desktop;

public partial class MainWindow : Window {
    private readonly ILogger<MainWindow> _logger;
    private readonly IServiceScopeFactory _scopeFactory;
    private readonly MRUStorageWrapper _storageWrapper;
    private readonly MRUDesktopConfiguration _configuration;
    public static MainWindow Instance { get; private set; } = null!;

    public MainWindow(ILogger<MainWindow> logger, IServiceScopeFactory scopeFactory, SentryService _) {
        Instance = this;
        _logger = logger;
        _scopeFactory = scopeFactory;
        _configuration = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<MRUDesktopConfiguration>();
        _storageWrapper = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<MRUStorageWrapper>();

        _logger.LogInformation("Initialising MainWindow");

        InitializeComponent();

        _logger.LogInformation("Cache location: {}", _configuration.CacheStoragePath);
        _logger.LogInformation("Data location: {}", _configuration.DataStoragePath);

        // for (int i = 0; i < 100; i++) {
        // roomList.Children.Add(new RoomListEntry());
        // }
    }

    // ReSharper disable once AsyncVoidMethod
    protected override async void OnLoaded(RoutedEventArgs e) {
        _logger.LogInformation("async onloaded override");
        var hs = await _storageWrapper.GetCurrentSessionOrPrompt();
        var rooms = await hs.GetJoinedRooms();
        foreach (var room in rooms) {
            // roomList.Children.Add(new RoomListEntry(_scopeFactory, new RoomInfo(room)));

            windowContent.Push("home", new RoomListEntry() {
                Room = new RoomInfo() {
                    Room = room
                }
            });
            base.OnLoaded(e);
        }
    }

    // public Command
    // protected void LoadedCommand() {
    // _logger.LogInformation("async command");
    // }
}