Crunchy-Downloader/CRD/ViewModels/SeriesPageViewModel.cs

105 lines
3.3 KiB
C#
Raw Normal View History

2024-05-04 15:35:32 +00:00
using System;
2024-05-25 22:02:45 +00:00
using System.Diagnostics;
using System.Linq;
2024-05-04 15:35:32 +00:00
using System.Threading.Tasks;
using Avalonia.Platform.Storage;
2024-05-04 15:35:32 +00:00
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Input;
using CRD.Downloader;
using CRD.Utils;
2024-05-25 22:02:45 +00:00
using CRD.Utils.Sonarr;
using CRD.Utils.Structs;
using CRD.Utils.Structs.History;
2024-05-04 15:35:32 +00:00
using CRD.Views;
using ReactiveUI;
namespace CRD.ViewModels;
public partial class SeriesPageViewModel : ViewModelBase{
[ObservableProperty]
public HistorySeries _selectedSeries;
2024-05-25 22:02:45 +00:00
[ObservableProperty]
public static bool _editMode;
2024-05-25 22:02:45 +00:00
[ObservableProperty]
public static bool _sonarrAvailable;
private IStorageProvider _storageProvider;
2024-05-04 15:35:32 +00:00
public SeriesPageViewModel(){
_selectedSeries = Crunchyroll.Instance.SelectedSeries;
2024-05-25 22:02:45 +00:00
2024-05-04 15:35:32 +00:00
if (_selectedSeries.ThumbnailImage == null){
_selectedSeries.LoadImage();
}
if (!string.IsNullOrEmpty(SelectedSeries.SonarrSeriesId) && Crunchyroll.Instance.CrunOptions.SonarrProperties != null){
SonarrAvailable = SelectedSeries.SonarrSeriesId.Length > 0 && Crunchyroll.Instance.CrunOptions.SonarrProperties.SonarrEnabled;
}else{
2024-05-25 22:02:45 +00:00
SonarrAvailable = false;
}
2024-05-25 22:02:45 +00:00
2024-05-04 15:35:32 +00:00
}
[RelayCommand]
public async Task OpenFolderDialogAsync(HistorySeason? season){
if (_storageProvider == null){
Console.Error.WriteLine("StorageProvider must be set before using the dialog.");
throw new InvalidOperationException("StorageProvider must be set before using the dialog.");
}
var result = await _storageProvider.OpenFolderPickerAsync(new FolderPickerOpenOptions{
Title = "Select Folder"
});
if (result.Count > 0){
var selectedFolder = result[0];
// Do something with the selected folder path
Console.WriteLine($"Selected folder: {selectedFolder.Path.LocalPath}");
if (season != null){
season.SeasonDownloadPath = selectedFolder.Path.LocalPath;
} else{
SelectedSeries.SeriesDownloadPath = selectedFolder.Path.LocalPath;
}
CfgManager.WriteJsonToFile(CfgManager.PathCrHistory, Crunchyroll.Instance.HistoryList);
}
}
public void SetStorageProvider(IStorageProvider storageProvider){
_storageProvider = storageProvider ?? throw new ArgumentNullException(nameof(storageProvider));
}
2024-05-04 15:35:32 +00:00
[RelayCommand]
public async Task UpdateData(string? season){
await SelectedSeries.FetchData(season);
// MessageBus.Current.SendMessage(new NavigationMessage(typeof(SeriesPageViewModel), false, true));
2024-05-04 15:35:32 +00:00
}
2024-05-25 22:02:45 +00:00
[RelayCommand]
public void RemoveSeason(string? season){
HistorySeason? objectToRemove = SelectedSeries.Seasons.FirstOrDefault(se => se.SeasonId == season) ?? null;
2024-05-25 22:02:45 +00:00
if (objectToRemove != null){
SelectedSeries.Seasons.Remove(objectToRemove);
}
2024-05-25 22:02:45 +00:00
CfgManager.WriteJsonToFile(CfgManager.PathCrHistory, Crunchyroll.Instance.HistoryList);
MessageBus.Current.SendMessage(new NavigationMessage(typeof(SeriesPageViewModel), false, true));
}
2024-05-25 22:02:45 +00:00
2024-05-04 15:35:32 +00:00
[RelayCommand]
public void NavBack(){
SelectedSeries.UpdateNewEpisodes();
2024-05-25 22:02:45 +00:00
MessageBus.Current.SendMessage(new NavigationMessage(null, true, false));
}
2024-05-04 15:35:32 +00:00
}