jellyfin/Emby.Server.Implementations/Sorting/SeriesSortNameComparer.cs

36 lines
1011 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2019-01-12 20:41:08 +00:00
using MediaBrowser.Controller.Entities;
2013-09-13 20:45:27 +00:00
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
2013-09-13 20:45:27 +00:00
{
public class SeriesSortNameComparer : IBaseItemComparer
2013-09-13 20:45:27 +00:00
{
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.SeriesSortName;
2013-09-13 20:45:27 +00: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 22:41:28 +00:00
public int Compare(BaseItem? x, BaseItem? y)
2013-09-13 20:45:27 +00:00
{
2021-11-15 14:57:07 +00:00
return string.Compare(GetValue(x), GetValue(y), StringComparison.OrdinalIgnoreCase);
2013-09-13 20:45:27 +00:00
}
2023-02-15 22:41:28 +00:00
private static string? GetValue(BaseItem? item)
2019-03-13 21:32:52 +00:00
{
var hasSeries = item as IHasSeries;
return hasSeries?.FindSeriesSortName();
}
2013-09-13 20:45:27 +00:00
}
}