fix: fix buffer line index error and online process need to be fixed

This commit is contained in:
JuanZoran 2023-03-13 22:39:40 +08:00
parent 693dd0c7aa
commit 02fe6c510a
3 changed files with 43 additions and 23 deletions

View File

@ -121,20 +121,23 @@ end
---Set line content ---Set line content
---@param nodes string|table|table[] string -> as line content | table -> as a node | table[] -> as node[] ---@param nodes string|table|table[] string -> as line content | table -> as a node | table[] -> as node[]
---@param linenr number? line number should be set[one index] or let it be nil to append ---@param one_index number? line number should be set[one index] or let it be nil to append
function buffer:setline(nodes, linenr) function buffer:setline(nodes, one_index)
self:set('modifiable', true) self:set('modifiable', true)
linenr = linenr and linenr - 1 or self:line_count() if not one_index then
local line_count = self:line_count()
one_index = (line_count == 1 and self[1] == '') and 1 or line_count + 1
end
local zero_index = one_index - 1
if type(nodes) == 'string' then if type(nodes) == 'string' then
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes }) api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes })
else else
if type(nodes[1]) == 'string' then if type(nodes[1]) == 'string' then
-- FIXME :set [nodes] type as node -- FIXME :set [nodes] type as node
---@diagnostic disable-next-line: assign-type-mismatch ---@diagnostic disable-next-line: assign-type-mismatch
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes[1] }) api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { nodes[1] })
nodes:render(self, linenr, 0) nodes:render(self, one_index, 0)
else else
local strs = {} local strs = {}
local num = #nodes local num = #nodes
@ -142,11 +145,11 @@ function buffer:setline(nodes, linenr)
strs[i] = nodes[i][1] strs[i] = nodes[i][1]
end end
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { table.concat(strs) }) api.nvim_buf_set_lines(self.bufnr, zero_index, zero_index, false, { table.concat(strs) })
local col = 0 local col = 0
for i = 1, num do for i = 1, num do
local node = nodes[i] local node = nodes[i]
node:render(self, linenr, col) node:render(self, one_index, col)
col = col + #node[1] col = col + #node[1]
end end
end end
@ -186,7 +189,6 @@ function buffer.new()
extmarks = {}, extmarks = {},
}, buffer) }, buffer)
new_buf:set('modifiable', false) new_buf:set('modifiable', false)
new_buf:set('filetype', 'Trans') new_buf:set('filetype', 'Trans')
new_buf:set('buftype', 'nofile') new_buf:set('buftype', 'nofile')

View File

@ -90,7 +90,6 @@ function M:init_window(opts)
opts.animation = m_opts.animation opts.animation = m_opts.animation
self.window = Trans.window.new(opts) self.window = Trans.window.new(opts)
return self.window return self.window
end end
@ -120,27 +119,47 @@ function M:wait(tbl, name, timeout)
local interval = math.floor(timeout / width) local interval = math.floor(timeout / width)
local pause = Trans.util.pause local pause = Trans.util.pause
local buffer = self.buffer
for i = 1, width do for i = 1, width do
if tbl[name] ~= nil then break end if tbl[name] ~= nil then break end
self.buffer[1] = update_text(i) buffer[1] = update_text(i)
self.buffer:add_highlight(1, 'MoreMsg') buffer:add_highlight(1, 'MoreMsg')
pause(interval) pause(interval)
end end
buffer[1] = ''
-- TODO : End waitting animation -- TODO : End waitting animation
end end
function M:process(_, result) function M:process(_, result)
if not self.window then self:init_window() end -- local node = Trans.util.node
-- local it, t, f = node.item, node.text, node.format
-- self.buffer:setline(it('hello', 'MoreMsg'))
local opts = self.opts
local node = Trans.util.node for _, field in ipairs(opts.order) do
local it, t, f = node.item, node.text, node.format if result[field] then
self.buffer:setline(it('hello', 'MoreMsg')) self:load(result, field)
end
end
-- for _, field in ipairs(self.opts.order) do local win = self.window
-- self:load(result, field) if not win then
-- end win = self:init_window()
elseif win:width() ~= opts.width then
win:expand {
field = 'width',
to = opts.width
}
elseif win:height() ~= opts.height then
win:expand {
field = 'height',
to = opts.height
}
end
win:set('wrap', true)
end end
---Check if hover window and buffer are valid ---Check if hover window and buffer are valid
@ -149,7 +168,6 @@ function M:is_available()
return self.buffer:is_valid() and self.window:is_valid() return self.buffer:is_valid() and self.window:is_valid()
end end
return M return M
-- local function handle_keymap(win, word) -- local function handle_keymap(win, word)
-- local keymap = hover.keymap -- local keymap = hover.keymap

View File

@ -32,7 +32,7 @@ local strategy = {
hover.buffer:setline(it(word, 'TransWord')) hover.buffer:setline(it(word, 'TransWord'))
else else
hover.buffer:setline(f { hover.buffer:setline(f {
width = hover.width, width = hover.opts.width,
text = t { text = t {
it(word, 'TransWord'), it(word, 'TransWord'),
t { t {