Trans.nvim/lua/Trans/content.lua

138 lines
3.7 KiB
Lua
Raw Normal View History

local api = vim.api
local content = {
newline = function(self, value)
2023-01-31 23:17:03 +08:00
local index = self.size + 1
self.size = index
self.lines[index] = value
end,
newhl = function(self, opt)
2023-01-31 23:17:03 +08:00
local index = self.hl_size + 1
self.hl_size = index
self.highlights[index] = opt
end,
wipe = function(self)
local clear = require('table.clear')
clear(self.lines)
clear(self.highlights)
self.size = 0
2023-01-30 20:09:57 +08:00
self.hl_size = 0
end,
---将内容连接上对应的窗口
---@param self table content对象
---@param offset integer 起始行
attach = function(self, offset)
if self.size == 0 then
return
end
2023-01-30 20:09:57 +08:00
offset = offset or 0
2023-01-31 23:17:03 +08:00
local win = self.window
win:bufset('modifiable', true)
2023-01-22 11:15:48 +08:00
--- NOTE : 使用-1 则需要按顺序设置
2023-01-31 23:17:03 +08:00
api.nvim_buf_set_lines(win.bufnr, offset, -1, true, self.lines)
local hl
2023-01-31 23:17:03 +08:00
local highlights = self.highlights
local method = api.nvim_buf_add_highlight
for i = 1, self.hl_size do
2023-01-31 23:17:03 +08:00
hl = highlights[i]
method(win.bufnr, win.hl, hl.name, offset + hl.line, hl._start, hl._end)
end
2023-01-31 23:17:03 +08:00
win:bufset('modifiable', false)
end,
2023-01-21 14:02:38 +08:00
actual_height = function(self, wrap)
wrap = wrap or self.window:option('wrap')
if wrap then
local height = 0
local width = self.window.width
local lines = self.lines
for i = 1, self.size do
height = height + math.max(1, (math.ceil(lines[i]:width() / width)))
end
return height
2023-01-21 14:02:38 +08:00
else
return self.size
end
end,
2023-01-31 11:45:45 +08:00
format = function(self, opt)
local win_width = opt.width or self.window.width
local nodes = opt.nodes
local size = #nodes
assert(size > 1, 'check items size')
2023-01-31 23:17:03 +08:00
local tot_width = 0
local strs = {}
2023-01-31 23:17:03 +08:00
local str
for i = 1, size do
str = nodes[i].text
strs[i] = str
2023-01-31 23:17:03 +08:00
tot_width = tot_width + str:width()
end
2023-01-31 23:17:03 +08:00
local space = math.floor(((win_width - tot_width) / (size - 1)))
2023-01-31 11:45:45 +08:00
if opt.strict and space < 0 then
return false
end
local interval = (' '):rep(space)
2023-01-31 23:17:03 +08:00
return {
text = table.concat(strs, interval),
2023-01-31 23:17:03 +08:00
load_hl = function(_, content, line, col)
for _, item in ipairs(nodes) do
item:load_hl(content, line, col)
col = col + #item.text + space
end
end
}
end,
center = function(self, item)
2023-01-31 23:17:03 +08:00
local text = item.text
local space = bit.rshift(self.window.width - text:width(), 1)
item.text = (' '):rep(space) .. text
local load_hl = item.load_hl
2023-01-26 20:28:19 +08:00
item.load_hl = function(this, content, line, col)
load_hl(this, content, line, col + space)
end
return item
end,
addline = function(self, ...)
local strs = {}
local col = 0
2023-01-31 23:17:03 +08:00
local str
local line = self.size -- line is zero index
for i, node in ipairs { ... } do
2023-01-31 23:17:03 +08:00
str = node.text
strs[i] = str
2023-01-31 23:17:03 +08:00
node:load_hl(self, line, col)
col = col + #str
end
self:newline(table.concat(strs))
end
}
2023-01-31 11:45:45 +08:00
content.__index = content
---content的构造函数
---@param window table 链接的窗口
---@return table 构造好的content
return function(window)
vim.validate {
window = { window, 't' },
}
return setmetatable({
window = window,
size = 0,
hl_size = 0,
lines = {},
highlights = {},
2023-01-31 11:45:45 +08:00
}, content)
2023-01-31 23:17:03 +08:00
end