This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathIssueListViewModelBase.cs
324 lines (281 loc) · 10.7 KB
/
IssueListViewModelBase.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reactive;
using System.Reactive.Disposables;
using System.Reactive.Linq;
using System.Threading.Tasks;
using System.Windows.Threading;
using GitHub.Collections;
using GitHub.Extensions;
using GitHub.Extensions.Reactive;
using GitHub.Logging;
using GitHub.Models;
using GitHub.Primitives;
using GitHub.Services;
using ReactiveUI;
using Serilog;
namespace GitHub.ViewModels.GitHubPane
{
/// <summary>
/// A view model which implements the functionality common to issue and pull request lists.
/// </summary>
public abstract class IssueListViewModelBase : PanePageViewModelBase, IIssueListViewModelBase
{
static readonly ILogger log = LogManager.ForContext<GitHubPaneViewModel>();
readonly IRepositoryService repositoryService;
IReadOnlyList<IIssueListItemViewModelBase> items;
ICollectionView itemsView;
IDisposable subscription;
IssueListMessage message;
RepositoryModel remoteRepository;
IReadOnlyList<RepositoryModel> forks;
string searchQuery;
string selectedState;
ObservableAsPropertyHelper<string> stateCaption;
string stringFilter;
int numberFilter;
IUserFilterViewModel authorFilter;
/// <summary>
/// Initializes a new instance of the <see cref="IssueListViewModelBase"/> class.
/// </summary>
/// <param name="repositoryService">The repository service.</param>
public IssueListViewModelBase(IRepositoryService repositoryService)
{
this.repositoryService = repositoryService;
OpenItem = ReactiveCommand.CreateFromTask<IIssueListItemViewModelBase>(OpenItemImpl);
stateCaption = this.WhenAnyValue(
x => x.Items.Count,
x => x.SelectedState,
x => x.IsBusy,
x => x.IsLoading,
(count, state, busy, loading) => busy || loading ? state : count + " " + state)
.ToProperty(this, x => x.StateCaption);
}
/// <inheritdoc/>
public IUserFilterViewModel AuthorFilter
{
get { return authorFilter; }
private set { this.RaiseAndSetIfChanged(ref authorFilter, value); }
}
/// <inheritdoc/>
public IReadOnlyList<RepositoryModel> Forks
{
get { return forks; }
set { this.RaiseAndSetIfChanged(ref forks, value); }
}
/// <inheritdoc/>
public IReadOnlyList<IIssueListItemViewModelBase> Items
{
get { return items; }
private set { this.RaiseAndSetIfChanged(ref items, value); }
}
/// <inheritdoc/>
public ICollectionView ItemsView
{
get { return itemsView; }
private set { this.RaiseAndSetIfChanged(ref itemsView, value); }
}
/// <inheritdoc/>
public LocalRepositoryModel LocalRepository { get; private set; }
/// <inheritdoc/>
public IssueListMessage Message
{
get { return message; }
private set { this.RaiseAndSetIfChanged(ref message, value); }
}
/// <inheritdoc/>
public RepositoryModel RemoteRepository
{
get { return remoteRepository; }
set { this.RaiseAndSetIfChanged(ref remoteRepository, value); }
}
/// <inheritdoc/>
public string SearchQuery
{
get { return searchQuery; }
set { this.RaiseAndSetIfChanged(ref searchQuery, value); }
}
/// <inheritdoc/>
public string SelectedState
{
get { return selectedState; }
set { this.RaiseAndSetIfChanged(ref selectedState, value); }
}
/// <inheritdoc/>
public abstract IReadOnlyList<string> States { get; }
/// <inheritdoc/>
public string StateCaption => stateCaption.Value;
/// <inheritdoc/>
public ReactiveCommand<IIssueListItemViewModelBase, Unit> OpenItem { get; }
/// <inheritdoc/>
public async Task InitializeAsync(LocalRepositoryModel repository, IConnection connection)
{
try
{
LocalRepository = repository;
SelectedState = States.FirstOrDefault();
AuthorFilter = new UserFilterViewModel(LoadAuthors);
IsLoading = true;
var parent = await repositoryService.FindParent(
HostAddress.Create(repository.CloneUrl),
repository.Owner,
repository.Name);
if (parent == null)
{
RemoteRepository = repository;
}
else
{
// TODO: Handle forks with different names.
RemoteRepository = new RepositoryModel(
repository.Name,
UriString.ToUriString(repository.CloneUrl.ToRepositoryUrl(parent.Value.owner)));
Forks = new RepositoryModel[]
{
RemoteRepository,
repository,
};
}
this.WhenAnyValue(x => x.SelectedState, x => x.RemoteRepository)
.Skip(1)
.Subscribe(_ => Refresh().Forget());
Observable.Merge(
this.WhenAnyValue(x => x.SearchQuery).Skip(1).SelectUnit(),
AuthorFilter.WhenAnyValue(x => x.Selected).Skip(1).SelectUnit())
.Subscribe(_ => FilterChanged());
await Refresh();
}
catch (Exception ex)
{
Error = ex;
IsLoading = false;
log.Error(ex, "Error initializing IssueListViewModelBase");
}
}
/// <summary>
/// Refreshes the view model.
/// </summary>
/// <returns>A task tracking the operation.</returns>
public override Task Refresh()
{
if (RemoteRepository == null)
{
// If an exception occurred reading the parent repository, do nothing.
return Task.CompletedTask;
}
subscription?.Dispose();
var dispose = new CompositeDisposable();
var itemSource = CreateItemSource();
var items = new VirtualizingList<IIssueListItemViewModelBase>(itemSource, null);
var view = new VirtualizingListCollectionView<IIssueListItemViewModelBase>(items);
view.Filter = FilterItem;
Items = items;
ItemsView = view;
Error = null;
dispose.Add(itemSource);
dispose.Add(
Observable.CombineLatest(
itemSource.WhenAnyValue(x => x.IsLoading),
view.WhenAnyValue(x => x.Count),
this.WhenAnyValue(x => x.SearchQuery),
this.WhenAnyValue(x => x.SelectedState),
this.WhenAnyValue(x => x.AuthorFilter.Selected),
(loading, count, _, __, ___) => Tuple.Create(loading, count))
.ObserveOn(RxApp.MainThreadScheduler)
.Subscribe(x => UpdateState(x.Item1, x.Item2)));
dispose.Add(
Observable.FromEventPattern<ErrorEventArgs>(
x => items.InitializationError += x,
x => items.InitializationError -= x)
.Subscribe(x => Error = x.EventArgs.GetException()));
subscription = dispose;
return Task.CompletedTask;
}
/// <summary>
/// When overridden in a derived class, creates the <see cref="IVirtualizingListSource{T}"/>
/// that will act as the source for <see cref="Items"/>.
/// </summary>
protected abstract IVirtualizingListSource<IIssueListItemViewModelBase> CreateItemSource();
/// <summary>
/// When overridden in a derived class, navigates to the specified item.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>A task tracking the operation.</returns>
protected abstract Task DoOpenItem(IIssueListItemViewModelBase item);
/// <summary>
/// Loads a page of authors for the <see cref="AuthorFilter"/>.
/// </summary>
/// <param name="after">The GraphQL "after" cursor.</param>
/// <returns>A task that returns a page of authors.</returns>
protected abstract Task<Page<ActorModel>> LoadAuthors(string after);
void FilterChanged()
{
if (!string.IsNullOrWhiteSpace(SearchQuery))
{
numberFilter = 0;
int.TryParse(SearchQuery.Substring(SearchQuery.StartsWith('#') ? 1 : 0), out numberFilter);
if (numberFilter == 0)
{
stringFilter = SearchQuery.ToUpperInvariant();
}
}
else
{
stringFilter = null;
numberFilter = 0;
}
ItemsView?.Refresh();
}
bool FilterItem(object o)
{
var item = o as IIssueListItemViewModelBase;
var result = true;
if (!string.IsNullOrWhiteSpace(SearchQuery))
{
if (item != null)
{
if (numberFilter != 0)
{
result = item.Number == numberFilter;
}
else
{
result = item.Title.ToUpperInvariant().Contains(stringFilter);
}
}
}
return result;
}
async Task OpenItemImpl(IIssueListItemViewModelBase item)
{
if (item != null) await DoOpenItem(item);
}
void UpdateState(bool loading, int count)
{
var message = IssueListMessage.None;
if (!loading)
{
if (count == 0)
{
if (SelectedState == States[0] &&
string.IsNullOrWhiteSpace(SearchQuery) &&
AuthorFilter.Selected == null)
{
message = IssueListMessage.NoOpenItems;
}
else
{
message = IssueListMessage.NoItemsMatchCriteria;
}
}
IsLoading = false;
}
IsBusy = loading;
Message = message;
}
}
}