2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2023-11-09 21:00:13 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:54:44 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-09-02 23:17:25 +00:00
|
|
|
using MediaBrowser.Controller.Sorting;
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
2016-11-03 06:37:52 +00:00
|
|
|
namespace Emby.Server.Implementations.Sorting
|
2013-09-02 23:17:25 +00:00
|
|
|
{
|
|
|
|
public class IsFolderComparer : IBaseItemComparer
|
|
|
|
{
|
2020-05-29 09:28:19 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
2023-11-09 21:00:13 +00:00
|
|
|
public ItemSortBy Type => ItemSortBy.IsFolder;
|
2020-05-29 09:28:19 +00:00
|
|
|
|
2013-09-02 23:17:25 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Compares the specified x.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="x">The x.</param>
|
|
|
|
/// <param name="y">The y.</param>
|
|
|
|
/// <returns>System.Int32.</returns>
|
2021-05-20 19:28:18 +00:00
|
|
|
public int Compare(BaseItem? x, BaseItem? y)
|
2013-09-02 23:17:25 +00:00
|
|
|
{
|
|
|
|
return GetValue(x).CompareTo(GetValue(y));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the value.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="x">The x.</param>
|
|
|
|
/// <returns>System.String.</returns>
|
2021-05-20 19:28:18 +00:00
|
|
|
private static int GetValue(BaseItem? x)
|
2013-09-02 23:17:25 +00:00
|
|
|
{
|
2021-05-20 19:28:18 +00:00
|
|
|
return x?.IsFolder ?? true ? 0 : 1;
|
2013-09-02 23:17:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|