Added VirtualPagedList that doesn't require full list to calculate pagination...
6d40505f
Pedro Silva
committed
succeeded
6 changed files
D20Tek.Common.xml
/D20Tek.Common/D20Tek.Common.xml-1+29
/D20Tek.Common/D20Tek.Common.xml
Add comment 21 </member>
Add comment 22 <member name="T:D20Tek.Common.Collections.PagedList`1">
Add comment 23 <summary>
Add comment 24 Minus   Base class that represents a list that can be separated into different pages
Add comment 24 Plus   Class that represents a list that can be separated into different pages
Add comment 25 and each page queried individually.
Add comment 26 </summary>
Add comment 27 <typeparam name="T">Type of element in the list.</typeparam>
Add comment 240 <param name="index">Index of element to get.</param>
Add comment 241 <returns>Element at specified index.</returns>
Add comment 242 </member>
Add comment 243 Plus   <member name="T:D20Tek.Common.DataTypes.Collections.VirtualPagedList`1">
Add comment 244 Plus   <summary>
Add comment 245 Plus   Class that represents a list that has been separated into different pages.
Add comment 246 Plus   This is a virtual list and only keeps the list for the current page.
Add comment 247 Plus   Maintains all of the pagination information (but not all of the items).
Add comment 248 Plus   </summary>
Add comment 249 Plus   <typeparam name="T">Type of element in the list.</typeparam>
Add comment 250 Plus   </member>
Add comment 251 Plus   <member name="M:D20Tek.Common.DataTypes.Collections.VirtualPagedList`1.#ctor(System.Linq.IQueryable{`0},System.Int32,System.Int32,System.Int32,System.Int32)">
Add comment 252 Plus   <summary>
Add comment 253 Plus   Initializes a new instance of the <see cref="T:D20Tek.Common.DataTypes.Collections.VirtualPagedList`1"/> class.
Add comment 254 Plus   </summary>
Add comment 255 Plus   <param name="pageList">The list of items of this page.</param>
Add comment 256 Plus   <param name="pageNumber">Initial page number.</param>
Add comment 257 Plus   <param name="pageSize">Initial page size.</param>
Add comment 258 Plus   <param name="totalItemCount">Total item count.</param>
Add comment 259 Plus   <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 260 Plus   </member>
Add comment 261 Plus   <member name="M:D20Tek.Common.DataTypes.Collections.VirtualPagedList`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Int32,System.Int32,System.Int32,System.Int32)">
Add comment 262 Plus   <summary>
Add comment 263 Plus   Initializes a new instance of the <see cref="T:D20Tek.Common.DataTypes.Collections.VirtualPagedList`1"/> class.
Add comment 264 Plus   </summary>
Add comment 265 Plus   <param name="pageList">The full list for pagination.</param>
Add comment 266 Plus   <param name="pageNumber">Initial page number.</param>
Add comment 267 Plus   <param name="pageSize">Initial page size.</param>
Add comment 268 Plus   <param name="totalItemCount">Total item count.</param>
Add comment 269 Plus   <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 270 Plus   </member>
Add comment 243 271 <member name="T:D20Tek.Common.DataTypes.NamedElement`1">
Add comment 244 272 <summary>
Add comment 245 273 Base model class for elements with ids, names, and descriptions.
PagedList.cs
/D20Tek.Common.Shared/DataTypes/Collections/PagedList.cs-1+1
/D20Tek.Common.Shared/DataTypes/Collections/PagedList.cs
Add comment 13 namespace D20Tek.Common.Collections
Add comment 14 {
Add comment 15 /// <summary>
Add comment 16 Minus   /// Base class that represents a list that can be separated into different pages
Add comment 16 Plus   /// Class that represents a list that can be separated into different pages
Add comment 17 /// and each page queried individually.
Add comment 18 /// </summary>
Add comment 19 /// <typeparam name="T">Type of element in the list.</typeparam>
VirtualPagedList.cs
/D20Tek.Common.Shared/DataTypes/Collections/VirtualPagedList.cs+68
/D20Tek.Common.Shared/DataTypes/Collections/VirtualPagedList.cs
Add comment 1 Plus  //-----------------------------------------------------------------------
Add comment 2 Plus  // <copyright file="VirtualPagedList.cs" company="DarthPedro">
Add comment 3 Plus  // Copyright (c) 2020 DarthPedro. All rights reserved.
Add comment 4 Plus  // </copyright>
Add comment 5 Plus  //-----------------------------------------------------------------------
Add comment 6 Plus  // <summary>
Add comment 7 Plus  // This project is licensed under the MIT license.
Add comment 8 Plus  // </summary>
Add comment 9 Plus  //-----------------------------------------------------------------------
Add comment 10 Plus  using D20Tek.Common.Collections;
Add comment 11 Plus  using System;
Add comment 12 Plus  using System.Collections.Generic;
Add comment 13 Plus  using System.Linq;
Add comment 14 Plus  
Add comment 15 Plus  namespace D20Tek.Common.DataTypes.Collections
Add comment 16 Plus  {
Add comment 17 Plus   /// <summary>
Add comment 18 Plus   /// Class that represents a list that has been separated into different pages.
Add comment 19 Plus   /// This is a virtual list and only keeps the list for the current page.
Add comment 20 Plus   /// Maintains all of the pagination information (but not all of the items).
Add comment 21 Plus   /// </summary>
Add comment 22 Plus   /// <typeparam name="T">Type of element in the list.</typeparam>
Add comment 23 Plus   public class VirtualPagedList<T> : PagedListBase<T>
Add comment 24 Plus   {
Add comment 25 Plus   private const int DefaultMaxVisiblePages = 5;
Add comment 26 Plus  
Add comment 27 Plus   /// <summary>
Add comment 28 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 29 Plus   /// </summary>
Add comment 30 Plus   /// <param name="pageList">The list of items of this page.</param>
Add comment 31 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 32 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 33 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 34 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 35 Plus   public VirtualPagedList(IQueryable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 36 Plus   : base(pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 37 Plus   {
Add comment 38 Plus   if (pageList == null)
Add comment 39 Plus   {
Add comment 40 Plus   throw new ArgumentNullException(nameof(pageList));
Add comment 41 Plus   }
Add comment 42 Plus  
Add comment 43 Plus   if (pageList.Count() > pageSize)
Add comment 44 Plus   {
Add comment 45 Plus   throw new ArgumentOutOfRangeException(nameof(pageList));
Add comment 46 Plus   }
Add comment 47 Plus  
Add comment 48 Plus   if (this.TotalItemCount > 0)
Add comment 49 Plus   {
Add comment 50 Plus   this.PagedView.AddRange(pageList);
Add comment 51 Plus   }
Add comment 52 Plus   }
Add comment 53 Plus  
Add comment 54 Plus   /// <summary>
Add comment 55 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 56 Plus   /// </summary>
Add comment 57 Plus   /// <param name="pageList">The full list for pagination.</param>
Add comment 58 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 59 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 60 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 61 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 62 Plus   public VirtualPagedList(IEnumerable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 63 Plus   : this(pageList.AsQueryable<T>(), pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 64 Plus   {
Add comment 65 Plus   }
Add comment 66 Plus   }
Add comment 67 Plus  }
Add comment 68 Plus  
D20Tek.Common.Shared.projitems
/D20Tek.Common.Shared/D20Tek.Common.Shared.projitems+1
/D20Tek.Common.Shared/D20Tek.Common.Shared.projitems
Add comment 12 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\Collections\PagedList.cs" />
Add comment 13 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\Collections\PagedListBase.cs" />
Add comment 14 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\Collections\PagedListExtensions.cs" />
Add comment 15 Plus   <Compile Include="$(MSBuildThisFileDirectory)DataTypes\Collections\VirtualPagedList.cs" />
Add comment 15 16 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\DiceNotation\DiceResult.cs" />
Add comment 16 17 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\DiceNotation\DiceResultConverter.cs" />
Add comment 17 18 <Compile Include="$(MSBuildThisFileDirectory)DataTypes\DiceNotation\IDice.cs" />
D20Tek.Common.Standard.xml
/D20Tek.Common.Standard/D20Tek.Common.Standard.xml+68
/D20Tek.Common.Standard/D20Tek.Common.Standard.xml
Add comment 1 Plus  //-----------------------------------------------------------------------
Add comment 2 Plus  // <copyright file="VirtualPagedList.cs" company="DarthPedro">
Add comment 3 Plus  // Copyright (c) 2020 DarthPedro. All rights reserved.
Add comment 4 Plus  // </copyright>
Add comment 5 Plus  //-----------------------------------------------------------------------
Add comment 6 Plus  // <summary>
Add comment 7 Plus  // This project is licensed under the MIT license.
Add comment 8 Plus  // </summary>
Add comment 9 Plus  //-----------------------------------------------------------------------
Add comment 10 Plus  using D20Tek.Common.Collections;
Add comment 11 Plus  using System;
Add comment 12 Plus  using System.Collections.Generic;
Add comment 13 Plus  using System.Linq;
Add comment 14 Plus  
Add comment 15 Plus  namespace D20Tek.Common.DataTypes.Collections
Add comment 16 Plus  {
Add comment 17 Plus   /// <summary>
Add comment 18 Plus   /// Class that represents a list that has been separated into different pages.
Add comment 19 Plus   /// This is a virtual list and only keeps the list for the current page.
Add comment 20 Plus   /// Maintains all of the pagination information (but not all of the items).
Add comment 21 Plus   /// </summary>
Add comment 22 Plus   /// <typeparam name="T">Type of element in the list.</typeparam>
Add comment 23 Plus   public class VirtualPagedList<T> : PagedListBase<T>
Add comment 24 Plus   {
Add comment 25 Plus   private const int DefaultMaxVisiblePages = 5;
Add comment 26 Plus  
Add comment 27 Plus   /// <summary>
Add comment 28 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 29 Plus   /// </summary>
Add comment 30 Plus   /// <param name="pageList">The list of items of this page.</param>
Add comment 31 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 32 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 33 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 34 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 35 Plus   public VirtualPagedList(IQueryable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 36 Plus   : base(pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 37 Plus   {
Add comment 38 Plus   if (pageList == null)
Add comment 39 Plus   {
Add comment 40 Plus   throw new ArgumentNullException(nameof(pageList));
Add comment 41 Plus   }
Add comment 42 Plus  
Add comment 43 Plus   if (pageList.Count() > pageSize)
Add comment 44 Plus   {
Add comment 45 Plus   throw new ArgumentOutOfRangeException(nameof(pageList));
Add comment 46 Plus   }
Add comment 47 Plus  
Add comment 48 Plus   if (this.TotalItemCount > 0)
Add comment 49 Plus   {
Add comment 50 Plus   this.PagedView.AddRange(pageList);
Add comment 51 Plus   }
Add comment 52 Plus   }
Add comment 53 Plus  
Add comment 54 Plus   /// <summary>
Add comment 55 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 56 Plus   /// </summary>
Add comment 57 Plus   /// <param name="pageList">The full list for pagination.</param>
Add comment 58 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 59 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 60 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 61 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 62 Plus   public VirtualPagedList(IEnumerable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 63 Plus   : this(pageList.AsQueryable<T>(), pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 64 Plus   {
Add comment 65 Plus   }
Add comment 66 Plus   }
Add comment 67 Plus  }
Add comment 68 Plus  
VirtualPagedListTests.cs
/D20Tek.Common.UnitTests/DataTypes/Collections/VirtualPagedListTests.cs+68
/D20Tek.Common.UnitTests/DataTypes/Collections/VirtualPagedListTests.cs
Add comment 1 Plus  //-----------------------------------------------------------------------
Add comment 2 Plus  // <copyright file="VirtualPagedList.cs" company="DarthPedro">
Add comment 3 Plus  // Copyright (c) 2020 DarthPedro. All rights reserved.
Add comment 4 Plus  // </copyright>
Add comment 5 Plus  //-----------------------------------------------------------------------
Add comment 6 Plus  // <summary>
Add comment 7 Plus  // This project is licensed under the MIT license.
Add comment 8 Plus  // </summary>
Add comment 9 Plus  //-----------------------------------------------------------------------
Add comment 10 Plus  using D20Tek.Common.Collections;
Add comment 11 Plus  using System;
Add comment 12 Plus  using System.Collections.Generic;
Add comment 13 Plus  using System.Linq;
Add comment 14 Plus  
Add comment 15 Plus  namespace D20Tek.Common.DataTypes.Collections
Add comment 16 Plus  {
Add comment 17 Plus   /// <summary>
Add comment 18 Plus   /// Class that represents a list that has been separated into different pages.
Add comment 19 Plus   /// This is a virtual list and only keeps the list for the current page.
Add comment 20 Plus   /// Maintains all of the pagination information (but not all of the items).
Add comment 21 Plus   /// </summary>
Add comment 22 Plus   /// <typeparam name="T">Type of element in the list.</typeparam>
Add comment 23 Plus   public class VirtualPagedList<T> : PagedListBase<T>
Add comment 24 Plus   {
Add comment 25 Plus   private const int DefaultMaxVisiblePages = 5;
Add comment 26 Plus  
Add comment 27 Plus   /// <summary>
Add comment 28 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 29 Plus   /// </summary>
Add comment 30 Plus   /// <param name="pageList">The list of items of this page.</param>
Add comment 31 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 32 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 33 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 34 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 35 Plus   public VirtualPagedList(IQueryable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 36 Plus   : base(pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 37 Plus   {
Add comment 38 Plus   if (pageList == null)
Add comment 39 Plus   {
Add comment 40 Plus   throw new ArgumentNullException(nameof(pageList));
Add comment 41 Plus   }
Add comment 42 Plus  
Add comment 43 Plus   if (pageList.Count() > pageSize)
Add comment 44 Plus   {
Add comment 45 Plus   throw new ArgumentOutOfRangeException(nameof(pageList));
Add comment 46 Plus   }
Add comment 47 Plus  
Add comment 48 Plus   if (this.TotalItemCount > 0)
Add comment 49 Plus   {
Add comment 50 Plus   this.PagedView.AddRange(pageList);
Add comment 51 Plus   }
Add comment 52 Plus   }
Add comment 53 Plus  
Add comment 54 Plus   /// <summary>
Add comment 55 Plus   /// Initializes a new instance of the <see cref="VirtualPagedList{T}"/> class.
Add comment 56 Plus   /// </summary>
Add comment 57 Plus   /// <param name="pageList">The full list for pagination.</param>
Add comment 58 Plus   /// <param name="pageNumber">Initial page number.</param>
Add comment 59 Plus   /// <param name="pageSize">Initial page size.</param>
Add comment 60 Plus   /// <param name="totalItemCount">Total item count.</param>
Add comment 61 Plus   /// <param name="maxVisiblePages">Maximum number of visible pages. Defaults to 5.</param>
Add comment 62 Plus   public VirtualPagedList(IEnumerable<T> pageList, int pageNumber, int pageSize, int totalItemCount, int maxVisiblePages = DefaultMaxVisiblePages)
Add comment 63 Plus   : this(pageList.AsQueryable<T>(), pageNumber, pageSize, totalItemCount, maxVisiblePages)
Add comment 64 Plus   {
Add comment 65 Plus   }
Add comment 66 Plus   }
Add comment 67 Plus  }
Add comment 68 Plus