Trans.nvim/lua/Trans/wrapper/translate.lua

68 lines
1.6 KiB
Lua
Raw Normal View History

2023-01-09 18:57:20 +08:00
local type_check = require("Trans.util.debug").type_check
-- Default conf
2023-01-09 21:30:16 +08:00
local conf = require("Trans.conf.loader").loaded_conf
2023-01-09 18:57:20 +08:00
local core = require("Trasn.core")
2023-01-09 21:30:16 +08:00
2023-01-09 18:57:20 +08:00
local function get_opts(opts)
local default_conf = {
method = vim.api.nvim_get_mode(),
engine = {
'local',
-- TODO : other engine
},
2023-01-09 21:30:16 +08:00
win = {
style = 'cursor',
width = conf.window.cursor.width,
height = conf.window.cursor.height
},
2023-01-09 18:57:20 +08:00
}
if type(opts.engine) == 'string' then
opts.engine = { opts.engine }
end
if opts.win then
2023-01-09 21:30:16 +08:00
local width, height = opts.win.width, opts.win.height
if width and width > 0 and width <= 1 then
opts.win.width = math.floor(vim.o.columns * width)
end
if height and height > 0 and height <= 1 then
opts.win.height = math.floor(vim.o.lines * opts.win.height)
end
2023-01-09 18:57:20 +08:00
end
2023-01-09 21:30:16 +08:00
2023-01-09 18:57:20 +08:00
return vim.tbl_extend('force', default_conf, opts)
end
local function translate(opts)
type_check {
opts = { opts, 'table' }
}
2023-01-09 21:30:16 +08:00
--- TODO : 异步请求
-- NOTE : 这里只处理了本地的请求
opts = get_opts(opts or {})
2023-01-09 18:57:20 +08:00
local field = core.query(opts)
2023-01-09 21:30:16 +08:00
local proc_opts = {
2023-01-09 18:57:20 +08:00
field = field,
2023-01-09 21:30:16 +08:00
order = conf.order['offline'],
engine = 'offline',
win_style = opts.win.style,
2023-01-09 18:57:20 +08:00
}
2023-01-09 21:30:16 +08:00
local content, highlight = core.process(proc_opts)
2023-01-09 18:57:20 +08:00
2023-01-09 21:30:16 +08:00
local win_opts = {
win = opts.win,
2023-01-09 18:57:20 +08:00
content = content,
2023-01-09 21:30:16 +08:00
highlight = highlight,
2023-01-09 18:57:20 +08:00
}
2023-01-09 21:30:16 +08:00
core.show_win(win_opts)
2023-01-09 18:57:20 +08:00
end
return translate