Add/Remove Reviewers and Assignees (#38)
Adds APIs for the ability to add or remove reviewers and assignees to a merge request. The eligible reviewers and assignees are pulled from the current members of a project.
This commit is contained in:
committed by
GitHub
parent
6274746d4b
commit
844e093294
26
README.md
26
README.md
@@ -24,7 +24,9 @@ return {
|
|||||||
"harrisoncramer/gitlab.nvim",
|
"harrisoncramer/gitlab.nvim",
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"MunifTanjim/nui.nvim",
|
"MunifTanjim/nui.nvim",
|
||||||
"nvim-lua/plenary.nvim"
|
"nvim-lua/plenary.nvim",
|
||||||
|
"stevearc/dressing.nvim" -- Recommended but not required. Better UI for pickers.
|
||||||
|
enabled = true,
|
||||||
},
|
},
|
||||||
build = function () require("gitlab").build() end, -- Builds the Go binary
|
build = function () require("gitlab").build() end, -- Builds the Go binary
|
||||||
config = function()
|
config = function()
|
||||||
@@ -143,6 +145,24 @@ The `comment` command will open up a NUI popover that will allow you to create a
|
|||||||
require("gitlab").create_comment()
|
require("gitlab").create_comment()
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The `add_reviewer` and `delete_reviewer` commands, as well as the `add_assignee` and `delete_assignee` functions, will let you choose from a list of users who are availble in the current project:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require("gitlab").add_reviewer()
|
||||||
|
require("gitlab").delete_reviewer()
|
||||||
|
require("gitlab").add_assignee()
|
||||||
|
require("gitlab").delete_assignee()
|
||||||
|
```
|
||||||
|
|
||||||
|
These commands use Neovim's built in picker, which is much nicer if you install <a href="https://github.com/stevearc/dressing.nvim">dressing</a>. If you use Dressing, please enable it:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
require("dressing").setup({
|
||||||
|
input = {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
### Discussions
|
### Discussions
|
||||||
|
|
||||||
Gitlab groups threads of notes together into "disucssions." To get a list of all the discussions for the current MR, use the `list_discussions` command. This command will open up a split view of all the comments on the current merge request. You can jump to the comment location by using the `o` key in the tree buffer, and you can reply to a thread by using the `r` keybinding in the tree buffer:
|
Gitlab groups threads of notes together into "disucssions." To get a list of all the discussions for the current MR, use the `list_discussions` command. This command will open up a split view of all the comments on the current merge request. You can jump to the comment location by using the `o` key in the tree buffer, and you can reply to a thread by using the `r` keybinding in the tree buffer:
|
||||||
@@ -170,6 +190,10 @@ vim.keymap.set("n", "<leader>glA", gitlab.approve)
|
|||||||
vim.keymap.set("n", "<leader>glR", gitlab.revoke)
|
vim.keymap.set("n", "<leader>glR", gitlab.revoke)
|
||||||
vim.keymap.set("n", "<leader>glc", gitlab.create_comment)
|
vim.keymap.set("n", "<leader>glc", gitlab.create_comment)
|
||||||
vim.keymap.set("n", "<leader>gld", gitlab.list_discussions)
|
vim.keymap.set("n", "<leader>gld", gitlab.list_discussions)
|
||||||
|
vim.keymap.set("n", "<leader>glaa", gitlab.add_assignee)
|
||||||
|
vim.keymap.set("n", "<leader>glad", gitlab.delete_assignee)
|
||||||
|
vim.keymap.set("n", "<leader>glra", gitlab.add_reviewer)
|
||||||
|
vim.keymap.set("n", "<leader>glrd", gitlab.delete_reviewer)
|
||||||
```
|
```
|
||||||
|
|
||||||
## Troubleshooting
|
## Troubleshooting
|
||||||
|
|||||||
70
cmd/assignee.go
Normal file
70
cmd/assignee.go
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/xanzy/go-gitlab"
|
||||||
|
)
|
||||||
|
|
||||||
|
type AssigneeUpdateRequest struct {
|
||||||
|
Ids []int `json:"ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AssigneeUpdateResponse struct {
|
||||||
|
SuccessResponse
|
||||||
|
Assignees []*gitlab.BasicUser `json:"assignees"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type AssigneesRequestResponse struct {
|
||||||
|
SuccessResponse
|
||||||
|
Assignees []int `json:"assignees"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func AssigneesHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
c := r.Context().Value("client").(Client)
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
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 assigneeUpdateRequest AssigneeUpdateRequest
|
||||||
|
err = json.Unmarshal(body, &assigneeUpdateRequest)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mr, res, err := c.git.MergeRequests.UpdateMergeRequest(c.projectId, c.mergeId, &gitlab.UpdateMergeRequestOptions{
|
||||||
|
AssigneeIDs: &assigneeUpdateRequest.Ids,
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not modify merge request assignees", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if res.StatusCode != http.StatusOK {
|
||||||
|
c.handleError(w, err, "Could not modify merge request assignees", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
|
||||||
|
response := AssigneeUpdateResponse{
|
||||||
|
SuccessResponse: SuccessResponse{
|
||||||
|
Message: "Assignees updated",
|
||||||
|
Status: http.StatusOK,
|
||||||
|
},
|
||||||
|
Assignees: mr.Assignees,
|
||||||
|
}
|
||||||
|
|
||||||
|
json.NewEncoder(w).Encode(response)
|
||||||
|
|
||||||
|
}
|
||||||
@@ -9,16 +9,16 @@ import (
|
|||||||
"github.com/xanzy/go-gitlab"
|
"github.com/xanzy/go-gitlab"
|
||||||
)
|
)
|
||||||
|
|
||||||
type UpdateRequest struct {
|
type DescriptionUpdateRequest struct {
|
||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type UpdateResponse struct {
|
type DescriptionUpdateResponse struct {
|
||||||
SuccessResponse
|
SuccessResponse
|
||||||
MergeRequest *gitlab.MergeRequest `json:"mr"`
|
MergeRequest *gitlab.MergeRequest `json:"mr"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpdateHandler(w http.ResponseWriter, r *http.Request) {
|
func DescriptionHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
c := r.Context().Value("client").(Client)
|
c := r.Context().Value("client").(Client)
|
||||||
w.Header().Set("Content-Type", "application/json")
|
w.Header().Set("Content-Type", "application/json")
|
||||||
if r.Method != http.MethodPut {
|
if r.Method != http.MethodPut {
|
||||||
@@ -33,31 +33,31 @@ func UpdateHandler(w http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
defer r.Body.Close()
|
defer r.Body.Close()
|
||||||
var updateRequest UpdateRequest
|
var DescriptionUpdateRequest DescriptionUpdateRequest
|
||||||
err = json.Unmarshal(body, &updateRequest)
|
err = json.Unmarshal(body, &DescriptionUpdateRequest)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
|
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
mr, res, err := c.git.MergeRequests.UpdateMergeRequest(c.projectId, c.mergeId, &gitlab.UpdateMergeRequestOptions{Description: &updateRequest.Description})
|
mr, res, err := c.git.MergeRequests.UpdateMergeRequest(c.projectId, c.mergeId, &gitlab.UpdateMergeRequestOptions{Description: &DescriptionUpdateRequest.Description})
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.handleError(w, err, "Could not edit merge request", http.StatusBadRequest)
|
c.handleError(w, err, "Could not edit merge request description", http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if res.StatusCode != http.StatusOK {
|
if res.StatusCode != http.StatusOK {
|
||||||
c.handleError(w, err, "Could not edit merge request", http.StatusBadRequest)
|
c.handleError(w, err, "Could not edit merge request description", http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
|
|
||||||
response := UpdateResponse{
|
response := DescriptionUpdateResponse{
|
||||||
SuccessResponse: SuccessResponse{
|
SuccessResponse: SuccessResponse{
|
||||||
Message: "Merge request updated",
|
Message: "Description updated",
|
||||||
Status: http.StatusOK,
|
Status: http.StatusOK,
|
||||||
},
|
},
|
||||||
MergeRequest: mr,
|
MergeRequest: mr,
|
||||||
@@ -29,13 +29,16 @@ func main() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
m := http.NewServeMux()
|
m := http.NewServeMux()
|
||||||
m.Handle("/mr", withGitlabContext(http.HandlerFunc(UpdateHandler), c))
|
m.Handle("/mr/description", withGitlabContext(http.HandlerFunc(DescriptionHandler), c))
|
||||||
|
m.Handle("/mr/reviewer", withGitlabContext(http.HandlerFunc(ReviewersHandler), c))
|
||||||
|
m.Handle("/mr/assignee", withGitlabContext(http.HandlerFunc(AssigneesHandler), c))
|
||||||
m.Handle("/approve", withGitlabContext(http.HandlerFunc(ApproveHandler), c))
|
m.Handle("/approve", withGitlabContext(http.HandlerFunc(ApproveHandler), c))
|
||||||
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("/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))
|
||||||
|
|
||||||
port := fmt.Sprintf(":%s", os.Args[3])
|
port := fmt.Sprintf(":%s", os.Args[3])
|
||||||
server := &http.Server{
|
server := &http.Server{
|
||||||
|
|||||||
43
cmd/members.go
Normal file
43
cmd/members.go
Normal file
@@ -0,0 +1,43 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/xanzy/go-gitlab"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ProjectMembersResponse struct {
|
||||||
|
SuccessResponse
|
||||||
|
ProjectMembers []*gitlab.ProjectMember
|
||||||
|
}
|
||||||
|
|
||||||
|
func ProjectMembersHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
c := r.Context().Value("client").(Client)
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
projectMemberOptions := gitlab.ListProjectMembersOptions{
|
||||||
|
ListOptions: gitlab.ListOptions{
|
||||||
|
PerPage: 100,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
projectMembers, res, err := c.git.ProjectMembers.ListAllProjectMembers(c.projectId, &projectMemberOptions)
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not fetch project users", res.StatusCode)
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
|
||||||
|
response := ProjectMembersResponse{
|
||||||
|
SuccessResponse: SuccessResponse{
|
||||||
|
Status: http.StatusOK,
|
||||||
|
Message: "Project users fetched successfully",
|
||||||
|
},
|
||||||
|
ProjectMembers: projectMembers,
|
||||||
|
}
|
||||||
|
|
||||||
|
json.NewEncoder(w).Encode(response)
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
70
cmd/reviewer.go
Normal file
70
cmd/reviewer.go
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"io"
|
||||||
|
"net/http"
|
||||||
|
|
||||||
|
"github.com/xanzy/go-gitlab"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ReviewerUpdateRequest struct {
|
||||||
|
Ids []int `json:"ids"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReviewerUpdateResponse struct {
|
||||||
|
SuccessResponse
|
||||||
|
Reviewers []*gitlab.BasicUser `json:"reviewers"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type ReviewersRequestResponse struct {
|
||||||
|
SuccessResponse
|
||||||
|
Reviewers []int `json:"reviewers"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func ReviewersHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
|
c := r.Context().Value("client").(Client)
|
||||||
|
w.Header().Set("Content-Type", "application/json")
|
||||||
|
|
||||||
|
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 reviewerUpdateRequest ReviewerUpdateRequest
|
||||||
|
err = json.Unmarshal(body, &reviewerUpdateRequest)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not read JSON from request", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
mr, res, err := c.git.MergeRequests.UpdateMergeRequest(c.projectId, c.mergeId, &gitlab.UpdateMergeRequestOptions{
|
||||||
|
ReviewerIDs: &reviewerUpdateRequest.Ids,
|
||||||
|
})
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
c.handleError(w, err, "Could not modify merge request reviewers", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if res.StatusCode != http.StatusOK {
|
||||||
|
c.handleError(w, err, "Could not modify merge request reviewers", http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
w.WriteHeader(http.StatusOK)
|
||||||
|
|
||||||
|
response := ReviewerUpdateResponse{
|
||||||
|
SuccessResponse: SuccessResponse{
|
||||||
|
Message: "Reviewers updated",
|
||||||
|
Status: http.StatusOK,
|
||||||
|
},
|
||||||
|
Reviewers: mr.Reviewers,
|
||||||
|
}
|
||||||
|
|
||||||
|
json.NewEncoder(w).Encode(response)
|
||||||
|
|
||||||
|
}
|
||||||
71
lua/gitlab/assignees_and_reviewers.lua
Normal file
71
lua/gitlab/assignees_and_reviewers.lua
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
local u = require("gitlab.utils")
|
||||||
|
local job = require("gitlab.job")
|
||||||
|
local state = require("gitlab.state")
|
||||||
|
local M = {}
|
||||||
|
|
||||||
|
M.add_assignee = function()
|
||||||
|
M.add_popup('assignee')
|
||||||
|
end
|
||||||
|
|
||||||
|
M.delete_assignee = function()
|
||||||
|
M.delete_popup('assignee')
|
||||||
|
end
|
||||||
|
|
||||||
|
M.add_reviewer = function()
|
||||||
|
M.add_popup('reviewer')
|
||||||
|
end
|
||||||
|
|
||||||
|
M.delete_reviewer = function()
|
||||||
|
M.delete_popup('reviewer')
|
||||||
|
end
|
||||||
|
|
||||||
|
M.add_popup = function(type)
|
||||||
|
local plural = type .. 's'
|
||||||
|
local current = state.INFO[plural]
|
||||||
|
local eligible = M.filter_eligible(state.PROJECT_MEMBERS, current)
|
||||||
|
vim.ui.select(eligible, {
|
||||||
|
prompt = 'Choose ' .. type .. ' to add',
|
||||||
|
format_item = function(user)
|
||||||
|
return user.username .. " (" .. user.name .. ")"
|
||||||
|
end
|
||||||
|
}, function(choice)
|
||||||
|
if not choice then return end
|
||||||
|
local current_ids = u.extract(current, 'id')
|
||||||
|
table.insert(current_ids, choice.id)
|
||||||
|
local json = vim.json.encode({ ids = current_ids })
|
||||||
|
job.run_job("mr/" .. type, "PUT", json, function(data)
|
||||||
|
vim.notify(data.message, vim.log.levels.INFO)
|
||||||
|
state.INFO[plural] = data[plural]
|
||||||
|
end)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
M.delete_popup = function(type)
|
||||||
|
local plural = type .. 's'
|
||||||
|
local current = state.INFO[plural]
|
||||||
|
vim.ui.select(current, {
|
||||||
|
prompt = 'Choose ' .. type .. ' to delete',
|
||||||
|
format_item = function(user)
|
||||||
|
return user.username .. " (" .. user.name .. ")"
|
||||||
|
end
|
||||||
|
}, function(choice)
|
||||||
|
if not choice then return end
|
||||||
|
local ids = u.extract(M.filter_eligible(current, { choice }), 'id')
|
||||||
|
local json = vim.json.encode({ ids = ids })
|
||||||
|
job.run_job("mr/" .. type, "PUT", json, function(data)
|
||||||
|
vim.notify(data.message, vim.log.levels.INFO)
|
||||||
|
state.INFO[plural] = data[plural]
|
||||||
|
end)
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
|
||||||
|
M.filter_eligible = function(current, to_remove)
|
||||||
|
local ids = u.extract(to_remove, 'id')
|
||||||
|
local res = {}
|
||||||
|
for _, member in ipairs(current) do
|
||||||
|
if not u.contains(ids, member.id) then table.insert(res, member) end
|
||||||
|
end
|
||||||
|
return res
|
||||||
|
end
|
||||||
|
|
||||||
|
return M
|
||||||
@@ -1,12 +1,17 @@
|
|||||||
local state = require("gitlab.state")
|
local state = require("gitlab.state")
|
||||||
local discussions = require("gitlab.discussions")
|
local discussions = require("gitlab.discussions")
|
||||||
local summary = require("gitlab.summary")
|
local summary = require("gitlab.summary")
|
||||||
|
local assignees_and_reviewers = require("gitlab.assignees_and_reviewers")
|
||||||
local keymaps = require("gitlab.keymaps")
|
local keymaps = require("gitlab.keymaps")
|
||||||
local comment = require("gitlab.comment")
|
local comment = require("gitlab.comment")
|
||||||
local job = require("gitlab.job")
|
local job = require("gitlab.job")
|
||||||
local u = require("gitlab.utils")
|
local u = require("gitlab.utils")
|
||||||
|
|
||||||
-- Ensures the plugin's state is initialized prior to running other calls. This state contains the basic information about the current merge request, like description, author, etc
|
-- Function names prefixed with "ensure" will ensure the plugin's state
|
||||||
|
-- is initialized prior to running other calls. These functions run
|
||||||
|
-- API calls if the state isn't initialized, which will set state containing
|
||||||
|
-- information that's necessary for other API calls, like description,
|
||||||
|
-- author, reviewer, etc.
|
||||||
local ensureState = function(callback)
|
local ensureState = function(callback)
|
||||||
return function()
|
return function()
|
||||||
if type(state.INFO) ~= "table" then
|
if type(state.INFO) ~= "table" then
|
||||||
@@ -20,6 +25,19 @@ local ensureState = function(callback)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local ensureProjectMembers = function(callback)
|
||||||
|
return function()
|
||||||
|
if type(state.PROJECT_MEMBERS) ~= "table" then
|
||||||
|
job.run_job("members", "GET", nil, function(data)
|
||||||
|
state.PROJECT_MEMBERS = data.ProjectMembers
|
||||||
|
callback()
|
||||||
|
end)
|
||||||
|
else
|
||||||
|
callback()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Root Module Scope
|
-- Root Module Scope
|
||||||
local M = {}
|
local M = {}
|
||||||
M.summary = ensureState(summary.summary)
|
M.summary = ensureState(summary.summary)
|
||||||
@@ -29,6 +47,10 @@ M.create_comment = ensureState(comment.create_comment)
|
|||||||
M.list_discussions = ensureState(discussions.list_discussions)
|
M.list_discussions = ensureState(discussions.list_discussions)
|
||||||
M.edit_comment = ensureState(comment.edit_comment)
|
M.edit_comment = ensureState(comment.edit_comment)
|
||||||
M.delete_comment = ensureState(comment.delete_comment)
|
M.delete_comment = ensureState(comment.delete_comment)
|
||||||
|
M.add_reviewer = ensureProjectMembers(ensureState(assignees_and_reviewers.add_reviewer))
|
||||||
|
M.delete_reviewer = ensureProjectMembers(ensureState(assignees_and_reviewers.delete_reviewer))
|
||||||
|
M.add_assignee = ensureProjectMembers(ensureState(assignees_and_reviewers.add_assignee))
|
||||||
|
M.delete_assignee = ensureProjectMembers(ensureState(assignees_and_reviewers.delete_assignee))
|
||||||
M.reply = ensureState(discussions.reply)
|
M.reply = ensureState(discussions.reply)
|
||||||
M.state = state
|
M.state = state
|
||||||
|
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ end
|
|||||||
M.edit_description = function(text)
|
M.edit_description = function(text)
|
||||||
local jsonTable = { description = text }
|
local jsonTable = { description = text }
|
||||||
local json = vim.json.encode(jsonTable)
|
local json = vim.json.encode(jsonTable)
|
||||||
job.run_job("mr", "PUT", json, function(data)
|
job.run_job("mr/description", "PUT", json, function(data)
|
||||||
vim.notify(data.message, vim.log.levels.INFO)
|
vim.notify(data.message, vim.log.levels.INFO)
|
||||||
state.INFO.description = data.mr.description
|
state.INFO.description = data.mr.description
|
||||||
end)
|
end)
|
||||||
|
|||||||
@@ -244,15 +244,6 @@ local current_file_path = function()
|
|||||||
return vim.fn.fnamemodify(path, ':p')
|
return vim.fn.fnamemodify(path, ':p')
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Function to join two tables
|
|
||||||
local function join_tables(table1, table2)
|
|
||||||
for _, value in ipairs(table2) do
|
|
||||||
table.insert(table1, value)
|
|
||||||
end
|
|
||||||
|
|
||||||
return table1
|
|
||||||
end
|
|
||||||
|
|
||||||
local random = math.random
|
local random = math.random
|
||||||
local function uuid()
|
local function uuid()
|
||||||
local template = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'
|
local template = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'
|
||||||
@@ -266,6 +257,36 @@ local attach_uuid = function(str)
|
|||||||
return { text = str, id = uuid() }
|
return { text = str, id = uuid() }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local join_tables = function(table1, table2)
|
||||||
|
for _, value in ipairs(table2) do
|
||||||
|
table.insert(table1, value)
|
||||||
|
end
|
||||||
|
|
||||||
|
return table1
|
||||||
|
end
|
||||||
|
|
||||||
|
local contains = function(array, search_value)
|
||||||
|
for _, value in ipairs(array) do
|
||||||
|
if value == search_value then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
|
||||||
|
local extract = function(t, property)
|
||||||
|
local resultTable = {}
|
||||||
|
for _, value in ipairs(t) do
|
||||||
|
if value[property] then
|
||||||
|
table.insert(resultTable, value[property])
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return resultTable
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
M.extract = extract
|
||||||
|
M.contains = contains
|
||||||
M.attach_uuid = attach_uuid
|
M.attach_uuid = attach_uuid
|
||||||
M.join_tables = join_tables
|
M.join_tables = join_tables
|
||||||
M.get_relative_file_path = get_relative_file_path
|
M.get_relative_file_path = get_relative_file_path
|
||||||
|
|||||||
Reference in New Issue
Block a user