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.
32 lines
1.2 KiB
32 lines
1.2 KiB
using System.Collections.Generic; |
|
using System.Linq; |
|
using Avalonia; |
|
using Avalonia.Controls; |
|
using CommunityToolkit.Mvvm.ComponentModel; |
|
using FluentAvalonia.UI.Controls; |
|
using StabilityMatrix.Avalonia.ViewModels.Base; |
|
using StabilityMatrix.Avalonia.ViewModels.CheckpointBrowser; |
|
using StabilityMatrix.Avalonia.Views; |
|
using StabilityMatrix.Core.Attributes; |
|
using Symbol = FluentIcons.Common.Symbol; |
|
using SymbolIconSource = FluentIcons.FluentAvalonia.SymbolIconSource; |
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels; |
|
|
|
[View(typeof(CheckpointBrowserPage))] |
|
[Singleton] |
|
public partial class CheckpointBrowserViewModel( |
|
CivitAiBrowserViewModel civitAiBrowserViewModel, |
|
HuggingFacePageViewModel huggingFaceViewModel |
|
) : PageViewModelBase |
|
{ |
|
public override string Title => "Model Browser"; |
|
public override IconSource IconSource => new SymbolIconSource { Symbol = Symbol.BrainCircuit, IsFilled = true }; |
|
|
|
public IReadOnlyList<TabItem> Pages { get; } = |
|
new List<TabItem>( |
|
new List<TabViewModelBase>([civitAiBrowserViewModel, huggingFaceViewModel]).Select( |
|
vm => new TabItem { Header = vm.Header, Content = vm } |
|
) |
|
); |
|
}
|
|
|