mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
76 lines
3.2 KiB
C#
76 lines
3.2 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Reactive.Disposables;
|
|
using System.Reactive.Linq;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using MahApps.Metro.Controls;
|
|
using ReactiveUI;
|
|
using Wabbajack.Lib.ModListRegistry;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public partial class ModListGalleryView : ReactiveUserControl<ModListGalleryVM>
|
|
{
|
|
public ModListGalleryView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.WhenActivated(dispose =>
|
|
{
|
|
this.WhenAny(x => x.ViewModel.BackCommand)
|
|
.BindToStrict(this, x => x.BackButton.Command)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.ModLists)
|
|
.BindToStrict(this, x => x.ModListGalleryControl.ItemsSource)
|
|
.DisposeWith(dispose);
|
|
Observable.CombineLatest(
|
|
this.WhenAny(x => x.ViewModel.Error),
|
|
this.WhenAny(x => x.ViewModel.Loaded),
|
|
resultSelector: (err, loaded) =>
|
|
{
|
|
if (!err?.Succeeded ?? false) return true;
|
|
return !loaded;
|
|
})
|
|
.DistinctUntilChanged()
|
|
.Select(x => x ? Visibility.Visible : Visibility.Collapsed)
|
|
.StartWith(Visibility.Collapsed)
|
|
.BindToStrict(this, x => x.LoadingRing.Visibility)
|
|
.DisposeWith(dispose);
|
|
Observable.CombineLatest(
|
|
this.WhenAny(x => x.ViewModel.ModLists.Count)
|
|
.Select(x => x > 0),
|
|
this.WhenAny(x => x.ViewModel.Loaded),
|
|
resultSelector: (hasContent, loaded) =>
|
|
{
|
|
return !hasContent && loaded;
|
|
})
|
|
.DistinctUntilChanged()
|
|
.Select(x => x ? Visibility.Visible : Visibility.Collapsed)
|
|
.StartWith(Visibility.Collapsed)
|
|
.BindToStrict(this, x => x.NoneFound.Visibility)
|
|
.DisposeWith(dispose);
|
|
this.WhenAny(x => x.ViewModel.Error)
|
|
.Select(e => (e?.Succeeded ?? true) ? Visibility.Collapsed : Visibility.Visible)
|
|
.StartWith(Visibility.Collapsed)
|
|
.BindToStrict(this, x => x.ErrorIcon.Visibility)
|
|
.DisposeWith(dispose);
|
|
|
|
this.BindStrict(ViewModel, vm => vm.Search, x => x.SearchBox.Text)
|
|
.DisposeWith(dispose);
|
|
|
|
this.BindStrict(ViewModel, vm => vm.OnlyInstalled, x => x.OnlyInstalledCheckbox.IsChecked)
|
|
.DisposeWith(dispose);
|
|
this.BindStrict(ViewModel, vm => vm.ShowNSFW, x => x.ShowNSFW.IsChecked)
|
|
.DisposeWith(dispose);
|
|
this.BindStrict(ViewModel, vm => vm.ShowUtilityLists, x => x.ShowUtilityLists.IsChecked)
|
|
.DisposeWith(dispose);
|
|
|
|
this.WhenAny(x => x.ViewModel.ClearFiltersCommand)
|
|
.BindToStrict(this, x => x.ClearFiltersButton.Command)
|
|
.DisposeWith(dispose);
|
|
});
|
|
}
|
|
}
|
|
}
|