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

36 lines
959 B
C#
Raw Normal View History

using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
2013-05-06 04:23:19 +02:00
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
2013-05-06 04:23:19 +02:00
{
/// <summary>
/// Class CriticRatingComparer.
2013-05-06 04:23:19 +02:00
/// </summary>
public class CriticRatingComparer : IBaseItemComparer
{
2021-10-02 19:23:05 +02:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public ItemSortBy Type => ItemSortBy.CriticRating;
2021-10-02 19:23:05 +02:00
2013-05-06 04:23:19 +02:00
/// <summary>
/// Compares the specified x.
/// </summary>
/// <param name="x">The x.</param>
/// <param name="y">The y.</param>
/// <returns>System.Int32.</returns>
public int Compare(BaseItem? x, BaseItem? y)
2013-05-06 04:23:19 +02:00
{
2013-09-11 19:54:59 +02:00
return GetValue(x).CompareTo(GetValue(y));
}
private static float GetValue(BaseItem? x)
2013-09-11 19:54:59 +02:00
{
return x?.CriticRating ?? 0;
2013-05-06 04:23:19 +02:00
}
}
}