2020-05-29 02:28:19 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:22:24 -07:00
|
|
|
using System;
|
2023-11-09 14:00:13 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-12 13:41:08 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-09-13 13:45:27 -07:00
|
|
|
using MediaBrowser.Controller.Sorting;
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
2016-11-02 23:37:52 -07:00
|
|
|
namespace Emby.Server.Implementations.Sorting
|
2013-09-13 13:45:27 -07:00
|
|
|
{
|
2019-02-15 15:05:14 -07:00
|
|
|
public class SeriesSortNameComparer : IBaseItemComparer
|
2013-09-13 13:45:27 -07:00
|
|
|
{
|
2020-05-29 02:28:19 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
2023-11-09 14:00:13 -07:00
|
|
|
public ItemSortBy Type => ItemSortBy.SeriesSortName;
|
2020-05-29 02:28:19 -07:00
|
|
|
|
2013-09-13 13:45:27 -07:00
|
|
|
/// <summary>
|
|
|
|
/// Compares the specified x.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="x">The x.</param>
|
|
|
|
/// <param name="y">The y.</param>
|
|
|
|
/// <returns>System.Int32.</returns>
|
2023-02-15 15:41:28 -07:00
|
|
|
public int Compare(BaseItem? x, BaseItem? y)
|
2013-09-13 13:45:27 -07:00
|
|
|
{
|
2021-11-15 07:57:07 -07:00
|
|
|
return string.Compare(GetValue(x), GetValue(y), StringComparison.OrdinalIgnoreCase);
|
2013-09-13 13:45:27 -07:00
|
|
|
}
|
|
|
|
|
2023-02-15 15:41:28 -07:00
|
|
|
private static string? GetValue(BaseItem? item)
|
2019-03-13 14:32:52 -07:00
|
|
|
{
|
|
|
|
var hasSeries = item as IHasSeries;
|
|
|
|
return hasSeries?.FindSeriesSortName();
|
|
|
|
}
|
2013-09-13 13:45:27 -07:00
|
|
|
}
|
|
|
|
}
|