mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
84 lines
2.9 KiB
C#
84 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Text.RegularExpressions;
|
|
using DynamicData;
|
|
using DynamicData.Binding;
|
|
using Microsoft.Extensions.Logging;
|
|
using ReactiveUI.Fody.Helpers;
|
|
using Wabbajack.Common;
|
|
using Wabbajack.DTOs;
|
|
using Wabbajack.DTOs.ServerResponses;
|
|
|
|
namespace Wabbajack.View_Models
|
|
{
|
|
public class ModListContentsVM : BackNavigatingVM
|
|
{
|
|
private MainWindowVM _mwvm;
|
|
[Reactive]
|
|
public string Name { get; set; }
|
|
|
|
[Reactive]
|
|
public ObservableCollection<DetailedStatusItem> Status { get; set; }
|
|
|
|
[Reactive]
|
|
public string SearchString { get; set; }
|
|
|
|
private readonly ReadOnlyObservableCollection<ModListArchive> _archives;
|
|
public ReadOnlyObservableCollection<ModListArchive> Archives => _archives;
|
|
|
|
private static readonly Regex NameMatcher = new(@"(?<=\.)[^\.]+(?=\+State)", RegexOptions.Compiled);
|
|
private readonly ILogger<ModListContentsVM> _logger;
|
|
|
|
public ModListContentsVM(ILogger<ModListContentsVM> logger, MainWindowVM mwvm) : base(logger)
|
|
{
|
|
_logger = logger;
|
|
_mwvm = mwvm;
|
|
Status = new ObservableCollectionExtended<DetailedStatusItem>();
|
|
|
|
string TransformClassName(Archive a)
|
|
{
|
|
var cname = a.State.GetType().FullName;
|
|
if (cname == null) return null;
|
|
|
|
var match = NameMatcher.Match(cname);
|
|
return match.Success ? match.ToString() : null;
|
|
}
|
|
|
|
this.Status
|
|
.ToObservableChangeSet()
|
|
.Transform(a => new ModListArchive
|
|
{
|
|
Name = a.Name,
|
|
Size = a.Archive?.Size ?? 0,
|
|
Downloader = TransformClassName(a.Archive) ?? "Unknown",
|
|
Hash = a.Archive!.Hash.ToBase64()
|
|
})
|
|
.Filter(this.WhenAny(x => x.SearchString)
|
|
.StartWith("")
|
|
.Throttle(TimeSpan.FromMilliseconds(250))
|
|
.Select<string, Func<ModListArchive, bool>>(s => (ModListArchive ar) =>
|
|
string.IsNullOrEmpty(s) ||
|
|
ar.Name.ContainsCaseInsensitive(s) ||
|
|
ar.Downloader.ContainsCaseInsensitive(s) ||
|
|
ar.Hash.ContainsCaseInsensitive(s) ||
|
|
ar.Size.ToString() == s ||
|
|
ar.Url.ContainsCaseInsensitive(s)))
|
|
.ObserveOnGuiThread()
|
|
.Bind(out _archives)
|
|
.Subscribe()
|
|
.DisposeWith(CompositeDisposable);
|
|
}
|
|
}
|
|
|
|
public class ModListArchive
|
|
{
|
|
public string Name { get; set; }
|
|
public long Size { get; set; }
|
|
public string Url { get; set; }
|
|
public string Downloader { get; set; }
|
|
public string Hash { get; set; }
|
|
}
|
|
}
|