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.
46 lines
1.3 KiB
46 lines
1.3 KiB
using System.Linq; |
|
using System.Text.Json.Nodes; |
|
using StabilityMatrix.Avalonia.Controls; |
|
using StabilityMatrix.Avalonia.Models.Inference; |
|
using StabilityMatrix.Avalonia.Services; |
|
using StabilityMatrix.Avalonia.ViewModels.Base; |
|
using StabilityMatrix.Core.Attributes; |
|
using StabilityMatrix.Core.Extensions; |
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels.Inference; |
|
|
|
[View(typeof(StackCard))] |
|
[ManagedService] |
|
[Transient] |
|
public class StackCardViewModel : StackViewModelBase |
|
{ |
|
/// <inheritdoc /> |
|
public StackCardViewModel(ServiceManager<ViewModelBase> vmFactory) |
|
: base(vmFactory) { } |
|
|
|
/// <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() } |
|
); |
|
} |
|
}
|
|
|