Trans.nvim/lua/Trans/view/float.lua

103 lines
2.2 KiB
Lua
Raw Normal View History

2023-01-22 22:01:47 +08:00
local conf = require('Trans').conf
2023-01-21 00:24:58 +08:00
local m_window
local m_result
2023-01-22 11:15:48 +08:00
local m_content
2023-01-21 00:24:58 +08:00
2023-01-22 22:01:47 +08:00
local engine_map = {
['本地'] = 'offline',
['百度'] = 'baidu',
['有道'] = 'youdao',
}
local function set_tag_hl(name, status)
local hl = conf.float.tag[status]
m_window:set_hl(name, {
fg = '#000000',
bg = hl,
})
m_window:set_hl(name .. 'round', {
fg = hl,
})
end
2023-01-21 00:24:58 +08:00
local function set_title()
local title = m_window.contents[1]
2023-01-22 11:15:48 +08:00
local github = ' https://github.com/JuanZoran/Trans.nvim'
2023-01-21 00:24:58 +08:00
local item = title.item_wrap
2023-01-22 22:01:47 +08:00
title:addline(
title:center(item(github, '@text.uri'))
)
local text = title.text_wrap
local format = '%s(%d)'
2023-01-22 22:01:47 +08:00
for i, engine_ch in ipairs(conf.float.engine) do
local engine_us = engine_map[engine_ch]
set_tag_hl(engine_us, 'wait')
local round = engine_us .. 'round'
title:addline(
text(
item('', round),
item(format:format(engine_ch, i), engine_us),
item('', round)
)
)
2023-01-22 22:01:47 +08:00
end
2023-01-21 00:24:58 +08:00
end
local action = {
quit = function()
2023-01-21 00:24:58 +08:00
m_window:try_close()
end,
}
2023-01-25 11:04:18 +08:00
local function process()
end
2023-01-22 11:15:48 +08:00
2023-01-21 00:24:58 +08:00
return function(word)
-- TODO :online query
2023-01-22 22:01:47 +08:00
local float = conf.float
local engine_ch = '本地'
local engine_us = engine_map[engine_ch]
m_result = require('Trans.query.' .. engine_us)(word)
2023-01-21 00:24:58 +08:00
2023-01-22 11:15:48 +08:00
local opt = {
2023-01-21 00:24:58 +08:00
relative = 'editor',
width = float.width,
height = float.height,
border = float.border,
title = float.title,
2023-01-22 11:15:48 +08:00
row = bit.rshift((vim.o.lines - float.height), 1),
col = bit.rshift((vim.o.columns - float.width), 1),
zindex = 50,
2023-01-21 00:24:58 +08:00
}
2023-01-22 11:15:48 +08:00
2023-01-22 22:01:47 +08:00
m_window = require('Trans.window')(true, opt)
2023-01-21 00:24:58 +08:00
m_window.animation = float.animation
set_title()
2023-01-22 11:15:48 +08:00
m_content = m_window.contents[2]
2023-01-22 22:01:47 +08:00
if m_result then
set_tag_hl(engine_us, 'success')
2023-01-25 11:04:18 +08:00
process()
2023-01-22 22:01:47 +08:00
else
set_tag_hl(engine_us, 'fail')
2023-01-22 11:15:48 +08:00
end
2023-01-21 00:24:58 +08:00
m_window:draw()
m_window:open()
m_window:bufset('bufhidden', 'wipe')
for act, key in pairs(float.keymap) do
m_window:map(key, action[act])
end
end