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
Expand file tree
/
Copy pathInlineCommentPeekViewModel.cs
More file actions
235 lines (206 loc) · 8.35 KB
/
InlineCommentPeekViewModel.cs
File metadata and controls
235 lines (206 loc) · 8.35 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reactive;
using System.Reactive.Linq;
using System.Threading.Tasks;
using GitHub.Api;
using GitHub.Commands;
using GitHub.Extensions;
using GitHub.Extensions.Reactive;
using GitHub.Factories;
using GitHub.InlineReviews.Commands;
using GitHub.InlineReviews.Peek;
using GitHub.InlineReviews.Services;
using GitHub.Logging;
using GitHub.Models;
using GitHub.Primitives;
using GitHub.Services;
using GitHub.ViewModels;
using Microsoft.VisualStudio.Language.Intellisense;
using Microsoft.VisualStudio.Text;
using ReactiveUI;
using Serilog;
namespace GitHub.InlineReviews.ViewModels
{
/// <summary>
/// Represents the contents of an inline comment peek view displayed in an editor.
/// </summary>
public sealed class InlineCommentPeekViewModel : ReactiveObject, IDisposable
{
static readonly ILogger log = LogManager.ForContext<InlineCommentPeekViewModel>();
readonly IInlineCommentPeekService peekService;
readonly IPeekSession peekSession;
readonly IPullRequestSessionManager sessionManager;
readonly ICommentService commentService;
IPullRequestSession session;
IPullRequestSessionFile file;
ICommentThreadViewModel thread;
IDisposable fileSubscription;
IDisposable sessionSubscription;
IDisposable threadSubscription;
ITrackingPoint triggerPoint;
string relativePath;
DiffSide side;
/// <summary>
/// Initializes a new instance of the <see cref="InlineCommentPeekViewModel"/> class.
/// </summary>
public InlineCommentPeekViewModel(IInlineCommentPeekService peekService,
IPeekSession peekSession,
IPullRequestSessionManager sessionManager,
INextInlineCommentCommand nextCommentCommand,
IPreviousInlineCommentCommand previousCommentCommand,
ICommentService commentService)
{
Guard.ArgumentNotNull(peekService, nameof(peekService));
Guard.ArgumentNotNull(peekSession, nameof(peekSession));
Guard.ArgumentNotNull(sessionManager, nameof(sessionManager));
Guard.ArgumentNotNull(nextCommentCommand, nameof(nextCommentCommand));
Guard.ArgumentNotNull(previousCommentCommand, nameof(previousCommentCommand));
this.peekService = peekService;
this.peekSession = peekSession;
this.sessionManager = sessionManager;
this.commentService = commentService;
triggerPoint = peekSession.GetTriggerPoint(peekSession.TextView.TextBuffer);
peekSession.Dismissed += (s, e) => Dispose();
Close = this.WhenAnyValue(x => x.Thread)
.SelectMany(x => x is NewInlineCommentThreadViewModel
? x.Comments.Single().CancelEdit.SelectUnit()
: Observable.Never<Unit>());
NextComment = ReactiveCommand.CreateAsyncTask(
Observable.Return(nextCommentCommand.Enabled),
_ => nextCommentCommand.Execute(new InlineCommentNavigationParams
{
FromLine = peekService.GetLineNumber(peekSession, triggerPoint).Item1,
}));
PreviousComment = ReactiveCommand.CreateAsyncTask(
Observable.Return(previousCommentCommand.Enabled),
_ => previousCommentCommand.Execute(new InlineCommentNavigationParams
{
FromLine = peekService.GetLineNumber(peekSession, triggerPoint).Item1,
}));
}
/// <summary>
/// Gets the thread of comments to display.
/// </summary>
public ICommentThreadViewModel Thread
{
get { return thread; }
private set { this.RaiseAndSetIfChanged(ref thread, value); }
}
/// <summary>
/// Gets a command which moves to the next inline comment in the file.
/// </summary>
public ReactiveCommand<Unit> NextComment { get; }
/// <summary>
/// Gets a command which moves to the previous inline comment in the file.
/// </summary>
public ReactiveCommand<Unit> PreviousComment { get; }
public IObservable<Unit> Close { get; }
public void Dispose()
{
threadSubscription?.Dispose();
threadSubscription = null;
sessionSubscription?.Dispose();
sessionSubscription = null;
fileSubscription?.Dispose();
fileSubscription = null;
}
public async Task Initialize()
{
var buffer = peekSession.TextView.TextBuffer;
var info = sessionManager.GetTextBufferInfo(buffer);
if (info != null)
{
var commitSha = info.Side == DiffSide.Left ? "HEAD" : info.CommitSha;
relativePath = info.RelativePath;
side = info.Side ?? DiffSide.Right;
file = await info.Session.GetFile(relativePath, commitSha);
session = info.Session;
await UpdateThread();
}
else
{
relativePath = sessionManager.GetRelativePath(buffer);
side = DiffSide.Right;
file = await sessionManager.GetLiveFile(relativePath, peekSession.TextView, buffer);
await SessionChanged(sessionManager.CurrentSession);
sessionSubscription = sessionManager.WhenAnyValue(x => x.CurrentSession)
.Skip(1)
.Subscribe(x => SessionChanged(x).Forget());
}
fileSubscription?.Dispose();
fileSubscription = file.LinesChanged.Subscribe(LinesChanged);
}
async void LinesChanged(IReadOnlyList<Tuple<int, DiffSide>> lines)
{
try
{
var lineNumber = peekService.GetLineNumber(peekSession, triggerPoint).Item1;
if (lines.Contains(Tuple.Create(lineNumber, side)))
{
await UpdateThread();
}
}
catch (Exception e)
{
log.Error(e, "Error updating InlineCommentViewModel");
}
}
async Task UpdateThread()
{
var placeholderBody = GetPlaceholderBodyToPreserve();
Thread = null;
threadSubscription?.Dispose();
if (file == null)
return;
var lineAndLeftBuffer = peekService.GetLineNumber(peekSession, triggerPoint);
var lineNumber = lineAndLeftBuffer.Item1;
var leftBuffer = lineAndLeftBuffer.Item2;
var thread = file.InlineCommentThreads?.FirstOrDefault(x =>
x.LineNumber == lineNumber &&
((leftBuffer && x.DiffLineType == DiffChangeType.Delete) || (!leftBuffer && x.DiffLineType != DiffChangeType.Delete)));
if (thread != null)
{
Thread = new InlineCommentThreadViewModel(commentService, session, thread.Comments);
}
else
{
Thread = new NewInlineCommentThreadViewModel(commentService, session, file, lineNumber, leftBuffer);
}
if (!string.IsNullOrWhiteSpace(placeholderBody))
{
var placeholder = Thread.Comments.LastOrDefault();
if (placeholder?.EditState == CommentEditState.Placeholder)
{
await placeholder.BeginEdit.ExecuteAsync(null);
placeholder.Body = placeholderBody;
}
}
}
async Task SessionChanged(IPullRequestSession pullRequestSession)
{
this.session = pullRequestSession;
if (pullRequestSession == null)
{
Thread = null;
threadSubscription?.Dispose();
threadSubscription = null;
return;
}
else
{
await UpdateThread();
}
}
string GetPlaceholderBodyToPreserve()
{
var lastComment = Thread?.Comments.LastOrDefault();
if (lastComment?.EditState == CommentEditState.Editing)
{
if (!lastComment.IsSubmitting) return lastComment.Body;
}
return null;
}
}
}