mirror of
https://github.com/Crunchy-DL/Crunchy-Downloader.git
synced 2026-01-11 20:10:26 +00:00
Add - Added a download subs button to the history Chg - Changed CDM error message to include a GitHub wiki link Chg - Changed the style of settings tabs Chg - Changed the date format in the seasons tab Fix - Fixed Crunchyroll seasons numbering issue (e.g., Blue Exorcist) Fix - Fixed window slightly moving on startup Fix - Fixed a bug in the upcoming episodes display for the next week
322 lines
No EOL
9.9 KiB
C#
322 lines
No EOL
9.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Text;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
using Avalonia.Controls;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using CRD.Downloader;
|
|
using CRD.Downloader.Crunchyroll;
|
|
using CRD.Utils;
|
|
using CRD.Utils.Structs;
|
|
using CRD.Utils.Structs.History;
|
|
using DynamicData;
|
|
using DynamicData.Kernel;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace CRD.ViewModels;
|
|
|
|
public partial class CalendarPageViewModel : ViewModelBase{
|
|
public ObservableCollection<CalendarDay> CalendarDays{ get; set; }
|
|
|
|
[ObservableProperty]
|
|
private bool _prevButtonEnabled = true;
|
|
|
|
[ObservableProperty]
|
|
private bool _nextButtonEnabled = true;
|
|
|
|
[ObservableProperty]
|
|
private bool _showLoading;
|
|
|
|
[ObservableProperty]
|
|
private bool _customCalendar;
|
|
|
|
[ObservableProperty]
|
|
private bool _filterByAirDate;
|
|
|
|
[ObservableProperty]
|
|
private bool _showUpcomingEpisodes;
|
|
|
|
[ObservableProperty]
|
|
private bool _hideDubs;
|
|
|
|
public ObservableCollection<ComboBoxItem> CalendarDubFilter{ get; } = new(){
|
|
new ComboBoxItem(){ Content = "none" },
|
|
};
|
|
|
|
[ObservableProperty]
|
|
private ComboBoxItem? _currentCalendarDubFilter;
|
|
|
|
public ObservableCollection<ComboBoxItem> CalendarLanguage{ get; } = new(){
|
|
new ComboBoxItem(){ Content = "en-us" },
|
|
new ComboBoxItem(){ Content = "es" },
|
|
new ComboBoxItem(){ Content = "es-es" },
|
|
new ComboBoxItem(){ Content = "pt-br" },
|
|
new ComboBoxItem(){ Content = "pt-pt" },
|
|
new ComboBoxItem(){ Content = "fr" },
|
|
new ComboBoxItem(){ Content = "de" },
|
|
new ComboBoxItem(){ Content = "ar" },
|
|
new ComboBoxItem(){ Content = "it" },
|
|
new ComboBoxItem(){ Content = "ru" },
|
|
new ComboBoxItem(){ Content = "hi" },
|
|
};
|
|
|
|
[ObservableProperty]
|
|
private ComboBoxItem? _currentCalendarLanguage;
|
|
|
|
private CalendarWeek? currentWeek;
|
|
|
|
private bool loading = true;
|
|
|
|
public CalendarPageViewModel(){
|
|
CalendarDays = new ObservableCollection<CalendarDay>();
|
|
|
|
foreach (var languageItem in Languages.languages){
|
|
CalendarDubFilter.Add(new ComboBoxItem{ Content = languageItem.CrLocale });
|
|
}
|
|
|
|
CustomCalendar = CrunchyrollManager.Instance.CrunOptions.CustomCalendar;
|
|
HideDubs = CrunchyrollManager.Instance.CrunOptions.CalendarHideDubs;
|
|
FilterByAirDate = CrunchyrollManager.Instance.CrunOptions.CalendarFilterByAirDate;
|
|
ShowUpcomingEpisodes = CrunchyrollManager.Instance.CrunOptions.CalendarShowUpcomingEpisodes;
|
|
|
|
ComboBoxItem? dubfilter = CalendarDubFilter.FirstOrDefault(a => a.Content != null && (string)a.Content == CrunchyrollManager.Instance.CrunOptions.CalendarDubFilter) ?? null;
|
|
CurrentCalendarDubFilter = dubfilter ?? CalendarDubFilter[0];
|
|
|
|
CurrentCalendarLanguage = CalendarLanguage.FirstOrDefault(a => a.Content != null && (string)a.Content == CrunchyrollManager.Instance.CrunOptions.SelectedCalendarLanguage) ?? CalendarLanguage[0];
|
|
loading = false;
|
|
LoadCalendar(GetThisWeeksMondayDate(), DateTime.Now, false);
|
|
}
|
|
|
|
|
|
|
|
private string GetThisWeeksMondayDate(){
|
|
DateTime today = DateTime.Today;
|
|
|
|
int daysToSubtract = (int)today.DayOfWeek - (int)DayOfWeek.Monday;
|
|
|
|
if (daysToSubtract < 0){
|
|
daysToSubtract += 7;
|
|
}
|
|
|
|
DateTime monday = today.AddDays(-daysToSubtract);
|
|
|
|
string formattedDate = monday.ToString("yyyy-MM-dd");
|
|
|
|
return formattedDate;
|
|
}
|
|
|
|
public async void LoadCalendar(string mondayDate,DateTime customCalDate, bool forceUpdate){
|
|
ShowLoading = true;
|
|
|
|
CalendarWeek week;
|
|
|
|
if (CustomCalendar){
|
|
|
|
if (customCalDate.Date == DateTime.Now.Date){
|
|
PrevButtonEnabled = false;
|
|
NextButtonEnabled = true;
|
|
} else{
|
|
PrevButtonEnabled = true;
|
|
NextButtonEnabled = false;
|
|
}
|
|
|
|
week = await CalendarManager.Instance.BuildCustomCalendar(customCalDate, forceUpdate);
|
|
} else{
|
|
PrevButtonEnabled = true;
|
|
NextButtonEnabled = true;
|
|
week = await CalendarManager.Instance.GetCalendarForDate(mondayDate, forceUpdate);
|
|
if (currentWeek != null && currentWeek == week){
|
|
ShowLoading = false;
|
|
return;
|
|
}
|
|
}
|
|
|
|
currentWeek = week;
|
|
CalendarDays.Clear();
|
|
CalendarDays.AddRange(week.CalendarDays);
|
|
RaisePropertyChanged(nameof(CalendarDays));
|
|
ShowLoading = false;
|
|
if (CustomCalendar){
|
|
foreach (var calendarDay in CalendarDays){
|
|
foreach (var calendarDayCalendarEpisode in calendarDay.CalendarEpisodes){
|
|
if (calendarDayCalendarEpisode.ImageBitmap == null){
|
|
if (calendarDayCalendarEpisode.AnilistEpisode){
|
|
calendarDayCalendarEpisode.LoadImage(100,150);
|
|
} else{
|
|
calendarDayCalendarEpisode.LoadImage();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
} else{
|
|
foreach (var calendarDay in CalendarDays){
|
|
var episodesCopy = new List<CalendarEpisode>(calendarDay.CalendarEpisodes);
|
|
foreach (var calendarDayCalendarEpisode in episodesCopy){
|
|
if (calendarDayCalendarEpisode.SeasonName != null && HideDubs && calendarDayCalendarEpisode.SeasonName.EndsWith("Dub)")){
|
|
calendarDay.CalendarEpisodes.Remove(calendarDayCalendarEpisode);
|
|
continue;
|
|
}
|
|
|
|
if (calendarDayCalendarEpisode.ImageBitmap == null){
|
|
if (calendarDayCalendarEpisode.AnilistEpisode){
|
|
calendarDayCalendarEpisode.LoadImage(100,150);
|
|
} else{
|
|
calendarDayCalendarEpisode.LoadImage();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private string NextMonday(DateTime currentMonday){
|
|
DateTime nextMonday = currentMonday.AddDays(7);
|
|
return nextMonday.ToString("yyyy-MM-dd");
|
|
}
|
|
|
|
private string PreviousMonday(DateTime currentMonday){
|
|
DateTime nextMonday = currentMonday.AddDays(-7);
|
|
return nextMonday.ToString("yyyy-MM-dd");
|
|
}
|
|
|
|
|
|
[RelayCommand]
|
|
public void Refresh(){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
string mondayDate;
|
|
|
|
if (currentWeek is{ FirstDayOfWeekString: not null }){
|
|
mondayDate = currentWeek.FirstDayOfWeekString;
|
|
} else{
|
|
mondayDate = GetThisWeeksMondayDate();
|
|
}
|
|
|
|
var refreshDate = DateTime.Now;
|
|
if (currentWeek?.FirstDayOfWeek != null){
|
|
refreshDate = currentWeek.FirstDayOfWeek.AddDays(6);
|
|
}
|
|
|
|
LoadCalendar(mondayDate,refreshDate, true);
|
|
}
|
|
|
|
[RelayCommand]
|
|
public void PrevWeek(){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
string mondayDate;
|
|
|
|
if (currentWeek is{ FirstDayOfWeek: var firstDay } && firstDay != DateTime.MinValue){
|
|
mondayDate = PreviousMonday(currentWeek.FirstDayOfWeek);
|
|
} else{
|
|
mondayDate = GetThisWeeksMondayDate();
|
|
}
|
|
|
|
var refreshDate = DateTime.Now;
|
|
if (currentWeek?.FirstDayOfWeek != null){
|
|
refreshDate = currentWeek.FirstDayOfWeek.AddDays(-1);
|
|
}
|
|
|
|
LoadCalendar(mondayDate,refreshDate, false);
|
|
}
|
|
|
|
[RelayCommand]
|
|
public void NextWeek(){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
string mondayDate;
|
|
|
|
if (currentWeek is{ FirstDayOfWeek: var firstDay } && firstDay != DateTime.MinValue){
|
|
mondayDate = NextMonday(currentWeek.FirstDayOfWeek);
|
|
} else{
|
|
mondayDate = GetThisWeeksMondayDate();
|
|
}
|
|
|
|
var refreshDate = DateTime.Now;
|
|
if (currentWeek?.FirstDayOfWeek != null){
|
|
refreshDate = currentWeek.FirstDayOfWeek.AddDays(13);
|
|
}
|
|
|
|
LoadCalendar(mondayDate,refreshDate, false);
|
|
|
|
|
|
}
|
|
|
|
|
|
partial void OnCurrentCalendarLanguageChanged(ComboBoxItem? value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
if (value?.Content != null){
|
|
CrunchyrollManager.Instance.CrunOptions.SelectedCalendarLanguage = value.Content.ToString();
|
|
Refresh();
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
}
|
|
|
|
partial void OnCustomCalendarChanged(bool value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
CrunchyrollManager.Instance.CrunOptions.CustomCalendar = value;
|
|
|
|
LoadCalendar(GetThisWeeksMondayDate(),DateTime.Now, true);
|
|
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
|
|
partial void OnHideDubsChanged(bool value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
CrunchyrollManager.Instance.CrunOptions.CalendarHideDubs = value;
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
|
|
partial void OnFilterByAirDateChanged(bool value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
CrunchyrollManager.Instance.CrunOptions.CalendarFilterByAirDate = value;
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
|
|
partial void OnShowUpcomingEpisodesChanged(bool value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
CrunchyrollManager.Instance.CrunOptions.CalendarShowUpcomingEpisodes = value;
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
|
|
partial void OnCurrentCalendarDubFilterChanged(ComboBoxItem? value){
|
|
if (loading){
|
|
return;
|
|
}
|
|
|
|
if (!string.IsNullOrEmpty(value?.Content + "")){
|
|
CrunchyrollManager.Instance.CrunOptions.CalendarDubFilter = value?.Content + "";
|
|
CfgManager.WriteSettingsToFile();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
} |