2024-08-21 06:30:01 +00:00
|
|
|
namespace AIStudio.Components;
|
2024-07-13 08:37:57 +00:00
|
|
|
|
|
|
|
public class TreeItemData : ITreeItem
|
|
|
|
{
|
|
|
|
public WorkspaceBranch Branch { get; init; } = WorkspaceBranch.NONE;
|
|
|
|
|
|
|
|
public int Depth { get; init; }
|
|
|
|
|
|
|
|
public string Text { get; init; } = string.Empty;
|
|
|
|
|
2024-08-21 06:30:01 +00:00
|
|
|
public string ShortenedText => this.Text.Length > 30 ? this.Text[..30] + "..." : this.Text;
|
2024-07-13 08:37:57 +00:00
|
|
|
|
|
|
|
public string Icon { get; init; } = string.Empty;
|
|
|
|
|
|
|
|
public TreeItemType Type { get; init; }
|
|
|
|
|
|
|
|
public string Path { get; init; } = string.Empty;
|
|
|
|
|
|
|
|
public bool Expandable { get; init; } = true;
|
|
|
|
|
2024-08-19 18:19:55 +00:00
|
|
|
public DateTimeOffset LastEditTime { get; init; }
|
|
|
|
|
2024-07-24 13:17:45 +00:00
|
|
|
public IReadOnlyCollection<TreeItemData<ITreeItem>> Children { get; init; } = [];
|
2024-07-13 08:37:57 +00:00
|
|
|
}
|