blob: 9c783e42169e6367c4d1c786ecfc10fa0a55b799 (
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
|
using Avalonia.Controls;
using Avalonia.Interactivity;
using MatrixUtils.Abstractions;
using MatrixUtils.Desktop.Components;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
namespace MatrixUtils.Desktop;
public partial class MainWindow : Window {
private readonly ILogger<MainWindow> _logger;
private readonly IServiceScopeFactory _scopeFactory;
private readonly RMUStorageWrapper _storageWrapper;
private readonly RMUDesktopConfiguration _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<RMUDesktopConfiguration>();
_storageWrapper = scopeFactory.CreateScope().ServiceProvider.GetRequiredService<RMUStorageWrapper>();
_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)
});
base.OnLoaded(e);
}
}
// public Command
// protected void LoadedCommand() {
// _logger.LogInformation("async command");
// }
}
|