Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Helper/TreeHelper.cs
2022-10-16 13:43:23 +08:00

59 lines
2.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Common.Models;
namespace Yi.Framework.Common.Helper
{
public static class TreeHelper
{
public static List<T> SetTree<T>(List<T> list, Action<T> action = null)
{
if (list != null && list.Count > 0)
{
IList<T> result = new List<T>();
long pid = list.Min(m => (m as ITreeModel<T>).ParentId);
IList<T> t = list.Where(m => (m as ITreeModel<T>).ParentId == pid).ToList();
foreach (T model in t)
{
if (action != null)
{
action(model);
}
result.Add(model);
var item = (model as ITreeModel<T>);
IList<T> children = list.Where(m => (m as ITreeModel<T>).ParentId == item.Id).ToList();
if (children.Count > 0)
{
SetTreeChildren(list, children, model, action);
}
}
return result.OrderByDescending(m => (m as ITreeModel<T>).OrderNum).ToList();
}
return null;
}
private static void SetTreeChildren<T>(IList<T> list, IList<T> children, T model, Action<T> action = null)
{
var mm = (model as ITreeModel<T>);
mm.Children = new List<T>();
foreach (T item in children)
{
if (action != null)
{
action(item);
}
mm.Children.Add(item);
var _item = (item as ITreeModel<T>);
IList<T> _children = list.Where(m => (m as ITreeModel<T>).ParentId == _item.Id).ToList();
if (_children.Count > 0)
{
SetTreeChildren(list, _children, item, action);
}
}
mm.Children = mm.Children.OrderByDescending(m => (m as ITreeModel<T>).OrderNum).ToList();
}
}
}