Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
1.0 KiB

using System.Linq;
using System.Text.Json.Nodes;
using StabilityMatrix.Avalonia.Controls;
using StabilityMatrix.Avalonia.Models.Inference;
using StabilityMatrix.Core.Attributes;
using StabilityMatrix.Core.Extensions;
namespace StabilityMatrix.Avalonia.ViewModels.Inference;
[View(typeof(StackCard))]
public class StackCardViewModel : StackViewModelBase
{
/// <inheritdoc />
public override void LoadStateFromJsonObject(JsonObject state)
{
var model = DeserializeModel<StackCardModel>(state);
if (model.Cards is null) return;
foreach (var (i, card) in model.Cards.Enumerate())
{
// Ignore if more than cards than we have
if (i > Cards.Count - 1) break;
Cards[i].LoadStateFromJsonObject(card);
}
}
/// <inheritdoc />
public override JsonObject SaveStateToJsonObject()
{
return SerializeModel(new StackCardModel
{
Cards = Cards.Select(x => x.SaveStateToJsonObject()).ToList()
});
}
}