64 lines
1.5 KiB
Lua
Raw Normal View History

local item_meta = {
render = function(self, buffer, line, col)
if self[2] then
buffer:add_highlight(line, self[2], col, col + #self[1])
end
end,
}
local text_meta = {
render = function(self, buffer, line, col)
local items = self.items
local step = self.step or ''
local len = #step
for i = 1, self.size do
local item = items[i]
item:render(buffer, line, col)
col = col + #item[1] + len
end
end
}
item_meta.__index = item_meta
text_meta.__index = function(self, key)
2023-03-13 19:50:28 +08:00
return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil)
2023-01-31 23:17:03 +08:00
end
2023-01-26 20:28:19 +08:00
2023-01-26 20:28:19 +08:00
return {
item = function(text, highlight)
return setmetatable({
[1] = text,
[2] = highlight,
}, item_meta)
2023-01-26 20:28:19 +08:00
end,
text = function(items)
2023-01-26 20:28:19 +08:00
local strs = {}
local size = #items
assert(size > 1)
for i = 1, size do
strs[i] = items[i][1]
2023-01-26 20:28:19 +08:00
end
return setmetatable({
strs = strs,
size = size,
items = items,
}, text_meta)
end,
format = function(opts)
local text = opts.text
local size = text.size
local width = opts.width
local spin = opts.spin or ' '
local wid = text[1]:width()
local space = math.max(math.floor((width - wid) / (size - 1)), 0)
if space > 0 then
text.step = spin:rep(space)
end
return text
2023-01-26 20:28:19 +08:00
end,
}