Various updates.

This commit is contained in:
2026-01-25 18:33:32 -05:00
parent 4797d3c559
commit d747f68df8
11 changed files with 286 additions and 27 deletions

View File

@@ -1,20 +1,12 @@
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using MangaReader.Core.Data;
using MangaReader.Core.Metadata;
using MangaReader.Core.Pipeline;
using MangaReader.Core.Search;
using Microsoft.EntityFrameworkCore;
using Microsoft.UI.Dispatching;
using Microsoft.UI.Xaml.Media.Imaging;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.PixelFormats;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Input;
@@ -23,12 +15,107 @@ namespace MangaReader.WinUI.ViewModels;
public partial class LibraryViewModel(MangaContext context) : ViewModelBase
{
public void GetSomething()
{
var mangas = context.Mangas
.Include(x => x.Sources)
.ThenInclude(x => x.Chapters);
private readonly DispatcherQueue _dispatcherQueue = DispatcherQueue.GetForCurrentThread();
//mangas.Select(x => new MangaS)
private CancellationTokenSource? _cancellationTokenSource;
private string? _keyword;
public string? Keyword
{
get
{
return _keyword;
}
set
{
SetProperty(ref _keyword, value);
}
}
private ObservableCollection<ObservableMangaItem> _mangaItems = [];
public ObservableCollection<ObservableMangaItem> MangaItems
{
get
{
return _mangaItems;
}
set
{
SetProperty(ref _mangaItems, value);
}
}
public ICommand SearchCommand => new AsyncRelayCommand(SearchAsync);
//public ICommand ImportCommand => new AsyncRelayCommand(ImportAsync);
public async Task SearchAsync()
{
//if (string.IsNullOrWhiteSpace(Keyword))
// return;
_cancellationTokenSource?.Cancel();
_cancellationTokenSource = new();
ObservableMangaItem[] mangaItems = await GetMangaItemsAsync(_cancellationTokenSource.Token);
_dispatcherQueue.TryEnqueue(DispatcherQueuePriority.Normal, () =>
{
MangaItems = new(mangaItems);
});
//MangaItems = new(mangaItems);
}
public async Task<ObservableMangaItem[]> GetMangaItemsAsync(CancellationToken cancellationToken)
{
Manga[] mangas = await context.Mangas
.Include(x => x.Titles)
.Include(x => x.Descriptions)
.Include(x => x.Genres).ThenInclude(x => x.Genre)
//.Include(x => x.Sources)
//.ThenInclude(x => x.Chapters)
.ToArrayAsync(cancellationToken);
List<ObservableMangaItem> mangaItems = [];
foreach (Manga manga in mangas)
{
ObservableMangaItem mangaItem = new()
{
MangaId = manga.MangaId,
Title = manga.Titles.OrderByDescending(title => title.IsPrimary).FirstOrDefault()?.Name,
Description = manga.Descriptions.FirstOrDefault()?.Text,
Genres = [.. manga.Genres.Select(x => x.Genre.Name)]
};
mangaItems.Add(mangaItem);
}
return [.. mangaItems];
}
}
public partial class ObservableMangaItem : ObservableObject
{
public int MangaId { get; init; }
public string? Title { get; init; }
public string? Description { get; init; }
public string? Thumbnail { get; init; }
public string[] Genres { get; init; } = [];
private BitmapImage? _thumbnailBitmap;
public BitmapImage? ThumbnailBitmap
{
get
{
return _thumbnailBitmap;
}
set
{
SetProperty(ref _thumbnailBitmap, value);
}
}
}