fix: fix wrong display size caculate remove util.display_size func

This commit is contained in:
JuanZoran 2023-03-24 00:10:14 +08:00
parent b44ab4bf2e
commit 9f5a81249c
2 changed files with 33 additions and 42 deletions

View File

@ -103,20 +103,6 @@ function M.display_width(lines)
return width return width
end end
---Calculates the height and width of the text to be displayed
---@param lines string[] text to be displayed
---@param width integer width of the window
---@return { height: integer, width: integer } _ display height and width
function M.display_size(lines, width)
local ds_height, ds_width = 0, 0
for _, line in ipairs(lines) do
local wid = line:width()
ds_height = ds_height + math.max(1, (math.ceil(wid / width)))
ds_width = math.max(wid, ds_width)
end
return { height = ds_height, width = ds_width }
end
---Center node utility function ---Center node utility function
---@param node string -- TODO :Node ---@param node string -- TODO :Node

View File

@ -160,18 +160,18 @@ function M:defer()
self.buffer:set("modifiable", false) self.buffer:set("modifiable", false)
local auto_close_events = self.opts.auto_close_events local auto_close_events = self.opts.auto_close_events
if auto_close_events then if not auto_close_events then return end
vim.api.nvim_create_autocmd(auto_close_events, {
callback = function(opts) vim.api.nvim_create_autocmd(auto_close_events, {
vim.defer_fn(function() callback = function(opts)
if not self.pin and vim.api.nvim_get_current_win() ~= self.window.winid then vim.defer_fn(function()
pcall(vim.api.nvim_del_autocmd, opts.id) if not self.pin and vim.api.nvim_get_current_win() ~= self.window.winid then
self:destroy() pcall(vim.api.nvim_del_autocmd, opts.id)
end self:destroy()
end, 0) end
end, end, 0)
}) end,
end })
end end
---Display Result in hover window ---Display Result in hover window
@ -186,7 +186,8 @@ function M:process(data)
return return
end end
local opts = self.opts local opts = self.opts
local util = Trans.util
local buffer = self.buffer local buffer = self.buffer
if opts.auto_play then if opts.auto_play then
@ -194,7 +195,7 @@ function M:process(data)
end end
-- vim.pretty_print(result) -- vim.pretty_print(result)
Trans.util.main_loop(function() util.main_loop(function()
if not buffer:is_valid() then if not buffer:is_valid() then
buffer:init() buffer:init()
else else
@ -205,24 +206,28 @@ function M:process(data)
self:load(result, name, opts.order[name]) self:load(result, name, opts.order[name])
end) end)
local display_size = Trans.util.display_size(buffer:lines(), opts.width)
local window = self.window local window = self.window
local lines = buffer:lines()
local width =
window and window:is_valid() and
(opts.auto_resize and
math.max(
math.min(opts.width, util.display_width(lines) + opts.padding),
math.min(data.str:width(), opts.split_width)
)
or opts.width)
or math.min(opts.width, util.display_width(lines) + opts.padding)
local height = math.min(opts.height, util.display_height(lines, width))
if window and window:is_valid() then if window and window:is_valid() then
if opts.auto_resize then window:resize { width = width, height = height }
display_size.width = math.max(
math.min(opts.width, display_size.width + opts.padding),
math.min(data.str:width(), opts.split_width)
)
else
display_size.width = nil
end
window:resize(display_size)
else else
window = self:init_window { window = self:init_window {
height = math.min(opts.height, display_size.height), height = height,
width = math.min(opts.width, display_size.width + opts.padding), width = width,
} }
end end