2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Sorting
|
|
|
|
{
|
|
|
|
public static class SortExtensions
|
|
|
|
{
|
2020-03-02 09:34:34 +00:00
|
|
|
private static readonly AlphanumComparator _comparer = new AlphanumComparator();
|
2018-12-27 23:27:57 +00:00
|
|
|
public static IEnumerable<T> OrderByString<T>(this IEnumerable<T> list, Func<T, string> getName)
|
|
|
|
{
|
2020-02-27 11:51:34 +00:00
|
|
|
return list.OrderBy(getName, _comparer);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static IEnumerable<T> OrderByStringDescending<T>(this IEnumerable<T> list, Func<T, string> getName)
|
|
|
|
{
|
2020-02-27 11:51:34 +00:00
|
|
|
return list.OrderByDescending(getName, _comparer);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static IOrderedEnumerable<T> ThenByString<T>(this IOrderedEnumerable<T> list, Func<T, string> getName)
|
|
|
|
{
|
2020-02-27 11:51:34 +00:00
|
|
|
return list.ThenBy(getName, _comparer);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public static IOrderedEnumerable<T> ThenByStringDescending<T>(this IOrderedEnumerable<T> list, Func<T, string> getName)
|
|
|
|
{
|
2020-02-27 11:51:34 +00:00
|
|
|
return list.ThenByDescending(getName, _comparer);
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|