Trans.nvim/lua/Trans/core/process.lua

40 lines
1.0 KiB
Lua
Raw Normal View History

2023-01-09 21:30:16 +08:00
local type_check = require("Trans.util.debug").type_check
2023-01-09 23:20:56 +08:00
2023-01-09 23:49:16 +08:00
local function format(component, interval)
2023-01-09 23:20:56 +08:00
end
2023-01-09 21:30:16 +08:00
local function process (opts)
type_check {
2023-01-09 23:20:56 +08:00
opts = { opts, 'table' },
2023-01-09 23:49:16 +08:00
['opts.field'] = { opts.field , 'table' },
['opts.order'] = { opts.order , 'table' },
['opts.win'] = { opts.win , 'table' },
['opts.engine'] = { opts.engine , 'table' },
2023-01-09 21:30:16 +08:00
}
2023-01-09 23:20:56 +08:00
2023-01-09 21:30:16 +08:00
local content = require('Trans.component.content'):new()
for _, v in ipairs(opts.order) do
2023-01-09 23:49:16 +08:00
local component = require("Trans.component." .. opts.engine .. '.' .. v)
for _, items in ipairs(component) do
format(items)
content:insert(items)
end
2023-01-09 21:30:16 +08:00
end
2023-01-09 23:20:56 +08:00
local lines, __highlight = content:data()
vim.api.nvim_buf_set_lines(opts.bufnr, 0, lines)
for line, l_hl in ipairs(__highlight) do
for _, hl in ipairs(l_hl) do
vim.api.nvim_buf_add_highlight(opts.bufnr, line, hl.name, hl._start, hl._end)
end
end
2023-01-09 21:30:16 +08:00
end
return process