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

41 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using System.Linq;
using MediaBrowser.Controller.Entities;
2014-03-08 13:17:05 -05:00
using MediaBrowser.Controller.Sorting;
using MediaBrowser.Model.Querying;
namespace Emby.Server.Implementations.Sorting
2014-03-08 13:17:05 -05:00
{
public class StudioComparer : IBaseItemComparer
{
/// <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)
{
if (x == null)
2019-10-25 06:47:20 -04:00
{
throw new ArgumentNullException(nameof(x));
2019-10-25 06:47:20 -04:00
}
if (y == null)
2019-10-25 06:47:20 -04:00
{
throw new ArgumentNullException(nameof(y));
2019-10-25 06:47:20 -04:00
}
2014-03-08 13:17:05 -05:00
return AlphanumComparator.CompareValues(x.Studios.FirstOrDefault() ?? string.Empty, y.Studios.FirstOrDefault() ?? string.Empty);
}
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.Studio;
2014-03-08 13:17:05 -05:00
}
}