mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
133 lines
4.8 KiB
C#
133 lines
4.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Reactive;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
using DynamicData;
|
|
using DynamicData.Binding;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.Lib;
|
|
using Wabbajack.Lib.ModListRegistry;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class ModListGalleryVM : BackNavigatingVM
|
|
{
|
|
public MainWindowVM MWVM { get; }
|
|
|
|
public ObservableCollectionExtended<ModListMetadataVM> ModLists { get; } = new ObservableCollectionExtended<ModListMetadataVM>();
|
|
|
|
private int missingHashFallbackCounter;
|
|
|
|
[Reactive]
|
|
public IErrorResponse Error { get; set; }
|
|
|
|
[Reactive]
|
|
public string Search { get; set; }
|
|
|
|
[Reactive]
|
|
public bool OnlyInstalled { get; set; }
|
|
|
|
private readonly ObservableAsPropertyHelper<bool> _Loaded;
|
|
public bool Loaded => _Loaded.Value;
|
|
|
|
public ICommand ClearFiltersCommand { get; }
|
|
|
|
public ModListGalleryVM(MainWindowVM mainWindowVM)
|
|
: base(mainWindowVM)
|
|
{
|
|
MWVM = mainWindowVM;
|
|
|
|
ClearFiltersCommand = ReactiveCommand.Create(
|
|
() =>
|
|
{
|
|
OnlyInstalled = false;
|
|
Search = string.Empty;
|
|
});
|
|
|
|
var random = new Random();
|
|
var sourceList = Observable.Return(Unit.Default)
|
|
.ObserveOn(RxApp.TaskpoolScheduler)
|
|
.SelectTask(async _ =>
|
|
{
|
|
try
|
|
{
|
|
Error = null;
|
|
var list = await ModlistMetadata.LoadFromGithub();
|
|
Error = ErrorResponse.Success;
|
|
return list
|
|
// Sort randomly initially, just to give each list a fair shake
|
|
.Shuffle(random)
|
|
.AsObservableChangeSet(x => x.DownloadMetadata?.Hash ?? Hash.Empty);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Utils.Error(ex);
|
|
Error = ErrorResponse.Fail(ex);
|
|
return Observable.Empty<IChangeSet<ModlistMetadata, Hash>>();
|
|
}
|
|
})
|
|
// Unsubscribe and release when not active
|
|
.FlowSwitch(
|
|
this.WhenAny(x => x.IsActive),
|
|
valueWhenOff: Observable.Return(ChangeSet<ModlistMetadata, Hash>.Empty))
|
|
.Switch()
|
|
.RefCount();
|
|
|
|
_Loaded = sourceList.CollectionCount()
|
|
.Select(c => c > 0)
|
|
.ToProperty(this, nameof(Loaded));
|
|
|
|
// Convert to VM and bind to resulting list
|
|
sourceList
|
|
.ObserveOnGuiThread()
|
|
.Transform(m => new ModListMetadataVM(this, m))
|
|
.DisposeMany()
|
|
// Filter only installed
|
|
.Filter(predicateChanged: this.WhenAny(x => x.OnlyInstalled)
|
|
.Select<bool, Func<ModListMetadataVM, bool>>(onlyInstalled => (vm) =>
|
|
{
|
|
if (!onlyInstalled) return true;
|
|
if (!GameRegistry.Games.TryGetValue(vm.Metadata.Game, out var gameMeta)) return false;
|
|
return gameMeta.IsInstalled;
|
|
}))
|
|
// Filter on search box
|
|
.Filter(predicateChanged: this.WhenAny(x => x.Search)
|
|
.Debounce(TimeSpan.FromMilliseconds(150), RxApp.MainThreadScheduler)
|
|
.Select<string, Func<ModListMetadataVM, bool>>(search => (vm) =>
|
|
{
|
|
if (string.IsNullOrWhiteSpace(search)) return true;
|
|
return vm.Metadata.Title.ContainsCaseInsensitive(search);
|
|
}))
|
|
// Put broken lists at bottom
|
|
.Sort(Comparer<ModListMetadataVM>.Create((a, b) => a.IsBroken.CompareTo(b.IsBroken)))
|
|
.Bind(ModLists)
|
|
.Subscribe()
|
|
.DisposeWith(CompositeDisposable);
|
|
|
|
// Extra GC when navigating away, just to immediately clean up modlist metadata
|
|
this.WhenAny(x => x.IsActive)
|
|
.Where(x => !x)
|
|
.Skip(1)
|
|
.Delay(TimeSpan.FromMilliseconds(50), RxApp.MainThreadScheduler)
|
|
.Subscribe(_ =>
|
|
{
|
|
GC.Collect();
|
|
})
|
|
.DisposeWith(CompositeDisposable);
|
|
}
|
|
|
|
public override void Unload()
|
|
{
|
|
Error = null;
|
|
}
|
|
}
|
|
}
|