Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve reviewing PR UX #19612

Merged
merged 13 commits into from
May 7, 2022
18 changes: 17 additions & 1 deletion routers/web/repo/pull.go
Original file line number Diff line number Diff line change
Expand Up @@ -753,11 +753,27 @@ func ViewPullFiles(ctx *context.Context) {
if ctx.Written() {
return
}
ctx.Data["CurrentReview"], err = models.GetCurrentReview(ctx.Doer, issue)

currentReview, err := models.GetCurrentReview(ctx.Doer, issue)
if err != nil && !models.IsErrReviewNotExist(err) {
ctx.ServerError("GetCurrentReview", err)
return
}
numPendingCodeComments := int64(0)
if currentReview != nil {
numPendingCodeComments, err = models.CountComments(&models.FindCommentsOptions{
Type: models.CommentTypeCode,
ReviewID: currentReview.ID,
IssueID: issue.ID,
})
if err != nil {
ctx.ServerError("CountComments", err)
return
}
}
ctx.Data["CurrentReview"] = currentReview
ctx.Data["PendingCodeComments"] = numPendingCodeComments
Gusted marked this conversation as resolved.
Show resolved Hide resolved

getBranchData(ctx, issue)
ctx.Data["IsIssuePoster"] = ctx.IsSigned && issue.IsPoster(ctx.Doer.ID)
ctx.Data["HasIssuesOrPullsWritePermission"] = ctx.Repo.CanWriteIssuesOrPulls(issue.IsPull)
Expand Down
2 changes: 1 addition & 1 deletion templates/repo/diff/comments.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<div class="comment-header-right actions df ac">
{{if and .Review}}
{{if eq .Review.Type 0}}
<div class="ui label basic small yellow">
<div class="ui label basic small yellow pending-label">
{{$.root.i18n.Tr "repo.issues.review.pending"}}
</div>
{{else}}
Expand Down
1 change: 1 addition & 0 deletions templates/repo/diff/new_review.tmpl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<div class="ui top right pointing dropdown custom" id="review-box">
<div class="ui tiny green button btn-review">
{{.i18n.Tr "repo.diff.review"}}
<span class="ui small label review-comments-counter" {{if eq .PendingCodeComments 0}}style="display: none"{{end}}>{{if gt .PendingCodeComments 0}}{{.PendingCodeComments}}{{end}}</span>
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
</div>
<div class="menu review-box">
Expand Down
18 changes: 18 additions & 0 deletions web_src/js/features/repo-diff.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ const {csrfToken} = window.config;
export function initRepoDiffReviewButton() {
$(document).on('click', 'button[name="is_review"]', (e) => {
$(e.target).closest('form').append('<input type="hidden" name="is_review" value="true">');

// Watch for the form's submit event.
e.target.closest('form').addEventListener('submit', () => {
// Set a zero-timeout, so this would be executed after the network request has finished.
setTimeout(() => {
const commentCounter = document.querySelector('#review-box .review-comments-counter');
// Remove the display: none.
commentCounter.style.display = '';
// Increase counter by one, in case it's the first review, parseInt will return `NaN`
// and default back to '1'.
commentCounter.textContent = parseInt(commentCounter.textContent) + 1 || '1';
Gusted marked this conversation as resolved.
Show resolved Hide resolved
Gusted marked this conversation as resolved.
Show resolved Hide resolved

// Make the review-box to do a little pulse.
document.querySelector('#review-box').classList.add('pulse');
Gusted marked this conversation as resolved.
Show resolved Hide resolved
// Remove the pulse class once it's done.
setTimeout(() => document.querySelector('#review-box').classList.remove('pulse'), 2500);
Gusted marked this conversation as resolved.
Show resolved Hide resolved
});
});
});
}

Expand Down
13 changes: 13 additions & 0 deletions web_src/js/features/repo-issue.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,19 @@ export function initRepoIssueCommentDelete() {
_csrf: csrfToken,
}).done(() => {
const $conversationHolder = $this.closest('.conversation-holder');

// Check if this was a pending comment.
if ($conversationHolder.find('.pending-label').length) {
// This is a pending comment.
const commentCounter = document.querySelector('#review-box .review-comments-counter');
// Decrease the counter by one.
commentCounter.textContent = parseInt(commentCounter.textContent) - 1;
Gusted marked this conversation as resolved.
Show resolved Hide resolved
// If no pending comments remains, don't show the counter.
if (commentCounter.textContent === '0') {
commentCounter.style.display = 'none';
}
}
Gusted marked this conversation as resolved.
Show resolved Hide resolved

$(`#${$this.data('comment-id')}`).remove();
if ($conversationHolder.length && !$conversationHolder.find('.comment').length) {
const path = $conversationHolder.data('path');
Expand Down
9 changes: 9 additions & 0 deletions web_src/less/_review.less
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,15 @@ a.blob-excerpt:hover {
border: none !important;
}

#review-box .review-comments-counter {
background-color: var(--color-primary-light-4);
color: #fff;
}

#review-box:hover .review-comments-counter {
background-color: var(--color-primary-light-5);
}

.pull.files.diff [id] {
scroll-margin-top: 99px;

Expand Down
16 changes: 16 additions & 0 deletions web_src/less/animations.less
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,19 @@
opacity: 0;
}
}

@keyframes pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.8);
}
100% {
transform: scale(1);
}
}

.pulse {
animation: pulse 2s linear;
}