-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathTagCollection.cs
More file actions
402 lines (346 loc) · 11.3 KB
/
TagCollection.cs
File metadata and controls
402 lines (346 loc) · 11.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
using System.Collections;
using System.Collections.Generic;
using Avalonia;
using Avalonia.Collections;
using CommunityToolkit.Mvvm.ComponentModel;
namespace SourceGit.ViewModels
{
public class TagToolTip
{
public string Name { get; private set; }
public bool IsAnnotated { get; private set; }
public Models.User Creator { get; private set; }
public string CreatorDateStr { get; private set; }
public string Message { get; private set; }
public TagToolTip(Models.Tag t)
{
Name = t.Name;
IsAnnotated = t.IsAnnotated;
Creator = t.Creator;
CreatorDateStr = t.CreatorDateStr;
Message = t.Message;
}
}
public class TagTreeNode : ObservableObject, ICommitTreeNode
{
public string FullPath { get; private set; }
public int Depth { get; private set; } = 0;
public Models.Tag Tag { get; private set; } = null;
public TagToolTip ToolTip { get; private set; } = null;
public List<TagTreeNode> Children { get; private set; } = [];
public int Counter { get; set; } = 0;
IEnumerable<ICommitTreeNode> ICommitTreeNode.Children => Children;
string ICommitTreeNode.CommitSHA => Tag.SHA;
public bool IsFolder
{
get => Tag == null;
}
public bool IsSelected
{
get;
set;
}
public Models.FilterMode FilterMode
{
get => _filterMode;
set => SetProperty(ref _filterMode, value);
}
public CornerRadius CornerRadius
{
get => _cornerRadius;
set => SetProperty(ref _cornerRadius, value);
}
public bool IsExpanded
{
get => _isExpanded;
set => SetProperty(ref _isExpanded, value);
}
public string TagsCount
{
get => Counter > 0 ? $"({Counter})" : string.Empty;
}
public TagTreeNode(Models.Tag t, int depth)
{
FullPath = t.Name;
Depth = depth;
Tag = t;
ToolTip = new TagToolTip(t);
IsExpanded = false;
}
public TagTreeNode(string path, bool isExpanded, int depth)
{
FullPath = path;
Depth = depth;
IsExpanded = isExpanded;
Counter = 1;
}
public void UpdateFilterMode(Dictionary<string, Models.FilterMode> filters)
{
if (Tag == null)
{
foreach (var child in Children)
child.UpdateFilterMode(filters);
}
else
{
FilterMode = filters.GetValueOrDefault(FullPath, Models.FilterMode.None);
}
}
public static List<TagTreeNode> Build(List<Models.Tag> tags, HashSet<string> expanded)
{
var nodes = new List<TagTreeNode>();
var folders = new Dictionary<string, TagTreeNode>();
foreach (var tag in tags)
{
var sepIdx = tag.Name.IndexOf('/');
if (sepIdx == -1)
{
nodes.Add(new TagTreeNode(tag, 0));
}
else
{
TagTreeNode lastFolder = null;
int depth = 0;
while (sepIdx != -1)
{
var folder = tag.Name.Substring(0, sepIdx);
if (folders.TryGetValue(folder, out var value))
{
lastFolder = value;
lastFolder.Counter++;
}
else if (lastFolder == null)
{
lastFolder = new TagTreeNode(folder, expanded.Contains(folder), depth);
folders.Add(folder, lastFolder);
InsertFolder(nodes, lastFolder);
}
else
{
var cur = new TagTreeNode(folder, expanded.Contains(folder), depth);
folders.Add(folder, cur);
InsertFolder(lastFolder.Children, cur);
lastFolder = cur;
}
depth++;
sepIdx = tag.Name.IndexOf('/', sepIdx + 1);
}
lastFolder?.Children.Add(new TagTreeNode(tag, depth));
}
}
folders.Clear();
return nodes;
}
private static void InsertFolder(List<TagTreeNode> collection, TagTreeNode subFolder)
{
for (int i = 0; i < collection.Count; i++)
{
if (!collection[i].IsFolder)
{
collection.Insert(i, subFolder);
return;
}
}
collection.Add(subFolder);
}
private Models.FilterMode _filterMode = Models.FilterMode.None;
private CornerRadius _cornerRadius = new CornerRadius(4);
private bool _isExpanded = true;
}
public class TagListItem : ObservableObject
{
public Models.Tag Tag
{
get;
set;
}
public bool IsSelected
{
get;
set;
}
public Models.FilterMode FilterMode
{
get => _filterMode;
set => SetProperty(ref _filterMode, value);
}
public TagToolTip ToolTip
{
get;
set;
}
public CornerRadius CornerRadius
{
get => _cornerRadius;
set => SetProperty(ref _cornerRadius, value);
}
private Models.FilterMode _filterMode = Models.FilterMode.None;
private CornerRadius _cornerRadius = new CornerRadius(4);
}
public class TagCollectionAsList
{
public List<TagListItem> TagItems
{
get;
set;
} = [];
public TagCollectionAsList(List<Models.Tag> tags)
{
foreach (var tag in tags)
TagItems.Add(new TagListItem() { Tag = tag, ToolTip = new TagToolTip(tag) });
}
public void ClearSelection()
{
foreach (var item in TagItems)
{
item.IsSelected = false;
item.CornerRadius = new CornerRadius(4);
}
}
public void UpdateSelection(IList selectedItems)
{
var set = new HashSet<string>();
foreach (var item in selectedItems)
{
if (item is TagListItem tagItem)
set.Add(tagItem.Tag.Name);
}
TagListItem last = null;
foreach (var item in TagItems)
{
item.IsSelected = set.Contains(item.Tag.Name);
if (item.IsSelected)
{
if (last is { IsSelected: true })
{
last.CornerRadius = new CornerRadius(last.CornerRadius.TopLeft, 0);
item.CornerRadius = new CornerRadius(0, 4);
}
else
{
item.CornerRadius = new CornerRadius(4);
}
}
else
{
item.CornerRadius = new CornerRadius(4);
}
last = item;
}
}
}
public class TagCollectionAsTree
{
public List<TagTreeNode> Tree
{
get;
set;
} = [];
public AvaloniaList<TagTreeNode> Rows
{
get;
set;
} = [];
public static TagCollectionAsTree Build(List<Models.Tag> tags, TagCollectionAsTree old)
{
var oldExpanded = new HashSet<string>();
if (old != null)
{
foreach (var row in old.Rows)
{
if (row.IsFolder && row.IsExpanded)
oldExpanded.Add(row.FullPath);
}
}
var collection = new TagCollectionAsTree();
collection.Tree = TagTreeNode.Build(tags, oldExpanded);
var rows = new List<TagTreeNode>();
MakeTreeRows(rows, collection.Tree);
collection.Rows.AddRange(rows);
return collection;
}
public void ToggleExpand(TagTreeNode node)
{
node.IsExpanded = !node.IsExpanded;
var rows = Rows;
var depth = node.Depth;
var idx = rows.IndexOf(node);
if (idx == -1)
return;
if (node.IsExpanded)
{
var subrows = new List<TagTreeNode>();
MakeTreeRows(subrows, node.Children);
rows.InsertRange(idx + 1, subrows);
}
else
{
var removeCount = 0;
for (int i = idx + 1; i < rows.Count; i++)
{
var row = rows[i];
if (row.Depth <= depth)
break;
removeCount++;
}
rows.RemoveRange(idx + 1, removeCount);
}
}
public void ClearSelection()
{
foreach (var node in Tree)
ClearSelectionRecursively(node);
}
public void UpdateSelection(IList selectedItems)
{
var set = new HashSet<string>();
foreach (var item in selectedItems)
{
if (item is TagTreeNode node)
set.Add(node.FullPath);
}
TagTreeNode last = null;
foreach (var row in Rows)
{
row.IsSelected = set.Contains(row.FullPath);
if (row.IsSelected)
{
if (last is { IsSelected: true })
{
last.CornerRadius = new CornerRadius(last.CornerRadius.TopLeft, 0);
row.CornerRadius = new CornerRadius(0, 4);
}
else
{
row.CornerRadius = new CornerRadius(4);
}
}
else
{
row.CornerRadius = new CornerRadius(4);
}
last = row;
}
}
private static void MakeTreeRows(List<TagTreeNode> rows, List<TagTreeNode> nodes)
{
foreach (var node in nodes)
{
rows.Add(node);
if (!node.IsExpanded || !node.IsFolder)
continue;
MakeTreeRows(rows, node.Children);
}
}
private static void ClearSelectionRecursively(TagTreeNode node)
{
if (node.IsSelected)
{
node.IsSelected = false;
node.CornerRadius = new CornerRadius(4);
}
foreach (var child in node.Children)
ClearSelectionRecursively(child);
}
}
}