-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathViewModelListBase.cs
398 lines (330 loc) · 12.3 KB
/
ViewModelListBase.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
using CommunityToolkit.Mvvm.ComponentModel;
using CommunityToolkit.Mvvm.Messaging;
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.Threading;
using System.Threading.Tasks;
using System.Windows.Input;
namespace MvvmScarletToolkit.Observables
{
/// <summary>
/// Collection ViewModelBase wrapping around an <see cref="ObservableCollection"/> that provides methods for threadsafe modification via the dispatcher
/// </summary>
public abstract partial class ViewModelListBase<TViewModel> : ViewModelBase
where TViewModel : class, INotifyPropertyChanged
{
protected readonly ObservableCollection<TViewModel> _items;
[ObservableProperty]
private TViewModel? _selectedItem;
public TViewModel this[int index]
{
get { return _items[index]; }
}
/// <summary>
/// <para>Readonly collection of all the entries managed by this instance</para>
/// <para>Using <see cref="ICollection{TViewModel}.Add"/> on this, will result in a <see cref="NotSupportedException"/></para>
/// </summary>
[Bindable(true, BindingDirection.OneWay)]
public ReadOnlyObservableCollection<TViewModel> Items { get; }
[Bindable(true, BindingDirection.OneWay)]
public ObservableCollection<TViewModel> SelectedItems { get; }
[Bindable(true, BindingDirection.OneWay)]
public int Count => Items.Count;
[Bindable(true, BindingDirection.OneWay)]
public bool HasItems => Items.Count > 0;
[Bindable(true, BindingDirection.OneWay)]
public virtual ICommand ClearCommand { get; }
/// <summary>
/// Removes all instances that are in <see cref="SelectedItems"/> from <see cref="Items"/>
/// </summary>
[Bindable(true, BindingDirection.OneWay)]
public virtual ICommand RemoveRangeCommand { get; }
/// <summary>
/// removes the instance in <see cref="SelectedItem"/> from <see cref="Items"/>
/// </summary>
[Bindable(true, BindingDirection.OneWay)]
public virtual ICommand RemoveCommand { get; }
protected ViewModelListBase(in IScarletCommandBuilder commandBuilder)
: base(commandBuilder)
{
_items = new ObservableCollection<TViewModel>();
SelectedItems = new ObservableCollection<TViewModel>();
Items = new ReadOnlyObservableCollection<TViewModel>(_items);
RemoveCommand = commandBuilder
.Create(Remove, CanRemove)
.WithSingleExecution()
.WithBusyNotification(BusyStack)
.WithAsyncCancellation()
.Build();
RemoveRangeCommand = commandBuilder
.Create(RemoveRange, CanRemoveRange)
.WithSingleExecution()
.WithBusyNotification(BusyStack)
.WithAsyncCancellation()
.Build();
ClearCommand = commandBuilder
.Create(() => Clear(), CanClear)
.WithSingleExecution()
.WithBusyNotification(BusyStack)
.WithAsyncCancellation()
.Build();
PropertyChanging += OnPropertyChanging;
PropertyChanged += OnPropertyChanged;
_items.CollectionChanged += OnCollectionChanged;
SelectedItems.CollectionChanged += OnSelectedItemsCollectionChanged;
}
protected virtual void OnSelectedItemsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
OnSelectionsChanged();
}
protected virtual void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
}
protected virtual void OnPropertyChanged(object sender, PropertyChangedEventArgs e)
{
switch (e.PropertyName)
{
case nameof(SelectedItem):
OnSelectionChanged();
break;
}
}
protected virtual void OnPropertyChanging(object sender, PropertyChangingEventArgs e)
{
switch (e.PropertyName)
{
case nameof(SelectedItem):
OnSelectionChanging();
break;
}
}
/// <summary>
///<para>
/// This method exists for usability reasons, so that one can mdofiy the internal collection from within a constructor where Tasks can't/should't be run.
/// </para>
/// <para>
/// Modify the internal collection synchronously. No checks are being performed here. This method is not threadsafe.
/// </para>
/// </summary>
/// <param name="viewModel">the viewmodel instance to be added</param>
protected void AddUnchecked(TViewModel viewModel)
{
_items.Add(viewModel);
}
public Task Add(TViewModel item)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (item is null)
{
return Task.CompletedTask;
}
return Add(item, CancellationToken.None);
}
public virtual async Task Add(TViewModel item, CancellationToken token)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (item is null)
{
throw new ArgumentNullException(nameof(item));
}
using (BusyStack.GetToken())
{
await Dispatcher.Invoke(() => _items.Add(item), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(Count)), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(HasItems)), token).ConfigureAwait(false);
}
}
public Task AddRange(IEnumerable<TViewModel> items)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
return AddRange(items, CancellationToken.None);
}
public virtual async Task AddRange(IEnumerable<TViewModel> items, CancellationToken token)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (items is null)
{
throw new ArgumentNullException(nameof(items));
}
using (BusyStack.GetToken())
{
await items.ForEachAsync(Add, token).ConfigureAwait(false);
}
}
public Task Remove(TViewModel? item)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (item is null)
{
return Task.CompletedTask;
}
return Remove(item, CancellationToken.None);
}
public virtual async Task Remove(TViewModel item, CancellationToken token)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
using (BusyStack.GetToken())
{
await Dispatcher.Invoke(() => _items.Remove(item), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(Count)), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(HasItems)), token).ConfigureAwait(false);
}
}
public Task RemoveRange(IEnumerable<TViewModel> items)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
return RemoveRange(items, CancellationToken.None);
}
public virtual async Task RemoveRange(IEnumerable<TViewModel> items, CancellationToken token)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (items is null)
{
throw new ArgumentNullException(nameof(items));
}
using (BusyStack.GetToken())
{
await items.ForEachAsync(Remove, token).ConfigureAwait(false);
}
}
public Task Clear()
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
return Clear(CancellationToken.None);
}
public virtual async Task Clear(CancellationToken token)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
using (BusyStack.GetToken())
{
await Dispatcher.Invoke(() => _items.Clear(), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(Count)), token).ConfigureAwait(false);
await Dispatcher.Invoke(() => OnPropertyChanged(nameof(HasItems)), token).ConfigureAwait(false);
}
}
public virtual bool CanClear()
{
return !IsDisposed
&& HasItems
&& !IsBusy;
}
protected Task Remove()
{
return Remove(SelectedItem);
}
private async Task RemoveRange(IList items)
{
using (BusyStack.GetToken())
{
await RemoveRange(items?.Cast<TViewModel>() ?? Enumerable.Empty<TViewModel>()).ConfigureAwait(false);
}
}
protected virtual bool CanRemoveRange(IEnumerable<TViewModel> items)
{
return CanClear()
&& items?.Any(p => _items.Contains(p)) == true;
}
protected bool CanRemoveRange(IList items)
{
return !IsDisposed
&& CanRemoveRange(items?.Cast<TViewModel>() ?? Enumerable.Empty<TViewModel>());
}
protected virtual bool CanRemove(TViewModel? item)
{
if (item is null)
{
return false;
}
return !IsDisposed
&& CanClear()
&& item is not null
&& _items.Contains(item);
}
private bool CanRemove()
{
return CanRemove(SelectedItem);
}
private Task RemoveRange()
{
return RemoveRange((IList)SelectedItems);
}
private bool CanRemoveRange()
{
return CanRemoveRange((IList)SelectedItems);
}
private void OnSelectionChanged()
{
if (IsDisposed)
{
return;
}
Messenger.Send(new ViewModelListBaseSelectionChanged<TViewModel?>(this, SelectedItem));
}
private void OnSelectionChanging()
{
if (IsDisposed)
{
return;
}
Messenger.Send(new ViewModelListBaseSelectionChanging<TViewModel?>(this, SelectedItem));
}
private void OnSelectionsChanged()
{
if (IsDisposed)
{
return;
}
Messenger.Send(new ViewModelListBaseSelectionsChanged<TViewModel>(SelectedItems?.Cast<TViewModel>() ?? Enumerable.Empty<TViewModel>()));
}
protected override async void Dispose(bool disposing)
{
if (IsDisposed)
{
throw new ObjectDisposedException(nameof(ViewModelListBase<TViewModel>));
}
if (disposing)
{
PropertyChanging -= OnPropertyChanging;
PropertyChanged -= OnPropertyChanged;
SelectedItems.CollectionChanged -= OnSelectedItemsCollectionChanged;
await Clear().ConfigureAwait(false);
}
base.Dispose(disposing);
}
}
}