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

34 lines
962 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
using Jellyfin.Extensions;
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
{
2021-10-02 13:23:05 -04:00
/// <summary>
/// Gets the name.
/// </summary>
/// <value>The name.</value>
public string Name => ItemSortBy.Studio;
2014-03-08 13:17:05 -05: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 17:41:28 -05:00
public int Compare(BaseItem? x, BaseItem? y)
2014-03-08 13:17:05 -05:00
{
ArgumentNullException.ThrowIfNull(x);
ArgumentNullException.ThrowIfNull(y);
2019-10-25 06:47:20 -04:00
return AlphanumericComparator.CompareValues(x.Studios.FirstOrDefault(), y.Studios.FirstOrDefault());
2014-03-08 13:17:05 -05:00
}
}
}