mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using ReactiveUI;
|
|
using System;
|
|
using System.Reactive.Linq;
|
|
using System.Windows.Media.Imaging;
|
|
using Microsoft.Extensions.Logging;
|
|
using Wabbajack.DTOs.DownloadStates;
|
|
using Wabbajack;
|
|
|
|
namespace Wabbajack
|
|
{
|
|
public class ModVM : ViewModel
|
|
{
|
|
private readonly ILogger<ModVM> _logger;
|
|
public IMetaState State { get; }
|
|
|
|
// Image isn't exposed as a direct property, but as an observable.
|
|
// This acts as a caching mechanism, as interested parties will trigger it to be created,
|
|
// and the cached image will automatically be released when the last interested party is gone.
|
|
public IObservable<BitmapImage> ImageObservable { get; }
|
|
|
|
public ModVM(ILogger<ModVM> logger, IMetaState state)
|
|
{
|
|
_logger = logger;
|
|
State = state;
|
|
|
|
ImageObservable = Observable.Return(State.ImageURL?.ToString())
|
|
.ObserveOn(RxApp.TaskpoolScheduler)
|
|
.DownloadBitmapImage(ex => _logger.LogError(ex, "Skipping slide for mod {Name}", State.Name), LoadingLock)
|
|
.Replay(1)
|
|
.RefCount(TimeSpan.FromMilliseconds(5000));
|
|
}
|
|
}
|
|
}
|