Fixes: Resolve entire discussion thread (#95)
This MR adjusts the comment/discussion resolution action to resolve the entire discussion thread, rather than an individual comment, which is the expected behavior during an MR review.
This commit is contained in:
@@ -125,7 +125,7 @@ require("gitlab").setup({
|
|||||||
delete_comment = "dd", -- Delete comment
|
delete_comment = "dd", -- Delete comment
|
||||||
reply = "r", -- Reply to comment
|
reply = "r", -- Reply to comment
|
||||||
toggle_node = "t", -- Opens or closes the discussion
|
toggle_node = "t", -- Opens or closes the discussion
|
||||||
toggle_resolved = "p", -- Toggles the resolved status of the discussion
|
toggle_resolved = "p" -- Toggles the resolved status of the whole discussion
|
||||||
position = "left", -- "top", "right", "bottom" or "left"
|
position = "left", -- "top", "right", "bottom" or "left"
|
||||||
size = "20%", -- Size of split
|
size = "20%", -- Size of split
|
||||||
relative = "editor", -- Position of tree split relative to "editor" or "window"
|
relative = "editor", -- Position of tree split relative to "editor" or "window"
|
||||||
|
|||||||
@@ -214,15 +214,8 @@ func EditComment(w http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
options := gitlab.UpdateMergeRequestDiscussionNoteOptions{}
|
options := gitlab.UpdateMergeRequestDiscussionNoteOptions{}
|
||||||
|
|
||||||
/* The PATCH can either be to the resolved status of
|
|
||||||
the discussion or or the text of the comment */
|
|
||||||
msg := "edit comment"
|
msg := "edit comment"
|
||||||
if editCommentRequest.Comment == "" {
|
|
||||||
options.Resolved = &editCommentRequest.Resolved
|
|
||||||
msg = "update discussion status"
|
|
||||||
} else {
|
|
||||||
options.Body = gitlab.String(editCommentRequest.Comment)
|
options.Body = gitlab.String(editCommentRequest.Comment)
|
||||||
}
|
|
||||||
|
|
||||||
note, res, err := c.git.Discussions.UpdateMergeRequestDiscussionNote(c.projectId, c.mergeId, editCommentRequest.DiscussionId, editCommentRequest.NoteId, &options)
|
note, res, err := c.git.Discussions.UpdateMergeRequestDiscussionNote(c.projectId, c.mergeId, editCommentRequest.DiscussionId, editCommentRequest.NoteId, &options)
|
||||||
|
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ func main() {
|
|||||||
m.Handle("/revoke", withGitlabContext(http.HandlerFunc(RevokeHandler), c))
|
m.Handle("/revoke", withGitlabContext(http.HandlerFunc(RevokeHandler), c))
|
||||||
m.Handle("/info", withGitlabContext(http.HandlerFunc(InfoHandler), c))
|
m.Handle("/info", withGitlabContext(http.HandlerFunc(InfoHandler), c))
|
||||||
m.Handle("/discussions", withGitlabContext(http.HandlerFunc(ListDiscussionsHandler), c))
|
m.Handle("/discussions", withGitlabContext(http.HandlerFunc(ListDiscussionsHandler), c))
|
||||||
|
m.Handle("/discussion/resolve", withGitlabContext(http.HandlerFunc(DiscussionResolveHandler), c))
|
||||||
m.Handle("/comment", withGitlabContext(http.HandlerFunc(CommentHandler), c))
|
m.Handle("/comment", withGitlabContext(http.HandlerFunc(CommentHandler), c))
|
||||||
m.Handle("/reply", withGitlabContext(http.HandlerFunc(ReplyHandler), c))
|
m.Handle("/reply", withGitlabContext(http.HandlerFunc(ReplyHandler), c))
|
||||||
m.Handle("/members", withGitlabContext(http.HandlerFunc(ProjectMembersHandler), c))
|
m.Handle("/members", withGitlabContext(http.HandlerFunc(ProjectMembersHandler), c))
|
||||||
|
|||||||
69
cmd/resolve_discussion.go
Normal file
69
cmd/resolve_discussion.go
Normal file
@@ -0,0 +1,69 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/xanzy/go-gitlab"
|
||||||
|
)
|
||||||
|
|
||||||
|
type DiscussionResolveRequest struct {
|
||||||
|
DiscussionID string `json:"discussion_id"`
|
||||||
|
Resolved bool `json:"resolved"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func DiscussionResolveHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
switch r.Method {
|
||||||
|
case http.MethodPut:
|
||||||
|
DiscussionResolve(w, r)
|
||||||
|
default:
|
||||||
|
w.WriteHeader(http.StatusMethodNotAllowed)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
func DiscussionResolve(w http.ResponseWriter, r *http.Request) {
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
c := r.Context().Value("client").(Client)
|
||||||
|
|
||||||
|
body, err := io.ReadAll(r.Body)
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not read request body", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
defer r.Body.Close()
|
||||||
|
var resolveDiscussionRequest DiscussionResolveRequest
|
||||||
|
err = json.Unmarshal(body, &resolveDiscussionRequest)
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
_, res, err := c.git.Discussions.ResolveMergeRequestDiscussion(
|
||||||
|
c.projectId,
|
||||||
|
c.mergeId,
|
||||||
|
resolveDiscussionRequest.DiscussionID,
|
||||||
|
&gitlab.ResolveMergeRequestDiscussionOptions{Resolved: &resolveDiscussionRequest.Resolved},
|
||||||
|
)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not update resolve status of discussion", res.StatusCode)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
var message string
|
||||||
|
if resolveDiscussionRequest.Resolved {
|
||||||
|
message = "Discussion resolved"
|
||||||
|
} else {
|
||||||
|
message = "Discussion unresolved"
|
||||||
|
}
|
||||||
|
response := SuccessResponse{
|
||||||
|
Message: message,
|
||||||
|
Status: http.StatusOK,
|
||||||
|
}
|
||||||
|
|
||||||
|
err = json.NewEncoder(w).Encode(response)
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not encode response", http.StatusInternalServerError)
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -633,8 +633,8 @@ M.send_edits = function(discussion_id, note_id, unlinked)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
-- This comment (settings.discussion_tree.toggle_resolved) will toggle the resolved status of the current discussion and send the change to the Go server
|
-- This function (settings.discussion_tree.toggle_discussion_resolved) will toggle the resolved status of the current discussion and send the change to the Go server
|
||||||
M.toggle_resolved = function(tree)
|
M.toggle_discussion_resolved = function(tree)
|
||||||
local note = tree:get_node()
|
local note = tree:get_node()
|
||||||
if not note or not note.resolvable then
|
if not note or not note.resolvable then
|
||||||
return
|
return
|
||||||
@@ -642,11 +642,10 @@ M.toggle_resolved = function(tree)
|
|||||||
|
|
||||||
local body = {
|
local body = {
|
||||||
discussion_id = note.id,
|
discussion_id = note.id,
|
||||||
note_id = note.root_note_id,
|
|
||||||
resolved = not note.resolved,
|
resolved = not note.resolved,
|
||||||
}
|
}
|
||||||
|
|
||||||
job.run_job("/comment", "PATCH", body, function(data)
|
job.run_job("/discussion/resolve", "PUT", body, function(data)
|
||||||
u.notify(data.message, vim.log.levels.INFO)
|
u.notify(data.message, vim.log.levels.INFO)
|
||||||
M.redraw_resolved_status(tree, note, not note.resolved)
|
M.redraw_resolved_status(tree, note, not note.resolved)
|
||||||
end)
|
end)
|
||||||
@@ -802,10 +801,10 @@ M.set_tree_keymaps = function(tree, bufnr, unlinked)
|
|||||||
M.delete_comment(tree, unlinked)
|
M.delete_comment(tree, unlinked)
|
||||||
end, { buffer = bufnr })
|
end, { buffer = bufnr })
|
||||||
vim.keymap.set("n", state.settings.discussion_tree.toggle_resolved, function()
|
vim.keymap.set("n", state.settings.discussion_tree.toggle_resolved, function()
|
||||||
M.toggle_resolved(tree)
|
M.toggle_discussion_resolved(tree)
|
||||||
end, { buffer = bufnr })
|
end, { buffer = bufnr })
|
||||||
vim.keymap.set("n", state.settings.discussion_tree.toggle_node, function()
|
vim.keymap.set("n", state.settings.discussion_tree.toggle_node, function()
|
||||||
M.toggle_node(tree, unlinked)
|
M.toggle_node(tree)
|
||||||
end, { buffer = bufnr })
|
end, { buffer = bufnr })
|
||||||
vim.keymap.set("n", state.settings.discussion_tree.reply, function()
|
vim.keymap.set("n", state.settings.discussion_tree.reply, function()
|
||||||
M.reply(tree)
|
M.reply(tree)
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ return {
|
|||||||
toggle_discussions = async.sequence({ info }, discussions.toggle),
|
toggle_discussions = async.sequence({ info }, discussions.toggle),
|
||||||
edit_comment = async.sequence({ info }, discussions.edit_comment),
|
edit_comment = async.sequence({ info }, discussions.edit_comment),
|
||||||
delete_comment = async.sequence({ info }, discussions.delete_comment),
|
delete_comment = async.sequence({ info }, discussions.delete_comment),
|
||||||
toggle_resolved = async.sequence({ info }, discussions.toggle_resolved),
|
toggle_resolved = async.sequence({ info }, discussions.toggle_discussion_resolved),
|
||||||
reply = async.sequence({ info }, discussions.reply),
|
reply = async.sequence({ info }, discussions.reply),
|
||||||
-- Other functions 🤷
|
-- Other functions 🤷
|
||||||
state = state,
|
state = state,
|
||||||
|
|||||||
Reference in New Issue
Block a user