mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
67 lines
2.0 KiB
C#
67 lines
2.0 KiB
C#
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reactive;
|
|
using System.Reactive.Linq;
|
|
using System.Windows.Input;
|
|
using Wabbajack.Common;
|
|
using Wabbajack;
|
|
using Wabbajack.Messages;
|
|
using Wabbajack.Paths.IO;
|
|
using Wabbajack.Networking.WabbajackClientApi;
|
|
using System.Threading.Tasks;
|
|
using Wabbajack.DTOs;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Reactive.Disposables;
|
|
using System.Diagnostics;
|
|
using DynamicData;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class HomeVM : ViewModel
|
|
{
|
|
private readonly ILogger<HomeVM> _logger;
|
|
private readonly Client _wjClient;
|
|
private readonly SourceCache<ModListMetadataVM, string> _modLists = new(x => x.Metadata.NamespacedName);
|
|
|
|
public HomeVM(ILogger<HomeVM> logger, Client wjClient)
|
|
{
|
|
_logger = logger;
|
|
_wjClient = wjClient;
|
|
BrowseCommand = ReactiveCommand.Create(() => NavigateToGlobal.Send(ScreenType.ModListGallery));
|
|
VisitModlistWizardCommand = ReactiveCommand.Create(() =>
|
|
{
|
|
ProcessStartInfo processStartInfo = new(Consts.WabbajackModlistWizardUri.ToString())
|
|
{
|
|
UseShellExecute = true
|
|
};
|
|
Process.Start(processStartInfo);
|
|
});
|
|
LoadModLists().FireAndForget();
|
|
}
|
|
private async Task LoadModLists()
|
|
{
|
|
using var ll = LoadingLock.WithLoading();
|
|
try
|
|
{
|
|
Modlists = await _wjClient.LoadLists();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "While loading lists");
|
|
ll.Fail();
|
|
}
|
|
ll.Succeed();
|
|
}
|
|
|
|
public ICommand VisitModlistWizardCommand { get; }
|
|
public ICommand BrowseCommand { get; }
|
|
public ReactiveCommand<Unit, Unit> UpdateCommand { get; }
|
|
|
|
[Reactive]
|
|
public ModlistMetadata[] Modlists { get; private set; }
|
|
}
|
|
}
|