@in-the-loop-labs/pair-review 3.0.3 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin-code-critic/.claude-plugin/plugin.json +1 -1
- package/public/css/pr.css +9 -0
- package/public/js/components/ReviewModal.js +2 -2
- package/public/js/modules/comment-manager.js +149 -75
- package/public/js/modules/comment-minimizer.js +1 -1
- package/public/js/modules/file-comment-manager.js +3 -7
- package/public/js/modules/suggestion-manager.js +10 -2
- package/public/js/pr.js +97 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@in-the-loop-labs/pair-review",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Your AI-powered code review partner - Close the feedback loop with AI coding agents",
|
|
5
5
|
"main": "src/server.js",
|
|
6
6
|
"bin": {
|
|
@@ -77,6 +77,7 @@
|
|
|
77
77
|
"@playwright/test": "^1.57.0",
|
|
78
78
|
"@vitest/coverage-v8": "^4.0.16",
|
|
79
79
|
"highlight.js": "^11.11.1",
|
|
80
|
+
"jsdom": "^29.0.1",
|
|
80
81
|
"supertest": "^7.1.4",
|
|
81
82
|
"vitest": "^4.0.16"
|
|
82
83
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pair-review",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "pair-review app integration — Open PRs and local changes in the pair-review web UI, run server-side AI analysis, and address review feedback. Requires the pair-review MCP server.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "in-the-loop-labs",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-critic",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "AI-powered code review analysis — Run three-level AI analysis and implement-review-fix loops directly in your coding agent. Works standalone, no server required.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "in-the-loop-labs",
|
package/public/css/pr.css
CHANGED
|
@@ -10881,6 +10881,15 @@ body.resizing * {
|
|
|
10881
10881
|
/* File-level AI suggestions now use the same classes as line-level (.ai-suggestion-*)
|
|
10882
10882
|
No custom button styles needed - they inherit from .ai-action classes defined earlier */
|
|
10883
10883
|
|
|
10884
|
+
/* File-level AI suggestions: override line-level viewport-based max-width.
|
|
10885
|
+
Line-level suggestions use calc(100vw - sidebar - panels) because they sit in table cells.
|
|
10886
|
+
File-level suggestions sit inside .file-comments-container which is already correctly sized,
|
|
10887
|
+
so they just need to fill their container. */
|
|
10888
|
+
.file-comment-card.ai-suggestion {
|
|
10889
|
+
max-width: 100%;
|
|
10890
|
+
margin: 0; /* Container handles spacing via gap; don't center with auto margins */
|
|
10891
|
+
}
|
|
10892
|
+
|
|
10884
10893
|
/* File-level AI suggestion collapsed state - uses same classes as line-level */
|
|
10885
10894
|
.file-comment-card.ai-suggestion.collapsed {
|
|
10886
10895
|
background: var(--color-bg-secondary, #f6f8fa);
|
|
@@ -371,7 +371,7 @@ class ReviewModal {
|
|
|
371
371
|
*/
|
|
372
372
|
updateCommentCount() {
|
|
373
373
|
// Count both line-level comments (.user-comment-row) and file-level comments (.file-comment-card.user-comment)
|
|
374
|
-
const lineComments = document.querySelectorAll('.user-comment-row').length;
|
|
374
|
+
const lineComments = document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)').length;
|
|
375
375
|
const fileComments = document.querySelectorAll('.file-comment-card.user-comment').length;
|
|
376
376
|
const userComments = lineComments + fileComments;
|
|
377
377
|
const countElement = this.modal.querySelector('.review-comment-count');
|
|
@@ -470,7 +470,7 @@ class ReviewModal {
|
|
|
470
470
|
const reviewEvent = selectedOption ? selectedOption.value : 'COMMENT';
|
|
471
471
|
// Count BOTH line-level (.user-comment-row) and file-level (.file-comment-card.user-comment) comments
|
|
472
472
|
// This must match the counting logic in updateCommentCount() for consistency
|
|
473
|
-
const lineComments = document.querySelectorAll('.user-comment-row').length;
|
|
473
|
+
const lineComments = document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)').length;
|
|
474
474
|
const fileComments = document.querySelectorAll('.file-comment-card.user-comment').length;
|
|
475
475
|
const commentCount = lineComments + fileComments;
|
|
476
476
|
|
|
@@ -580,12 +580,8 @@ class CommentManager {
|
|
|
580
580
|
|
|
581
581
|
// Choose icon based on comment origin (AI-adopted vs user-originated)
|
|
582
582
|
const commentIcon = comment.parent_id
|
|
583
|
-
?
|
|
584
|
-
|
|
585
|
-
</svg>`
|
|
586
|
-
: `<svg class="octicon octicon-person" viewBox="0 0 16 16" width="16" height="16">
|
|
587
|
-
<path d="M10.561 8.073a6.005 6.005 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6.004 6.004 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0ZM10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z"/>
|
|
588
|
-
</svg>`;
|
|
583
|
+
? CommentManager.AI_ICON_SVG
|
|
584
|
+
: CommentManager.PERSON_ICON_SVG;
|
|
589
585
|
|
|
590
586
|
// Build class list for comment styling
|
|
591
587
|
const baseClasses = ['user-comment'];
|
|
@@ -634,56 +630,51 @@ class CommentManager {
|
|
|
634
630
|
targetRow.parentNode.insertBefore(commentRow, targetRow.nextSibling);
|
|
635
631
|
}
|
|
636
632
|
|
|
633
|
+
/** SVG icons for comment origin display */
|
|
634
|
+
static AI_ICON_SVG = `<svg class="octicon octicon-comment-ai" viewBox="0 0 16 16" width="16" height="16">
|
|
635
|
+
<path d="M7.75 1a.75.75 0 0 1 0 1.5h-5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2c.199 0 .39.079.53.22.141.14.22.331.22.53v2.19l2.72-2.72a.747.747 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-2a.75.75 0 0 1 1.5 0v2c0 .464-.184.909-.513 1.237A1.746 1.746 0 0 1 13.25 12H9.06l-2.573 2.573A1.457 1.457 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25v-7.5C1 1.784 1.784 1 2.75 1h5Zm4.519-.837a.248.248 0 0 1 .466 0l.238.648a3.726 3.726 0 0 0 2.218 2.219l.649.238a.249.249 0 0 1 0 .467l-.649.238a3.725 3.725 0 0 0-2.218 2.218l-.238.649a.248.248 0 0 1-.466 0l-.239-.649a3.725 3.725 0 0 0-2.218-2.218l-.649-.238a.249.249 0 0 1 0-.467l.649-.238A3.726 3.726 0 0 0 12.03.811l.239-.648Z"/>
|
|
636
|
+
</svg>`;
|
|
637
|
+
|
|
638
|
+
static PERSON_ICON_SVG = `<svg class="octicon octicon-person" viewBox="0 0 16 16" width="16" height="16">
|
|
639
|
+
<path d="M10.561 8.073a6.005 6.005 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6.004 6.004 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0ZM10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z"/>
|
|
640
|
+
</svg>`;
|
|
641
|
+
|
|
637
642
|
/**
|
|
638
|
-
*
|
|
639
|
-
*
|
|
640
|
-
*
|
|
643
|
+
* Shared builder for comment/suggestion edit form rows.
|
|
644
|
+
* Builds the DOM, inserts after targetRow, wires common event handling
|
|
645
|
+
* (autoResize, emoji, suggestion button), and returns { formRow, textarea, saveBtn, cancelBtn }.
|
|
646
|
+
* Callers wire their own save/cancel logic on the returned elements.
|
|
647
|
+
* NOTE: similar edit form in pr.js editUserComment — keep in sync
|
|
648
|
+
* @private
|
|
641
649
|
*/
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
if (comment.side) {
|
|
651
|
-
commentRow.dataset.side = comment.side;
|
|
652
|
-
}
|
|
650
|
+
_buildEditFormRow(targetRow, {
|
|
651
|
+
rowClassName, rowDataset, iconHtml, originClass, lineInfo,
|
|
652
|
+
type, title, body, bodyHtml, textareaId, placeholder,
|
|
653
|
+
dataAttrs, saveLabel
|
|
654
|
+
}) {
|
|
655
|
+
const formRow = document.createElement('tr');
|
|
656
|
+
formRow.className = rowClassName;
|
|
657
|
+
Object.assign(formRow.dataset, rowDataset);
|
|
653
658
|
|
|
654
659
|
const td = document.createElement('td');
|
|
655
660
|
td.colSpan = 4;
|
|
656
661
|
td.className = 'user-comment-cell';
|
|
657
662
|
|
|
658
|
-
const lineInfo = comment.line_end && comment.line_end !== comment.line_start
|
|
659
|
-
? `Lines ${comment.line_start}-${comment.line_end}`
|
|
660
|
-
: `Line ${comment.line_start}`;
|
|
661
|
-
|
|
662
663
|
const escapeHtml = this.prManager?.escapeHtml?.bind(this.prManager) || ((s) => s);
|
|
663
664
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
? `<svg class="octicon octicon-comment-ai" viewBox="0 0 16 16" width="16" height="16">
|
|
667
|
-
<path d="M7.75 1a.75.75 0 0 1 0 1.5h-5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2c.199 0 .39.079.53.22.141.14.22.331.22.53v2.19l2.72-2.72a.747.747 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-2a.75.75 0 0 1 1.5 0v2c0 .464-.184.909-.513 1.237A1.746 1.746 0 0 1 13.25 12H9.06l-2.573 2.573A1.457 1.457 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25v-7.5C1 1.784 1.784 1 2.75 1h5Zm4.519-.837a.248.248 0 0 1 .466 0l.238.648a3.726 3.726 0 0 0 2.218 2.219l.649.238a.249.249 0 0 1 0 .467l-.649.238a3.725 3.725 0 0 0-2.218 2.218l-.238.649a.248.248 0 0 1-.466 0l-.239-.649a3.725 3.725 0 0 0-2.218-2.218l-.649-.238a.249.249 0 0 1 0-.467l.649-.238A3.726 3.726 0 0 0 12.03.811l.239-.648Z"/>
|
|
668
|
-
</svg>`
|
|
669
|
-
: `<svg class="octicon octicon-person" viewBox="0 0 16 16" width="16" height="16">
|
|
670
|
-
<path d="M10.561 8.073a6.005 6.005 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6.004 6.004 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0ZM10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z"/>
|
|
671
|
-
</svg>`;
|
|
672
|
-
|
|
673
|
-
const commentHTML = `
|
|
674
|
-
<div class="user-comment editing-mode ${comment.parent_id ? 'adopted-comment comment-ai-origin' : 'comment-user-origin'}">
|
|
665
|
+
const html = `
|
|
666
|
+
<div class="user-comment editing-mode ${originClass}">
|
|
675
667
|
<div class="user-comment-header">
|
|
676
668
|
<div class="user-comment-header-left">
|
|
677
669
|
<span class="comment-origin-icon">
|
|
678
|
-
${
|
|
670
|
+
${iconHtml}
|
|
679
671
|
</span>
|
|
680
672
|
<span class="user-comment-line-info">${lineInfo}</span>
|
|
681
|
-
${
|
|
682
|
-
${
|
|
673
|
+
${type === 'praise' ? `<span class="adopted-praise-badge" title="Nice Work"><svg viewBox="0 0 16 16" width="12" height="12"><path d="M8 .25a.75.75 0 01.673.418l1.882 3.815 4.21.612a.75.75 0 01.416 1.279l-3.046 2.97.719 4.192a.75.75 0 01-1.088.791L8 12.347l-3.766 1.98a.75.75 0 01-1.088-.79l.72-4.194L.818 6.374a.75.75 0 01.416-1.28l4.21-.611L7.327.668A.75.75 0 018 .25z"/></svg>Nice Work</span>` : ''}
|
|
674
|
+
${title ? `<span class="adopted-title">${escapeHtml(title)}</span>` : ''}
|
|
683
675
|
</div>
|
|
684
676
|
</div>
|
|
685
|
-
|
|
686
|
-
<div class="user-comment-body" style="display: none;" data-original-markdown="${window.escapeHtmlAttribute(comment.body)}">${window.renderMarkdown ? window.renderMarkdown(comment.body) : escapeHtml(comment.body)}</div>
|
|
677
|
+
${bodyHtml || ''}
|
|
687
678
|
<div class="user-comment-edit-form">
|
|
688
679
|
<div class="comment-form-toolbar">
|
|
689
680
|
<button type="button" class="btn btn-sm suggestion-btn" title="Insert a suggestion (Ctrl+G)">
|
|
@@ -691,71 +682,55 @@ class CommentManager {
|
|
|
691
682
|
</button>
|
|
692
683
|
</div>
|
|
693
684
|
<textarea
|
|
694
|
-
id="
|
|
685
|
+
${textareaId ? `id="${textareaId}"` : ''}
|
|
695
686
|
class="comment-edit-textarea"
|
|
696
|
-
placeholder="
|
|
697
|
-
data-file="${
|
|
698
|
-
data-line="${
|
|
699
|
-
data-line-end="${
|
|
700
|
-
data-side="${
|
|
701
|
-
>${escapeHtml(
|
|
687
|
+
placeholder="${placeholder}"
|
|
688
|
+
data-file="${window.escapeHtmlAttribute ? window.escapeHtmlAttribute(dataAttrs.file) : dataAttrs.file}"
|
|
689
|
+
data-line="${dataAttrs.line}"
|
|
690
|
+
data-line-end="${dataAttrs.lineEnd}"
|
|
691
|
+
data-side="${dataAttrs.side}"
|
|
692
|
+
>${escapeHtml(body)}</textarea>
|
|
702
693
|
<div class="comment-edit-actions">
|
|
703
|
-
<button class="btn btn-sm btn-primary save-edit-btn">
|
|
704
|
-
|
|
705
|
-
</button>
|
|
706
|
-
<button class="btn btn-sm btn-secondary cancel-edit-btn">
|
|
707
|
-
Cancel
|
|
708
|
-
</button>
|
|
694
|
+
<button class="btn btn-sm btn-primary save-edit-btn">${saveLabel}</button>
|
|
695
|
+
<button class="btn btn-sm btn-secondary cancel-edit-btn">Cancel</button>
|
|
709
696
|
</div>
|
|
710
697
|
</div>
|
|
711
698
|
</div>
|
|
712
699
|
`;
|
|
713
700
|
|
|
714
|
-
td.innerHTML =
|
|
715
|
-
|
|
701
|
+
td.innerHTML = html;
|
|
702
|
+
formRow.appendChild(td);
|
|
716
703
|
|
|
717
|
-
// Insert comment immediately after the target row (suggestion row)
|
|
718
704
|
if (targetRow.nextSibling) {
|
|
719
|
-
targetRow.parentNode.insertBefore(
|
|
705
|
+
targetRow.parentNode.insertBefore(formRow, targetRow.nextSibling);
|
|
720
706
|
} else {
|
|
721
|
-
targetRow.parentNode.appendChild(
|
|
707
|
+
targetRow.parentNode.appendChild(formRow);
|
|
722
708
|
}
|
|
723
709
|
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
const suggestionBtn =
|
|
728
|
-
const saveBtn =
|
|
729
|
-
const cancelBtn =
|
|
710
|
+
const textarea = textareaId
|
|
711
|
+
? document.getElementById(textareaId)
|
|
712
|
+
: formRow.querySelector('.comment-edit-textarea');
|
|
713
|
+
const suggestionBtn = formRow.querySelector('.suggestion-btn');
|
|
714
|
+
const saveBtn = formRow.querySelector('.save-edit-btn');
|
|
715
|
+
const cancelBtn = formRow.querySelector('.cancel-edit-btn');
|
|
730
716
|
|
|
731
717
|
if (textarea) {
|
|
732
|
-
// Auto-resize to fit content
|
|
733
718
|
this.autoResizeTextarea(textarea);
|
|
734
|
-
|
|
735
719
|
textarea.focus();
|
|
736
|
-
// Position cursor at end of text instead of selecting all
|
|
737
720
|
textarea.setSelectionRange(textarea.value.length, textarea.value.length);
|
|
738
721
|
|
|
739
|
-
// Attach emoji picker for autocomplete
|
|
740
722
|
if (window.emojiPicker) {
|
|
741
723
|
window.emojiPicker.attach(textarea);
|
|
742
724
|
}
|
|
743
725
|
|
|
744
|
-
// Update suggestion button state based on content
|
|
745
726
|
this.updateSuggestionButtonState(textarea, suggestionBtn);
|
|
746
727
|
|
|
747
|
-
// Suggestion button handler
|
|
748
728
|
suggestionBtn.addEventListener('click', () => {
|
|
749
729
|
if (!suggestionBtn.disabled) {
|
|
750
730
|
this.insertSuggestionBlock(textarea, suggestionBtn);
|
|
751
731
|
}
|
|
752
732
|
});
|
|
753
733
|
|
|
754
|
-
// Save/cancel handlers - use prManager methods for consistency
|
|
755
|
-
saveBtn.addEventListener('click', () => this.prManager?.saveEditedUserComment(comment.id));
|
|
756
|
-
cancelBtn.addEventListener('click', () => this.prManager?.cancelEditUserComment(comment.id));
|
|
757
|
-
|
|
758
|
-
// Auto-resize on input and update suggestion button state
|
|
759
734
|
textarea.addEventListener('input', () => {
|
|
760
735
|
this.autoResizeTextarea(textarea);
|
|
761
736
|
this.updateSuggestionButtonState(textarea, suggestionBtn);
|
|
@@ -764,6 +739,105 @@ class CommentManager {
|
|
|
764
739
|
// Keyboard shortcuts (Escape, Cmd/Ctrl+Enter) are handled by delegated
|
|
765
740
|
// event listener in setupCommentFormDelegation() to avoid memory leaks
|
|
766
741
|
}
|
|
742
|
+
|
|
743
|
+
return { formRow, textarea, saveBtn, cancelBtn };
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* Display a user comment in edit mode (for adopted suggestions)
|
|
748
|
+
* @param {Object} comment - Comment data
|
|
749
|
+
* @param {HTMLElement} targetRow - Row to insert after
|
|
750
|
+
*/
|
|
751
|
+
displayUserCommentInEditMode(comment, targetRow) {
|
|
752
|
+
const lineInfo = comment.line_end && comment.line_end !== comment.line_start
|
|
753
|
+
? `Lines ${comment.line_start}-${comment.line_end}`
|
|
754
|
+
: `Line ${comment.line_start}`;
|
|
755
|
+
|
|
756
|
+
const escapeHtml = this.prManager?.escapeHtml?.bind(this.prManager) || ((s) => s);
|
|
757
|
+
const bodyHtml = `<div class="user-comment-body" style="display: none;" data-original-markdown="${window.escapeHtmlAttribute(comment.body)}">${window.renderMarkdown ? window.renderMarkdown(comment.body) : escapeHtml(comment.body)}</div>`;
|
|
758
|
+
|
|
759
|
+
const rowDataset = { commentId: comment.id, file: comment.file, lineStart: comment.line_start, lineEnd: comment.line_end || comment.line_start };
|
|
760
|
+
if (comment.side) rowDataset.side = comment.side;
|
|
761
|
+
|
|
762
|
+
const { saveBtn, cancelBtn } = this._buildEditFormRow(targetRow, {
|
|
763
|
+
rowClassName: 'user-comment-row',
|
|
764
|
+
rowDataset,
|
|
765
|
+
iconHtml: comment.parent_id ? CommentManager.AI_ICON_SVG : CommentManager.PERSON_ICON_SVG,
|
|
766
|
+
originClass: comment.parent_id ? 'adopted-comment comment-ai-origin' : 'comment-user-origin',
|
|
767
|
+
lineInfo,
|
|
768
|
+
type: comment.type,
|
|
769
|
+
title: comment.title,
|
|
770
|
+
body: comment.body,
|
|
771
|
+
bodyHtml,
|
|
772
|
+
textareaId: `edit-comment-${comment.id}`,
|
|
773
|
+
placeholder: 'Enter your comment...',
|
|
774
|
+
dataAttrs: {
|
|
775
|
+
file: comment.file,
|
|
776
|
+
line: comment.line_start,
|
|
777
|
+
lineEnd: comment.line_end || comment.line_start,
|
|
778
|
+
side: comment.side || 'RIGHT'
|
|
779
|
+
},
|
|
780
|
+
saveLabel: 'Save'
|
|
781
|
+
});
|
|
782
|
+
|
|
783
|
+
saveBtn.addEventListener('click', () => this.prManager?.saveEditedUserComment(comment.id));
|
|
784
|
+
cancelBtn.addEventListener('click', () => this.prManager?.cancelEditUserComment(comment.id));
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* Display an edit form for an AI suggestion that has NOT yet been adopted.
|
|
789
|
+
* Nothing is saved until the user clicks Save/Adopt.
|
|
790
|
+
* @param {Object} suggestion - { id, body, type, title, file, lineNumber, diffPosition, side }
|
|
791
|
+
* @param {HTMLElement} targetRow - The suggestion row to insert the form after
|
|
792
|
+
* @param {Function} onSave - Called with (editedText) when user clicks Save
|
|
793
|
+
* @param {Function} onCancel - Called when user clicks Cancel
|
|
794
|
+
*/
|
|
795
|
+
displaySuggestionEditForm(suggestion, targetRow, onSave, onCancel) {
|
|
796
|
+
// Remove any existing pending edit form (prevents stale multi-form state)
|
|
797
|
+
const existing = document.querySelector('.suggestion-edit-pending');
|
|
798
|
+
if (existing) existing.remove();
|
|
799
|
+
|
|
800
|
+
const { formRow, saveBtn, cancelBtn } = this._buildEditFormRow(targetRow, {
|
|
801
|
+
rowClassName: 'user-comment-row suggestion-edit-pending',
|
|
802
|
+
rowDataset: { suggestionId: suggestion.id },
|
|
803
|
+
iconHtml: CommentManager.AI_ICON_SVG,
|
|
804
|
+
originClass: 'adopted-comment comment-ai-origin',
|
|
805
|
+
lineInfo: suggestion.lineEnd && suggestion.lineEnd !== suggestion.lineNumber
|
|
806
|
+
? `Lines ${suggestion.lineNumber}-${suggestion.lineEnd}`
|
|
807
|
+
: `Line ${suggestion.lineNumber}`,
|
|
808
|
+
type: suggestion.type,
|
|
809
|
+
title: suggestion.title,
|
|
810
|
+
body: suggestion.body,
|
|
811
|
+
placeholder: 'Edit the suggestion...',
|
|
812
|
+
dataAttrs: {
|
|
813
|
+
file: suggestion.file,
|
|
814
|
+
line: suggestion.lineNumber,
|
|
815
|
+
lineEnd: suggestion.lineEnd || suggestion.lineNumber,
|
|
816
|
+
side: suggestion.side || 'RIGHT'
|
|
817
|
+
},
|
|
818
|
+
saveLabel: 'Save'
|
|
819
|
+
});
|
|
820
|
+
|
|
821
|
+
saveBtn.addEventListener('click', async () => {
|
|
822
|
+
const textarea = formRow.querySelector('.comment-edit-textarea');
|
|
823
|
+
const text = textarea?.value.trim();
|
|
824
|
+
if (text) {
|
|
825
|
+
saveBtn.disabled = true;
|
|
826
|
+
try {
|
|
827
|
+
await onSave(text);
|
|
828
|
+
formRow.remove();
|
|
829
|
+
} catch (err) {
|
|
830
|
+
saveBtn.disabled = false;
|
|
831
|
+
}
|
|
832
|
+
}
|
|
833
|
+
});
|
|
834
|
+
|
|
835
|
+
cancelBtn.addEventListener('click', () => {
|
|
836
|
+
formRow.remove();
|
|
837
|
+
onCancel();
|
|
838
|
+
});
|
|
839
|
+
|
|
840
|
+
return formRow;
|
|
767
841
|
}
|
|
768
842
|
}
|
|
769
843
|
|
|
@@ -17,7 +17,7 @@ class CommentMinimizer {
|
|
|
17
17
|
/** Sparkles icon SVG (matches AI suggestion badge) */
|
|
18
18
|
static SPARKLES_ICON = `<svg viewBox="0 0 16 16" width="14" height="14" fill="currentColor"><path d="M9.6 2.279a.426.426 0 0 1 .8 0l.407 1.112a6.386 6.386 0 0 0 3.802 3.802l1.112.407a.426.426 0 0 1 0 .8l-1.112.407a6.386 6.386 0 0 0-3.802 3.802l-.407 1.112a.426.426 0 0 1-.8 0l-.407-1.112a6.386 6.386 0 0 0-3.802-3.802L4.279 8.4a.426.426 0 0 1 0-.8l1.112-.407a6.386 6.386 0 0 0 3.802-3.802L9.6 2.279Zm-4.267 8.837a.178.178 0 0 1 .334 0l.169.464a2.662 2.662 0 0 0 1.584 1.584l.464.169a.178.178 0 0 1 0 .334l-.464.169a2.662 2.662 0 0 0-1.584 1.584l-.169.464a.178.178 0 0 1-.334 0l-.169-.464a2.662 2.662 0 0 0-1.584-1.584l-.464-.169a.178.178 0 0 1 0-.334l.464-.169a2.662 2.662 0 0 0 1.584-1.584l.169-.464ZM2.8.14a.213.213 0 0 1 .4 0l.203.556a3.2 3.2 0 0 0 1.901 1.901l.556.203a.213.213 0 0 1 0 .4l-.556.203a3.2 3.2 0 0 0-1.901 1.901L3.2 5.86a.213.213 0 0 1-.4 0l-.203-.556A3.2 3.2 0 0 0 .696 3.403L.14 3.2a.213.213 0 0 1 0-.4l.556-.203A3.2 3.2 0 0 0 2.597.696L2.8.14Z"/></svg>`;
|
|
19
19
|
|
|
20
|
-
/** AI comment icon SVG — speech bubble with sparkles (
|
|
20
|
+
/** AI comment icon SVG — speech bubble with sparkles (matches CommentManager.AI_ICON_SVG, different size) */
|
|
21
21
|
static AI_COMMENT_ICON = `<svg viewBox="0 0 16 16" width="14" height="14" fill="currentColor"><path d="M7.75 1a.75.75 0 0 1 0 1.5h-5a.25.25 0 0 0-.25.25v7.5c0 .138.112.25.25.25h2c.199 0 .39.079.53.22.141.14.22.331.22.53v2.19l2.72-2.72a.747.747 0 0 1 .53-.22h4.5a.25.25 0 0 0 .25-.25v-2a.75.75 0 0 1 1.5 0v2c0 .464-.184.909-.513 1.237A1.746 1.746 0 0 1 13.25 12H9.06l-2.573 2.573A1.457 1.457 0 0 1 4 13.543V12H2.75A1.75 1.75 0 0 1 1 10.25v-7.5C1 1.784 1.784 1 2.75 1h5Zm4.519-.837a.248.248 0 0 1 .466 0l.238.648a3.726 3.726 0 0 0 2.218 2.219l.649.238a.249.249 0 0 1 0 .467l-.649.238a3.725 3.725 0 0 0-2.218 2.218l-.238.649a.248.248 0 0 1-.466 0l-.239-.649a3.725 3.725 0 0 0-2.218-2.218l-.649-.238a.249.249 0 0 1 0-.467l.649-.238A3.726 3.726 0 0 0 12.03.811l.239-.648Z"/></svg>`;
|
|
22
22
|
|
|
23
23
|
constructor() {
|
|
@@ -357,12 +357,8 @@ class FileCommentManager {
|
|
|
357
357
|
|
|
358
358
|
// Choose icon based on comment origin (AI-adopted vs user-originated) - matches line-level
|
|
359
359
|
const commentIcon = isAIOrigin
|
|
360
|
-
?
|
|
361
|
-
|
|
362
|
-
</svg>`
|
|
363
|
-
: `<svg class="octicon octicon-person" viewBox="0 0 16 16" width="16" height="16">
|
|
364
|
-
<path d="M10.561 8.073a6.005 6.005 0 0 1 3.432 5.142.75.75 0 1 1-1.498.07 4.5 4.5 0 0 0-8.99 0 .75.75 0 0 1-1.498-.07 6.004 6.004 0 0 1 3.431-5.142 3.999 3.999 0 1 1 5.123 0ZM10.5 5a2.5 2.5 0 1 0-5 0 2.5 2.5 0 0 0 5 0Z"/>
|
|
365
|
-
</svg>`;
|
|
360
|
+
? window.CommentManager.AI_ICON_SVG
|
|
361
|
+
: window.CommentManager.PERSON_ICON_SVG;
|
|
366
362
|
|
|
367
363
|
// Praise badge for "Nice Work" comments - matches line-level
|
|
368
364
|
const praiseBadge = comment.type === 'praise'
|
|
@@ -746,7 +742,7 @@ class FileCommentManager {
|
|
|
746
742
|
data-file="${window.escapeHtmlAttribute(suggestion.file)}"
|
|
747
743
|
>${this.escapeHtml(suggestion.formattedBody || suggestion.body)}</textarea>
|
|
748
744
|
<div class="file-comment-form-footer">
|
|
749
|
-
<button class="file-comment-form-btn submit submit-btn">
|
|
745
|
+
<button class="file-comment-form-btn submit submit-btn">Save</button>
|
|
750
746
|
<button class="file-comment-form-btn cancel cancel-btn">Cancel</button>
|
|
751
747
|
</div>
|
|
752
748
|
`;
|
|
@@ -433,6 +433,7 @@ class SuggestionManager {
|
|
|
433
433
|
// Store original markdown body for adopt functionality
|
|
434
434
|
// Use JSON.stringify to preserve newlines and special characters
|
|
435
435
|
suggestionDiv.dataset.originalBody = JSON.stringify(suggestion.body || '');
|
|
436
|
+
suggestionDiv.dataset.formattedBody = JSON.stringify(suggestion.formattedBody || '');
|
|
436
437
|
|
|
437
438
|
// Store target info on the suggestion div for reliable retrieval in getFileAndLineInfo
|
|
438
439
|
// This avoids fragile DOM traversal that fails when gap rows are between suggestion and target
|
|
@@ -445,6 +446,9 @@ class SuggestionManager {
|
|
|
445
446
|
suggestionDiv.dataset.isFileLevel = targetInfo.isFileLevel ? 'true' : 'false';
|
|
446
447
|
}
|
|
447
448
|
|
|
449
|
+
// Store line_end from the suggestion itself (may differ from targetInfo.lineNumber for multi-line suggestions)
|
|
450
|
+
suggestionDiv.dataset.lineEnd = suggestion.line_end !== undefined ? String(suggestion.line_end) : (targetInfo?.lineNumber !== undefined ? String(targetInfo.lineNumber) : '');
|
|
451
|
+
|
|
448
452
|
// Convert suggestion.id to number for comparison since parent_id might be a number
|
|
449
453
|
const suggestionIdNum = parseInt(suggestion.id);
|
|
450
454
|
|
|
@@ -526,7 +530,7 @@ class SuggestionManager {
|
|
|
526
530
|
<svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z"></path></svg>
|
|
527
531
|
Adopt
|
|
528
532
|
</button>
|
|
529
|
-
<button class="ai-action ai-action-edit" onclick="prManager.
|
|
533
|
+
<button class="ai-action ai-action-edit" onclick="prManager.editAndAdoptSuggestion(${suggestion.id})">
|
|
530
534
|
<svg viewBox="0 0 16 16" width="16" height="16"><path fill-rule="evenodd" d="M11.013 1.427a1.75 1.75 0 012.474 0l1.086 1.086a1.75 1.75 0 010 2.474l-8.61 8.61c-.21.21-.47.364-.756.445l-3.251.93a.75.75 0 01-.927-.928l.929-3.25a1.75 1.75 0 01.445-.758l8.61-8.61zm1.414 1.06a.25.25 0 00-.354 0L10.811 3.75l1.439 1.44 1.263-1.263a.25.25 0 000-.354l-1.086-1.086zM11.189 6.25L9.75 4.81l-6.286 6.287a.25.25 0 00-.064.108l-.558 1.953 1.953-.558a.249.249 0 00.108-.064l6.286-6.286z"></path></svg>
|
|
531
535
|
Edit
|
|
532
536
|
</button>
|
|
@@ -556,6 +560,8 @@ class SuggestionManager {
|
|
|
556
560
|
extractSuggestionData(suggestionDiv) {
|
|
557
561
|
const suggestionText = suggestionDiv.dataset?.originalBody ?
|
|
558
562
|
JSON.parse(suggestionDiv.dataset.originalBody) : '';
|
|
563
|
+
const formattedBody = suggestionDiv.dataset?.formattedBody ?
|
|
564
|
+
JSON.parse(suggestionDiv.dataset.formattedBody) : '';
|
|
559
565
|
|
|
560
566
|
// Get type from ai-suggestion-badge data-type attribute or praise-badge
|
|
561
567
|
const badgeElement = suggestionDiv.querySelector('.ai-suggestion-badge, .praise-badge');
|
|
@@ -563,7 +569,7 @@ class SuggestionManager {
|
|
|
563
569
|
const suggestionType = badgeElement?.dataset?.type || (badgeElement?.classList?.contains('praise-badge') ? 'praise' : '');
|
|
564
570
|
const suggestionTitle = titleElement?.textContent?.trim() || '';
|
|
565
571
|
|
|
566
|
-
return { suggestionText, suggestionType, suggestionTitle };
|
|
572
|
+
return { suggestionText, formattedBody, suggestionType, suggestionTitle };
|
|
567
573
|
}
|
|
568
574
|
|
|
569
575
|
/**
|
|
@@ -609,6 +615,7 @@ class SuggestionManager {
|
|
|
609
615
|
// This is the reliable method that works even with gap rows between suggestion and target
|
|
610
616
|
const storedFileName = suggestionDiv.dataset.fileName;
|
|
611
617
|
const storedLineNumber = suggestionDiv.dataset.lineNumber;
|
|
618
|
+
const storedLineEnd = suggestionDiv.dataset.lineEnd;
|
|
612
619
|
const storedSide = suggestionDiv.dataset.side;
|
|
613
620
|
const storedDiffPosition = suggestionDiv.dataset.diffPosition;
|
|
614
621
|
const storedIsFileLevel = suggestionDiv.dataset.isFileLevel;
|
|
@@ -642,6 +649,7 @@ class SuggestionManager {
|
|
|
642
649
|
targetRow,
|
|
643
650
|
suggestionRow,
|
|
644
651
|
lineNumber: parseInt(storedLineNumber, 10),
|
|
652
|
+
lineEnd: storedLineEnd ? parseInt(storedLineEnd, 10) : null,
|
|
645
653
|
fileName: storedFileName,
|
|
646
654
|
diffPosition: storedDiffPosition || null,
|
|
647
655
|
side: storedSide || 'RIGHT',
|
package/public/js/pr.js
CHANGED
|
@@ -2241,6 +2241,7 @@ class PRManager {
|
|
|
2241
2241
|
|
|
2242
2242
|
/**
|
|
2243
2243
|
* Edit user comment
|
|
2244
|
+
* NOTE: similar edit form in comment-manager.js _buildEditFormRow — keep in sync
|
|
2244
2245
|
*/
|
|
2245
2246
|
async editUserComment(commentId) {
|
|
2246
2247
|
try {
|
|
@@ -2536,7 +2537,7 @@ class PRManager {
|
|
|
2536
2537
|
*/
|
|
2537
2538
|
async clearAllUserComments() {
|
|
2538
2539
|
// Count both line-level and file-level user comments
|
|
2539
|
-
const lineCommentRows = document.querySelectorAll('.user-comment-row');
|
|
2540
|
+
const lineCommentRows = document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)');
|
|
2540
2541
|
const fileCommentCards = document.querySelectorAll('.file-comment-card.user-comment');
|
|
2541
2542
|
const totalComments = lineCommentRows.length + fileCommentCards.length;
|
|
2542
2543
|
|
|
@@ -2654,7 +2655,7 @@ class PRManager {
|
|
|
2654
2655
|
});
|
|
2655
2656
|
|
|
2656
2657
|
// Clear existing comment rows before re-rendering
|
|
2657
|
-
document.querySelectorAll('.user-comment-row').forEach(row => row.remove());
|
|
2658
|
+
document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)').forEach(row => row.remove());
|
|
2658
2659
|
|
|
2659
2660
|
// Before rendering, ensure all comment target lines are visible
|
|
2660
2661
|
// (expand hidden hunks so the line rows exist in the DOM)
|
|
@@ -2836,7 +2837,27 @@ class PRManager {
|
|
|
2836
2837
|
}
|
|
2837
2838
|
|
|
2838
2839
|
/**
|
|
2839
|
-
*
|
|
2840
|
+
* Build a user comment object from adoption/edit response data.
|
|
2841
|
+
* Single source of truth for comment shape — used by both adopt-as-is
|
|
2842
|
+
* and edit-then-adopt flows.
|
|
2843
|
+
*/
|
|
2844
|
+
_buildCommentObject({ userCommentId, formattedBody, fileName, lineNumber, suggestionType, suggestionTitle, suggestionId, diffPosition, side }) {
|
|
2845
|
+
return {
|
|
2846
|
+
id: userCommentId,
|
|
2847
|
+
file: fileName,
|
|
2848
|
+
line_start: parseInt(lineNumber),
|
|
2849
|
+
body: formattedBody,
|
|
2850
|
+
type: suggestionType,
|
|
2851
|
+
title: suggestionTitle,
|
|
2852
|
+
parent_id: suggestionId,
|
|
2853
|
+
diff_position: diffPosition ? parseInt(diffPosition) : null,
|
|
2854
|
+
side: side || 'RIGHT',
|
|
2855
|
+
created_at: new Date().toISOString()
|
|
2856
|
+
};
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* Helper for adoptSuggestion (adopt-as-is flow).
|
|
2840
2861
|
* Performs the /adopt fetch, collapses the suggestion, formats the comment,
|
|
2841
2862
|
* and builds the newComment object. Returns { newComment, suggestionRow }
|
|
2842
2863
|
* or null on failure. Throws on errors so the caller can handle them.
|
|
@@ -2865,20 +2886,12 @@ class PRManager {
|
|
|
2865
2886
|
// Collapse the suggestion in the UI
|
|
2866
2887
|
this.collapseSuggestionForAdoption(suggestionRow, suggestionId);
|
|
2867
2888
|
|
|
2868
|
-
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
body: formattedText,
|
|
2875
|
-
type: suggestionType,
|
|
2876
|
-
title: suggestionTitle,
|
|
2877
|
-
parent_id: suggestionId,
|
|
2878
|
-
diff_position: diffPosition ? parseInt(diffPosition) : null,
|
|
2879
|
-
side: side || 'RIGHT',
|
|
2880
|
-
created_at: new Date().toISOString()
|
|
2881
|
-
};
|
|
2889
|
+
const newComment = this._buildCommentObject({
|
|
2890
|
+
userCommentId: adoptResult.userCommentId,
|
|
2891
|
+
formattedBody: adoptResult.formattedBody,
|
|
2892
|
+
fileName, lineNumber, suggestionType, suggestionTitle,
|
|
2893
|
+
suggestionId, diffPosition, side
|
|
2894
|
+
});
|
|
2882
2895
|
|
|
2883
2896
|
return { isFileLevel: false, newComment, suggestionRow };
|
|
2884
2897
|
}
|
|
@@ -2911,37 +2924,88 @@ class PRManager {
|
|
|
2911
2924
|
}
|
|
2912
2925
|
|
|
2913
2926
|
/**
|
|
2914
|
-
*
|
|
2927
|
+
* Open an AI suggestion in edit mode without adopting it yet.
|
|
2928
|
+
* The suggestion is only adopted when the user clicks Save/Adopt.
|
|
2915
2929
|
*/
|
|
2916
|
-
async
|
|
2930
|
+
async editAndAdoptSuggestion(suggestionId) {
|
|
2917
2931
|
try {
|
|
2918
2932
|
const suggestionDiv = document.querySelector(`[data-suggestion-id="${suggestionId}"]`);
|
|
2919
2933
|
if (!suggestionDiv) throw new Error('Suggestion element not found');
|
|
2920
2934
|
|
|
2921
|
-
const
|
|
2935
|
+
const { suggestionText, formattedBody, suggestionType, suggestionTitle } = this.extractSuggestionData(suggestionDiv);
|
|
2936
|
+
const { suggestionRow, lineNumber, lineEnd, fileName, diffPosition, side, isFileLevel } = this.getFileAndLineInfo(suggestionDiv);
|
|
2922
2937
|
|
|
2923
|
-
if (
|
|
2938
|
+
if (isFileLevel) {
|
|
2924
2939
|
if (!this.fileCommentManager) throw new Error('FileCommentManager not initialized');
|
|
2925
|
-
const zone = this.fileCommentManager.findZoneForFile(
|
|
2926
|
-
if (!zone) throw new Error(`Could not find file comments zone for ${
|
|
2940
|
+
const zone = this.fileCommentManager.findZoneForFile(fileName);
|
|
2941
|
+
if (!zone) throw new Error(`Could not find file comments zone for ${fileName}`);
|
|
2927
2942
|
|
|
2928
2943
|
const suggestion = {
|
|
2929
2944
|
id: suggestionId,
|
|
2930
|
-
file:
|
|
2931
|
-
body:
|
|
2932
|
-
|
|
2933
|
-
|
|
2945
|
+
file: fileName,
|
|
2946
|
+
body: suggestionText,
|
|
2947
|
+
formattedBody,
|
|
2948
|
+
type: suggestionType,
|
|
2949
|
+
title: suggestionTitle
|
|
2934
2950
|
};
|
|
2935
2951
|
|
|
2936
2952
|
this.fileCommentManager.editAndAdoptAISuggestion(zone, suggestion);
|
|
2937
2953
|
return;
|
|
2938
2954
|
}
|
|
2939
2955
|
|
|
2940
|
-
|
|
2941
|
-
|
|
2956
|
+
// Line-level: show edit form WITHOUT adopting yet
|
|
2957
|
+
const suggestion = {
|
|
2958
|
+
id: suggestionId,
|
|
2959
|
+
file: fileName,
|
|
2960
|
+
body: formattedBody || suggestionText,
|
|
2961
|
+
type: suggestionType,
|
|
2962
|
+
title: suggestionTitle,
|
|
2963
|
+
lineNumber,
|
|
2964
|
+
lineEnd,
|
|
2965
|
+
diffPosition,
|
|
2966
|
+
side
|
|
2967
|
+
};
|
|
2968
|
+
|
|
2969
|
+
this.commentManager.displaySuggestionEditForm(
|
|
2970
|
+
suggestion,
|
|
2971
|
+
suggestionRow,
|
|
2972
|
+
async (editedText) => {
|
|
2973
|
+
// User clicked Save — now adopt via /edit endpoint
|
|
2974
|
+
try {
|
|
2975
|
+
const reviewId = this.currentPR?.id;
|
|
2976
|
+
const editResponse = await fetch(`/api/reviews/${reviewId}/suggestions/${suggestionId}/edit`, {
|
|
2977
|
+
method: 'POST',
|
|
2978
|
+
headers: { 'Content-Type': 'application/json' },
|
|
2979
|
+
body: JSON.stringify({ action: 'adopt_edited', editedText })
|
|
2980
|
+
});
|
|
2981
|
+
|
|
2982
|
+
if (!editResponse.ok) throw new Error('Failed to adopt suggestion with edits');
|
|
2983
|
+
const editResult = await editResponse.json();
|
|
2984
|
+
|
|
2985
|
+
// Collapse the suggestion card
|
|
2986
|
+
this.collapseSuggestionForAdoption(suggestionRow, suggestionId);
|
|
2987
|
+
|
|
2988
|
+
const newComment = this._buildCommentObject({
|
|
2989
|
+
userCommentId: editResult.userCommentId,
|
|
2990
|
+
formattedBody: editResult.formattedBody,
|
|
2991
|
+
fileName, lineNumber, suggestionType, suggestionTitle,
|
|
2992
|
+
suggestionId, diffPosition, side
|
|
2993
|
+
});
|
|
2994
|
+
this.displayUserComment(newComment, suggestionRow);
|
|
2995
|
+
this._notifyAdoption(suggestionId, newComment);
|
|
2996
|
+
} catch (error) {
|
|
2997
|
+
console.error('Error saving edited suggestion:', error);
|
|
2998
|
+
alert(`Failed to save suggestion: ${error.message}`);
|
|
2999
|
+
throw error; // Re-throw so displaySuggestionEditForm can re-enable the save button
|
|
3000
|
+
}
|
|
3001
|
+
},
|
|
3002
|
+
() => {
|
|
3003
|
+
// User clicked Cancel — nothing to revert
|
|
3004
|
+
}
|
|
3005
|
+
);
|
|
2942
3006
|
} catch (error) {
|
|
2943
|
-
console.error('Error
|
|
2944
|
-
alert(`Failed to
|
|
3007
|
+
console.error('Error editing suggestion:', error);
|
|
3008
|
+
alert(`Failed to edit suggestion: ${error.message}`);
|
|
2945
3009
|
}
|
|
2946
3010
|
}
|
|
2947
3011
|
|
|
@@ -3262,7 +3326,7 @@ class PRManager {
|
|
|
3262
3326
|
*/
|
|
3263
3327
|
updateCommentCount() {
|
|
3264
3328
|
// Count both line-level comments (.user-comment-row) and file-level comments (.file-comment-card.user-comment)
|
|
3265
|
-
const lineComments = document.querySelectorAll('.user-comment-row').length;
|
|
3329
|
+
const lineComments = document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)').length;
|
|
3266
3330
|
const fileComments = document.querySelectorAll('.file-comment-card.user-comment').length;
|
|
3267
3331
|
const userComments = lineComments + fileComments;
|
|
3268
3332
|
|
|
@@ -3299,7 +3363,7 @@ class PRManager {
|
|
|
3299
3363
|
const submitBtn = document.getElementById('submit-review-btn');
|
|
3300
3364
|
|
|
3301
3365
|
// Count BOTH line-level and file-level comments for validation
|
|
3302
|
-
const lineComments = document.querySelectorAll('.user-comment-row').length;
|
|
3366
|
+
const lineComments = document.querySelectorAll('.user-comment-row:not(.suggestion-edit-pending)').length;
|
|
3303
3367
|
const fileComments = document.querySelectorAll('.file-comment-card.user-comment').length;
|
|
3304
3368
|
const totalComments = lineComments + fileComments;
|
|
3305
3369
|
if (reviewEvent === 'REQUEST_CHANGES' && !reviewBody && totalComments === 0) {
|