mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Threading.Tasks;
 | |
| using Microsoft.EntityFrameworkCore;
 | |
| 
 | |
| namespace API.Helpers;
 | |
| #nullable enable
 | |
| 
 | |
| public class PagedList<T> : List<T>
 | |
| {
 | |
|     private PagedList(IEnumerable<T> items, int count, int pageNumber, int pageSize)
 | |
|     {
 | |
|         CurrentPage = pageNumber;
 | |
|         TotalPages = (int) Math.Ceiling(count / (double) pageSize);
 | |
|         PageSize = pageSize;
 | |
|         TotalCount = count;
 | |
|         AddRange(items);
 | |
|     }
 | |
| 
 | |
|     public int CurrentPage { get; set; }
 | |
|     public int TotalPages { get; set; }
 | |
|     public int PageSize { get; set; }
 | |
|     public int TotalCount { get; set; }
 | |
| 
 | |
|     public static async Task<PagedList<T>> CreateAsync(IQueryable<T> source, int pageNumber, int pageSize)
 | |
|     {
 | |
|         // NOTE: OrderBy warning being thrown here even if query has the orderby statement
 | |
|         var count = await source.CountAsync();
 | |
|         var items = await source.Skip((pageNumber - 1) * pageSize).Take(pageSize).ToListAsync();
 | |
|         return new PagedList<T>(items, count, pageNumber, pageSize);
 | |
|     }
 | |
| }
 |