-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathAdvancedCollectionView.cs
795 lines (675 loc) · 25.2 KB
/
AdvancedCollectionView.cs
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Linq;
using System.Reflection;
using System.Runtime.CompilerServices;
using CommunityToolkit.WinUI.Helpers;
using Microsoft.UI.Xaml.Data;
using Windows.Foundation;
using Windows.Foundation.Collections;
using NotifyCollectionChangedAction = global::System.Collections.Specialized.NotifyCollectionChangedAction;
namespace CommunityToolkit.WinUI.UI
{
/// <summary>
/// A collection view implementation that supports filtering, sorting and incremental loading
/// </summary>
public partial class AdvancedCollectionView : IAdvancedCollectionView, INotifyPropertyChanged, ISupportIncrementalLoading, IComparer<object>
{
private readonly List<object> _view;
private readonly ObservableCollection<SortDescription> _sortDescriptions;
private readonly Dictionary<string, PropertyInfo> _sortProperties;
private readonly bool _liveShapingEnabled;
private readonly HashSet<string> _observedFilterProperties = new HashSet<string>();
private IList _source;
private Predicate<object> _filter;
private int _deferCounter;
private WeakEventListener<AdvancedCollectionView, object, NotifyCollectionChangedEventArgs> _sourceWeakEventListener;
/// <summary>
/// Initializes a new instance of the <see cref="AdvancedCollectionView"/> class.
/// </summary>
public AdvancedCollectionView()
: this(new List<object>(0))
{
}
/// <summary>
/// Initializes a new instance of the <see cref="AdvancedCollectionView"/> class.
/// </summary>
/// <param name="source">source IEnumerable</param>
/// <param name="isLiveShaping">Denotes whether or not this ACV should re-filter/re-sort if a PropertyChanged is raised for an observed property.</param>
public AdvancedCollectionView(IList source, bool isLiveShaping = false)
{
_liveShapingEnabled = isLiveShaping;
_view = new List<object>();
_sortDescriptions = new ObservableCollection<SortDescription>();
_sortDescriptions.CollectionChanged += SortDescriptions_CollectionChanged;
_sortProperties = new Dictionary<string, PropertyInfo>();
Source = source;
}
/// <summary>
/// Gets or sets the source
/// </summary>
public IList Source
{
get
{
return _source;
}
set
{
// ReSharper disable once PossibleUnintendedReferenceComparison
if (_source == value)
{
return;
}
if (_source != null)
{
DetachPropertyChangedHandler(_source);
}
_source = value;
AttachPropertyChangedHandler(_source);
_sourceWeakEventListener?.Detach();
if (_source is INotifyCollectionChanged sourceNcc)
{
_sourceWeakEventListener =
new WeakEventListener<AdvancedCollectionView, object, NotifyCollectionChangedEventArgs>(this)
{
// Call the actual collection changed event
OnEventAction = (source, changed, arg3) => SourceNcc_CollectionChanged(source, arg3),
// The source doesn't exist anymore
OnDetachAction = (listener) => sourceNcc.CollectionChanged -= _sourceWeakEventListener.OnEvent
};
sourceNcc.CollectionChanged += _sourceWeakEventListener.OnEvent;
}
HandleSourceChanged();
OnPropertyChanged();
}
}
/// <summary>
/// Manually refresh the view
/// </summary>
public void Refresh()
{
HandleSourceChanged();
}
/// <inheritdoc/>
public void RefreshFilter()
{
HandleFilterChanged();
}
/// <inheritdoc/>
public void RefreshSorting()
{
HandleSortChanged();
}
/// <inheritdoc />
public IEnumerator<object> GetEnumerator() => _view.GetEnumerator();
/// <inheritdoc />
IEnumerator IEnumerable.GetEnumerator() => _view.GetEnumerator();
/// <inheritdoc />
public void Add(object item)
{
if (IsReadOnly)
{
throw new NotSupportedException("Collection is read-only.");
}
_source.Add(item);
}
/// <inheritdoc />
public void Clear()
{
if (IsReadOnly)
{
throw new NotSupportedException("Collection is read-only.");
}
_source.Clear();
}
/// <inheritdoc />
public bool Contains(object item) => _view.Contains(item);
/// <inheritdoc />
public void CopyTo(object[] array, int arrayIndex) => _view.CopyTo(array, arrayIndex);
/// <inheritdoc />
public bool Remove(object item)
{
if (IsReadOnly)
{
throw new NotSupportedException("Collection is read-only.");
}
_source.Remove(item);
return true;
}
/// <inheritdoc />
public int Count => _view.Count;
/// <inheritdoc />
public bool IsReadOnly => _source == null || _source.IsReadOnly;
/// <inheritdoc />
public int IndexOf(object item) => _view.IndexOf(item);
/// <inheritdoc />
public void Insert(int index, object item)
{
if (IsReadOnly)
{
throw new NotSupportedException("Collection is read-only.");
}
_source.Insert(index, item);
}
/// <summary>
/// Removes the <see cref="T:System.Collections.Generic.IList`1"/> item at the specified index.
/// </summary>
/// <param name="index">The zero-based index of the item to remove.</param><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception><exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
public void RemoveAt(int index) => Remove(_view[index]);
/// <summary>
/// Gets or sets the element at the specified index.
/// </summary>
/// <returns>
/// The element at the specified index.
/// </returns>
/// <param name="index">The zero-based index of the element to get or set.</param><exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception><exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
public object this[int index]
{
get { return _view[index]; }
set { _view[index] = value; }
}
/// <summary>
/// Occurs when the vector changes.
/// </summary>
public event Windows.Foundation.Collections.VectorChangedEventHandler<object> VectorChanged;
/// <summary>
/// Move current index to item
/// </summary>
/// <param name="item">item</param>
/// <returns>success of operation</returns>
public bool MoveCurrentTo(object item) => item == CurrentItem || MoveCurrentToIndex(IndexOf(item));
/// <summary>
/// Moves selected item to position
/// </summary>
/// <param name="index">index</param>
/// <returns>success of operation</returns>
public bool MoveCurrentToPosition(int index) => MoveCurrentToIndex(index);
/// <summary>
/// Move current item to first item
/// </summary>
/// <returns>success of operation</returns>
public bool MoveCurrentToFirst() => MoveCurrentToIndex(0);
/// <summary>
/// Move current item to last item
/// </summary>
/// <returns>success of operation</returns>
public bool MoveCurrentToLast() => MoveCurrentToIndex(_view.Count - 1);
/// <summary>
/// Move current item to next item
/// </summary>
/// <returns>success of operation</returns>
public bool MoveCurrentToNext() => MoveCurrentToIndex(CurrentPosition + 1);
/// <summary>
/// Move current item to previous item
/// </summary>
/// <returns>success of operation</returns>
public bool MoveCurrentToPrevious() => MoveCurrentToIndex(CurrentPosition - 1);
/// <summary>
/// Load more items from the source
/// </summary>
/// <param name="count">number of items to load</param>
/// <returns>Async operation of LoadMoreItemsResult</returns>
/// <exception cref="NotImplementedException">Not implemented yet...</exception>
public IAsyncOperation<LoadMoreItemsResult> LoadMoreItemsAsync(uint count)
{
var sil = _source as ISupportIncrementalLoading;
return sil?.LoadMoreItemsAsync(count);
}
/// <summary>
/// Gets the groups in collection
/// </summary>
public IObservableVector<object> CollectionGroups => null;
/// <summary>
/// Gets or sets the current item
/// </summary>
public object CurrentItem
{
get { return CurrentPosition > -1 && CurrentPosition < _view.Count ? _view[CurrentPosition] : null; }
set { MoveCurrentTo(value); }
}
/// <summary>
/// Gets the position of current item
/// </summary>
public int CurrentPosition { get; private set; }
/// <summary>
/// Gets a value indicating whether the source has more items
/// </summary>
public bool HasMoreItems => (_source as ISupportIncrementalLoading)?.HasMoreItems ?? false;
/// <summary>
/// Gets a value indicating whether the current item is after the last visible item
/// </summary>
public bool IsCurrentAfterLast => CurrentPosition >= _view.Count;
/// <summary>
/// Gets a value indicating whether the current item is before the first visible item
/// </summary>
public bool IsCurrentBeforeFirst => CurrentPosition < 0;
/// <summary>
/// Current item changed event handler
/// </summary>
public event EventHandler<object> CurrentChanged;
/// <summary>
/// Current item changing event handler
/// </summary>
public event CurrentChangingEventHandler CurrentChanging;
/// <summary>
/// Gets a value indicating whether this CollectionView can filter its items
/// </summary>
public bool CanFilter => true;
/// <summary>
/// Gets or sets the predicate used to filter the visible items
/// </summary>
public Predicate<object> Filter
{
get
{
return _filter;
}
set
{
if (_filter == value)
{
return;
}
_filter = value;
HandleFilterChanged();
}
}
/// <summary>
/// Gets a value indicating whether this CollectionView can sort its items
/// </summary>
public bool CanSort => true;
/// <summary>
/// Gets SortDescriptions to sort the visible items
/// </summary>
public IList<SortDescription> SortDescriptions => _sortDescriptions;
/*
/// <summary>
/// Gets a value indicating whether this CollectionView can group its items
/// </summary>
public bool CanGroup => false;
/// <summary>
/// Gets GroupDescriptions to group the visible items
/// </summary>
public IList<object> GroupDescriptions => null;
*/
/// <summary>
/// Gets the source collection
/// </summary>
public IEnumerable SourceCollection => _source;
/// <summary>
/// IComparer implementation
/// </summary>
/// <param name="x">Object A</param>
/// <param name="y">Object B</param>
/// <returns>Comparison value</returns>
int IComparer<object>.Compare(object x, object y)
{
if (!_sortProperties.Any())
{
var type = x.GetType();
foreach (var sd in _sortDescriptions)
{
if (!string.IsNullOrEmpty(sd.PropertyName))
{
_sortProperties[sd.PropertyName] = type.GetProperty(sd.PropertyName);
}
}
}
foreach (var sd in _sortDescriptions)
{
object cx, cy;
if (string.IsNullOrEmpty(sd.PropertyName))
{
cx = x;
cy = y;
}
else
{
var pi = _sortProperties[sd.PropertyName];
cx = pi.GetValue(x);
cy = pi.GetValue(y);
}
var cmp = sd.Comparer.Compare(cx, cy);
if (cmp != 0)
{
return sd.Direction == SortDirection.Ascending ? +cmp : -cmp;
}
}
return 0;
}
/// <summary>
/// Occurs when a property value changes.
/// </summary>
public event PropertyChangedEventHandler PropertyChanged;
/// <summary>
/// Property changed event invoker
/// </summary>
/// <param name="propertyName">name of the property that changed</param>
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
/// <inheritdoc/>
public void ObserveFilterProperty(string propertyName)
{
_observedFilterProperties.Add(propertyName);
}
/// <inheritdoc/>
public void ClearObservedFilterProperties()
{
_observedFilterProperties.Clear();
}
private void ItemOnPropertyChanged(object item, PropertyChangedEventArgs e)
{
if (!_liveShapingEnabled)
{
return;
}
var filterResult = _filter?.Invoke(item);
if (filterResult.HasValue && _observedFilterProperties.Contains(e.PropertyName))
{
var viewIndex = _view.IndexOf(item);
if (viewIndex != -1 && !filterResult.Value)
{
RemoveFromView(viewIndex, item);
}
else if (viewIndex == -1 && filterResult.Value)
{
var index = _source.IndexOf(item);
HandleItemAdded(index, item);
}
}
if ((filterResult ?? true) && SortDescriptions.Any(sd => sd.PropertyName == e.PropertyName))
{
var oldIndex = _view.IndexOf(item);
// Check if item is in view:
if (oldIndex < 0)
{
return;
}
_view.RemoveAt(oldIndex);
var targetIndex = _view.BinarySearch(item, this);
if (targetIndex < 0)
{
targetIndex = ~targetIndex;
}
// Only trigger expensive UI updates if the index really changed:
if (targetIndex != oldIndex)
{
OnVectorChanged(new VectorChangedEventArgs(CollectionChange.ItemRemoved, oldIndex, item));
_view.Insert(targetIndex, item);
OnVectorChanged(new VectorChangedEventArgs(CollectionChange.ItemInserted, targetIndex, item));
}
else
{
_view.Insert(targetIndex, item);
}
}
else if (string.IsNullOrEmpty(e.PropertyName))
{
HandleSourceChanged();
}
}
private void AttachPropertyChangedHandler(IEnumerable items)
{
if (!_liveShapingEnabled || items == null)
{
return;
}
foreach (var item in items.OfType<INotifyPropertyChanged>())
{
item.PropertyChanged += ItemOnPropertyChanged;
}
}
private void DetachPropertyChangedHandler(IEnumerable items)
{
if (!_liveShapingEnabled || items == null)
{
return;
}
foreach (var item in items.OfType<INotifyPropertyChanged>())
{
item.PropertyChanged -= ItemOnPropertyChanged;
}
}
private void HandleSortChanged()
{
_sortProperties.Clear();
_view.Sort(this);
_sortProperties.Clear();
OnVectorChanged(new VectorChangedEventArgs(CollectionChange.Reset));
}
private void HandleFilterChanged()
{
if (_filter != null)
{
for (var index = 0; index < _view.Count; index++)
{
var item = _view.ElementAt(index);
if (_filter(item))
{
continue;
}
RemoveFromView(index, item);
index--;
}
}
var viewHash = new HashSet<object>(_view);
var viewIndex = 0;
for (var index = 0; index < _source.Count; index++)
{
var item = _source[index];
if (viewHash.Contains(item))
{
viewIndex++;
continue;
}
if (HandleItemAdded(index, item, viewIndex))
{
viewIndex++;
}
}
}
private void HandleSourceChanged()
{
_sortProperties.Clear();
var currentItem = CurrentItem;
_view.Clear();
foreach (var item in Source)
{
if (_filter != null && !_filter(item))
{
continue;
}
if (_sortDescriptions.Any())
{
var targetIndex = _view.BinarySearch(item, this);
if (targetIndex < 0)
{
targetIndex = ~targetIndex;
}
_view.Insert(targetIndex, item);
}
else
{
_view.Add(item);
}
}
_sortProperties.Clear();
OnVectorChanged(new VectorChangedEventArgs(CollectionChange.Reset));
MoveCurrentTo(currentItem);
}
private void SourceNcc_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
// ReSharper disable once SwitchStatementMissingSomeCases
switch (e.Action)
{
case NotifyCollectionChangedAction.Add:
AttachPropertyChangedHandler(e.NewItems);
if (_deferCounter <= 0)
{
if (e.NewItems?.Count == 1)
{
HandleItemAdded(e.NewStartingIndex, e.NewItems[0]);
}
else
{
HandleSourceChanged();
}
}
break;
case NotifyCollectionChangedAction.Remove:
DetachPropertyChangedHandler(e.OldItems);
if (_deferCounter <= 0)
{
if (e.OldItems?.Count == 1)
{
HandleItemRemoved(e.OldStartingIndex, e.OldItems[0]);
}
else
{
HandleSourceChanged();
}
}
break;
case NotifyCollectionChangedAction.Move:
case NotifyCollectionChangedAction.Replace:
case NotifyCollectionChangedAction.Reset:
if (_deferCounter <= 0)
{
HandleSourceChanged();
}
break;
}
}
private bool HandleItemAdded(int newStartingIndex, object newItem, int? viewIndex = null)
{
if (_filter != null && !_filter(newItem))
{
return false;
}
var newViewIndex = _view.Count;
if (_sortDescriptions.Any())
{
_sortProperties.Clear();
newViewIndex = _view.BinarySearch(newItem, this);
if (newViewIndex < 0)
{
newViewIndex = ~newViewIndex;
}
}
else if (_filter != null)
{
if (_source == null)
{
HandleSourceChanged();
return false;
}
if (newStartingIndex == 0 || _view.Count == 0)
{
newViewIndex = 0;
}
else if (newStartingIndex == _source.Count - 1)
{
newViewIndex = _view.Count - 1;
}
else if (viewIndex.HasValue)
{
newViewIndex = viewIndex.Value;
}
else
{
for (int i = 0, j = 0; i < _source.Count; i++)
{
if (j < _view.Count - 1)
{
if (i == newStartingIndex)
{
newViewIndex = j;
break;
}
if (_view[j] == _source[i])
{
j++;
}
}
else
{
break;
}
}
}
}
_view.Insert(newViewIndex, newItem);
if (newViewIndex <= CurrentPosition)
{
CurrentPosition++;
}
var e = new VectorChangedEventArgs(CollectionChange.ItemInserted, newViewIndex, newItem);
OnVectorChanged(e);
return true;
}
private void HandleItemRemoved(int oldStartingIndex, object oldItem)
{
if (_filter != null && !_filter(oldItem))
{
return;
}
if (oldStartingIndex < 0 || oldStartingIndex >= _view.Count || !Equals(_view[oldStartingIndex], oldItem))
{
oldStartingIndex = _view.IndexOf(oldItem);
}
if (oldStartingIndex < 0)
{
return;
}
RemoveFromView(oldStartingIndex, oldItem);
}
private void RemoveFromView(int itemIndex, object item)
{
_view.RemoveAt(itemIndex);
if (itemIndex <= CurrentPosition)
{
CurrentPosition--;
}
var e = new VectorChangedEventArgs(CollectionChange.ItemRemoved, itemIndex, item);
OnVectorChanged(e);
}
private void SortDescriptions_CollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
if (_deferCounter > 0)
{
return;
}
HandleSortChanged();
}
private bool MoveCurrentToIndex(int i)
{
if (i < -1 || i >= _view.Count)
{
return false;
}
if (i == CurrentPosition)
{
return false;
}
var e = new CurrentChangingEventArgs();
OnCurrentChanging(e);
if (e.Cancel)
{
return false;
}
CurrentPosition = i;
OnCurrentChanged(null);
return true;
}
}
}