mirror of
https://github.com/ray-x/navigator.lua
synced 2024-11-03 15:40:20 +00:00
358 lines
10 KiB
Lua
358 lines
10 KiB
Lua
local util = require "navigator.util"
|
|
local log = util.log
|
|
local trace = util.trace
|
|
local code_action = {}
|
|
local gui = require "navigator.gui"
|
|
local config = require("navigator").config_values()
|
|
local api = vim.api
|
|
trace = log
|
|
|
|
local sign_name = "NavigatorLightBulb"
|
|
|
|
--- `codeAction/resolve`
|
|
-- from neovim buf.lua, change vim.ui.select to gui
|
|
local function on_code_action_results(results, ctx)
|
|
local action_tuples = {}
|
|
for client_id, result in pairs(results) do
|
|
for _, action in pairs(result.result or {}) do
|
|
table.insert(action_tuples, {client_id, action})
|
|
end
|
|
end
|
|
if #action_tuples == 0 then
|
|
vim.notify('No code actions available', vim.log.levels.INFO)
|
|
return
|
|
end
|
|
|
|
trace(action_tuples, ctx)
|
|
local data = {" Auto Fix <C-o> Apply <C-e> Exit"}
|
|
for i, act in pairs(action_tuples) do
|
|
local title = 'apply action'
|
|
local action = act[2]
|
|
trace(action)
|
|
if action.edit and action.edit.title then
|
|
local edit = action.edit
|
|
title = edit.title:gsub("\n", " ↳ ")
|
|
elseif action.title then
|
|
title = action.title:gsub("\n", " ↳ ")
|
|
elseif action.command and action.command.title then
|
|
title = action.command.title:gsub("\n", " ↳ ")
|
|
end
|
|
|
|
local edit = action.edit or {}
|
|
-- trace(edit.documentChanges)
|
|
if edit.documentChanges or edit.changes then
|
|
local changes = edit.documentChanges or edit.changes
|
|
-- trace(action.edit.documentChanges)
|
|
for _, change in pairs(changes or {}) do
|
|
-- trace(change)
|
|
if change.edits then
|
|
title = title .. " [newText:]"
|
|
for _, ed in pairs(change.edits) do
|
|
-- trace(ed)
|
|
if ed.newText then
|
|
ed.newText = ed.newText:gsub("\n\t", " ↳ ")
|
|
ed.newText = ed.newText:gsub("\n", "↳")
|
|
title = title .. " (" .. ed.newText
|
|
if ed.range then
|
|
title = title .. " line: " .. tostring(ed.range.start.line) .. ")"
|
|
else
|
|
title = title .. ")"
|
|
end
|
|
end
|
|
end
|
|
elseif change.newText then
|
|
|
|
change.newText = change.newText:gsub("\"\n\t\"", " ↳ ")
|
|
change.newText = change.newText:gsub("\n", "↳")
|
|
title = title .. " (newText: " .. change.newText
|
|
if change.range then
|
|
title = title .. " line: " .. tostring(change.range.start.line) .. ")"
|
|
else
|
|
title = title .. ")"
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
|
|
title = title:gsub("\n", "\\n")
|
|
title = string.format("[%d] %s", i, title)
|
|
table.insert(data, title)
|
|
action_tuples[i].display_title = title
|
|
end
|
|
|
|
log(action_tuples)
|
|
local width = 42
|
|
for _, str in ipairs(data) do
|
|
if #str > width then
|
|
width = #str
|
|
end
|
|
end
|
|
|
|
local divider = string.rep('─', width + 2)
|
|
|
|
table.insert(data, 2, divider)
|
|
|
|
local listview = gui.new_list_view {
|
|
items = data,
|
|
width = width + 4,
|
|
loc = "top_center",
|
|
relative = "cursor",
|
|
rawdata = true,
|
|
data = data,
|
|
on_confirm = function(item)
|
|
trace(item)
|
|
local action_chosen = nil
|
|
for key, value in pairs(action_tuples) do
|
|
if value.display_title == item then
|
|
action_chosen = value
|
|
end
|
|
end
|
|
if action_chosen == nil then
|
|
log("no match for ", item, action_tuples)
|
|
return
|
|
end
|
|
require('navigator.lspwrapper').on_user_choice(action_chosen, ctx)
|
|
|
|
end,
|
|
on_move = function(pos)
|
|
trace(pos)
|
|
return pos
|
|
end
|
|
}
|
|
|
|
log("new buffer", listview.bufnr)
|
|
vim.api.nvim_buf_add_highlight(listview.bufnr, -1, 'Title', 0, 0, -1)
|
|
|
|
end
|
|
|
|
local diagnostic = vim.diagnostic or vim.lsp.diagnostic
|
|
code_action.code_action_handler = util.mk_handler(function(err, actions, ctx, cfg)
|
|
if actions == nil or vim.tbl_isempty(actions) or err then
|
|
log("No code actions available")
|
|
return
|
|
end
|
|
|
|
log(actions, ctx)
|
|
local data = {" Auto Fix <C-o> Apply <C-e> Exit"}
|
|
for i, action in ipairs(actions) do
|
|
local title = action.title:gsub("\r\n", "\\r\\n")
|
|
title = title:gsub("\n", "\\n")
|
|
title = string.format("[%d] %s", i, title)
|
|
table.insert(data, title)
|
|
actions[i].display_title = title
|
|
end
|
|
local width = 42
|
|
for _, str in ipairs(data) do
|
|
if #str > width then
|
|
width = #str
|
|
end
|
|
end
|
|
|
|
local divider = string.rep('─', width + 2)
|
|
|
|
table.insert(data, 2, divider)
|
|
local apply = require('navigator.lspwrapper').apply_action
|
|
local function apply_action(action)
|
|
local action_chosen = nil
|
|
for key, value in pairs(actions) do
|
|
if value.display_title == action then
|
|
action_chosen = value
|
|
end
|
|
end
|
|
|
|
if action_chosen == nil then
|
|
log("no match for ", action, actions)
|
|
return
|
|
end
|
|
apply(action_chosen)
|
|
end
|
|
|
|
local listview = gui.new_list_view {
|
|
items = data,
|
|
width = width + 4,
|
|
loc = "top_center",
|
|
relative = "cursor",
|
|
rawdata = true,
|
|
data = data,
|
|
on_confirm = function(pos)
|
|
trace(pos)
|
|
apply_action(pos)
|
|
end,
|
|
on_move = function(pos)
|
|
trace(pos)
|
|
return pos
|
|
end
|
|
}
|
|
|
|
log("new buffer", listview.bufnr)
|
|
vim.api.nvim_buf_add_highlight(listview.bufnr, -1, 'Title', 0, 0, -1)
|
|
end)
|
|
|
|
-- https://github.com/glepnir/lspsaga.nvim/blob/main/lua/lspsaga/codeaction.lua
|
|
-- lspsaga has a clever design to inject code action indicator
|
|
local sign_group = "nvcodeaction"
|
|
local get_namespace = function()
|
|
return api.nvim_create_namespace(sign_group)
|
|
end
|
|
|
|
local get_current_winid = function()
|
|
return api.nvim_get_current_win()
|
|
end
|
|
|
|
local function _update_virtual_text(line, actions)
|
|
local namespace = get_namespace()
|
|
pcall(api.nvim_buf_clear_namespace, 0, namespace, 0, -1)
|
|
|
|
if line then
|
|
trace(line, actions)
|
|
local icon_with_indent = " " .. config.icons.code_action_icon
|
|
|
|
local title = actions[1].title
|
|
pcall(api.nvim_buf_set_extmark, 0, namespace, line, -1, {
|
|
virt_text = {{icon_with_indent .. title, "LspDiagnosticsSignHint"}},
|
|
virt_text_pos = "overlay",
|
|
hl_mode = "combine"
|
|
})
|
|
end
|
|
end
|
|
|
|
local function _update_sign(line)
|
|
|
|
if vim.tbl_isempty(vim.fn.sign_getdefined(sign_name)) then
|
|
vim.fn.sign_define(sign_name,
|
|
{text = config.icons.code_action_icon, texthl = "LspDiagnosticsSignHint"})
|
|
end
|
|
local winid = get_current_winid()
|
|
if code_action[winid] == nil then
|
|
code_action[winid] = {}
|
|
end
|
|
if code_action[winid].lightbulb_line ~= 0 then
|
|
vim.fn.sign_unplace(sign_group, {id = code_action[winid].lightbulb_line, buffer = "%"})
|
|
end
|
|
|
|
if line then
|
|
-- log("updatasign", line, sign_group, sign_name)
|
|
vim.fn.sign_place(line, sign_group, sign_name, "%",
|
|
{lnum = line + 1, priority = config.code_action_prompt.sign_priority})
|
|
code_action[winid].lightbulb_line = line
|
|
end
|
|
end
|
|
|
|
-- local need_check_diagnostic = {["go"] = true, ["python"] = true}
|
|
local need_check_diagnostic = {['python'] = true}
|
|
|
|
function code_action:render_action_virtual_text(line, diagnostics)
|
|
return function(err, actions, context)
|
|
if actions == nil or type(actions) ~= "table" or vim.tbl_isempty(actions) then
|
|
-- no actions cleanup
|
|
if config.code_action_prompt.virtual_text then
|
|
_update_virtual_text(nil)
|
|
end
|
|
if config.code_action_prompt.sign then
|
|
_update_sign(nil)
|
|
end
|
|
else
|
|
trace(err, line, diagnostics, actions, context)
|
|
if config.code_action_prompt.sign then
|
|
if need_check_diagnostic[vim.bo.filetype] then
|
|
if next(diagnostics) == nil then
|
|
_update_sign(nil)
|
|
else
|
|
-- no diagnostic, no code action sign..
|
|
_update_sign(line)
|
|
end
|
|
else
|
|
_update_sign(line)
|
|
end
|
|
end
|
|
|
|
if config.code_action_prompt.virtual_text then
|
|
if need_check_diagnostic[vim.bo.filetype] then
|
|
if next(diagnostics) == nil then
|
|
_update_virtual_text(nil)
|
|
else
|
|
_update_virtual_text(line, actions)
|
|
end
|
|
else
|
|
_update_virtual_text(line, actions)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
local special_buffers = {
|
|
["lspsagafinder"] = true,
|
|
["NvimTree"] = true,
|
|
["vista"] = true,
|
|
["guihua"] = true,
|
|
["lspinfo"] = true,
|
|
["markdown"] = true,
|
|
["text"] = true
|
|
}
|
|
-- local action_call_back = function (_,_)
|
|
-- return Action:action_callback()
|
|
-- end
|
|
|
|
local action_virtual_call_back = function(line, diagnostics)
|
|
return code_action:render_action_virtual_text(line, diagnostics)
|
|
end
|
|
|
|
local code_action_req = function(_call_back_fn, diagnostics)
|
|
local context = {diagnostics = diagnostics}
|
|
local params = vim.lsp.util.make_range_params()
|
|
params.context = context
|
|
local line = params.range.start.line
|
|
local callback = _call_back_fn(line, diagnostics)
|
|
vim.lsp.buf_request(0, "textDocument/codeAction", params, callback)
|
|
end
|
|
|
|
local function code_action_request(params)
|
|
local bufnr = vim.api.nvim_get_current_buf()
|
|
local method = 'textDocument/codeAction'
|
|
vim.lsp.buf_request_all(bufnr, method, params, function(results)
|
|
on_code_action_results(results, {bufnr = bufnr, method = method, params = params})
|
|
end)
|
|
end
|
|
|
|
code_action.code_action = function()
|
|
local diagnostics = vim.lsp.diagnostic.get_line_diagnostics()
|
|
local context = {diagnostics = diagnostics}
|
|
local params = vim.lsp.util.make_range_params()
|
|
params.context = context
|
|
-- vim.lsp.buf_request(0, "textDocument/codeAction", params, code_action.code_action_handler)
|
|
code_action_request(params)
|
|
end
|
|
|
|
code_action.range_code_action = function(startpos, endpos)
|
|
local context = {}
|
|
context.diagnostics = vim.lsp.diagnostic.get_line_diagnostics()
|
|
local params = util.make_given_range_params(startpos, endpos)
|
|
params.context = context
|
|
code_action_request(params)
|
|
end
|
|
|
|
code_action.code_action_prompt = function()
|
|
if special_buffers[vim.bo.filetype] then
|
|
log('skip buffer', vim.bo.filetype)
|
|
return
|
|
end
|
|
|
|
local diagnostics
|
|
if diagnostic.get_line_diagnostics then
|
|
-- old version
|
|
diagnostics = diagnostic.get_line_diagnostics()
|
|
else
|
|
local lnum = vim.api.nvim_win_get_cursor(0)[1] - 1
|
|
diagnostics = diagnostic.get(vim.api.nvim_get_current_buf(), {lnum = lnum})
|
|
end
|
|
|
|
local winid = get_current_winid()
|
|
code_action[winid] = code_action[winid] or {}
|
|
code_action[winid].lightbulb_line = code_action[winid].lightbulb_line or 0
|
|
code_action_req(action_virtual_call_back, diagnostics)
|
|
end
|
|
|
|
return code_action
|