mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Linq;
 | 
						|
using API.Entities;
 | 
						|
using API.Entities.Enums;
 | 
						|
 | 
						|
namespace API.Extensions;
 | 
						|
#nullable enable
 | 
						|
 | 
						|
public static class VolumeListExtensions
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Selects the first Volume to get the cover image from. For a book with only a special, the special will be returned.
 | 
						|
    /// If there are both specials and non-specials, then the first non-special will be returned.
 | 
						|
    /// </summary>
 | 
						|
    /// <param name="volumes"></param>
 | 
						|
    /// <param name="seriesFormat"></param>
 | 
						|
    /// <returns></returns>
 | 
						|
    public static Volume? GetCoverImage(this IList<Volume> volumes, MangaFormat seriesFormat)
 | 
						|
    {
 | 
						|
        if (volumes == null) throw new ArgumentException("Volumes cannot be null");
 | 
						|
 | 
						|
        if (seriesFormat == MangaFormat.Epub || seriesFormat == MangaFormat.Pdf)
 | 
						|
        {
 | 
						|
            return volumes.MinBy(x => x.Number);
 | 
						|
        }
 | 
						|
 | 
						|
 | 
						|
        if (volumes.Any(x => x.Number != 0))
 | 
						|
        {
 | 
						|
            return volumes.OrderBy(x => x.Number).FirstOrDefault(x => x.Number != 0);
 | 
						|
        }
 | 
						|
 | 
						|
        // We only have 1 volume of chapters, we need to be cautious if there are specials, as we don't want to order them first
 | 
						|
        return volumes.MinBy(x => x.Number);
 | 
						|
    }
 | 
						|
}
 |