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

118 lines
2.9 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-26 20:28:19 +08:00
local node = require("Trans.node")
local t = node.text
local it = node.item
2023-01-31 23:17:03 +08:00
local engine_map = {
baidu = '百度',
youdao = '有道',
iciba = 'iciba',
offline = '本地',
}
2023-01-22 22:01:47 +08:00
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()
2023-01-31 23:17:03 +08:00
local title = m_window:new_content()
2023-01-22 11:15:48 +08:00
local github = ' https://github.com/JuanZoran/Trans.nvim'
2023-01-21 00:24:58 +08:00
title:addline(
2023-01-26 20:28:19 +08:00
title:center(it(github, '@text.uri'))
)
2023-01-31 23:17:03 +08:00
local f = '%s(%d)'
local tags = {}
local load_tag = function(engine, index)
set_tag_hl(engine, 'wait')
local round = engine .. 'round'
table.insert(tags, t(
it('', round),
it(f:format(engine_map[engine], index), engine),
it('', round)
))
2023-01-22 22:01:47 +08:00
end
2023-01-31 23:17:03 +08:00
load_tag('offline', 1)
title:addline(unpack(tags))
title:newline('')
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-31 23:17:03 +08:00
local exist = function (str)
return str and str ~= ''
end
2023-01-21 00:24:58 +08:00
2023-01-25 11:04:18 +08:00
local function process()
2023-01-26 20:28:19 +08:00
-- TODO :
2023-01-31 23:17:03 +08:00
local icon = conf.icon
m_content:addline(m_content:format {
nodes = {
it(m_result.word, 'TransWord'),
t(
it('['),
it(exist(m_result.phonetic) and m_result.phonetic or icon.notfound, 'TransPhonetic'),
it(']')
),
it(m_result.collins and icon.star:rep(m_result.collins) or icon.notfound, 'TransCollins'),
it(m_result.oxford == 1 and icon.yes or icon.no)
},
width = math.floor(m_window.width * 0.5)
})
m_content:addline(it('该窗口还属于实验性功能 .... '))
2023-01-25 11:04:18 +08:00
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
2023-01-31 11:45:45 +08:00
vim.notify('[注意]: float窗口目前还待开发, 如果需要input查询功能, 请将窗口改成hover',
vim.log.WARN)
2023-01-22 11:15:48 +08:00
local opt = {
2023-01-30 20:09:57 +08:00
relative = 'editor',
width = float.width,
height = float.height,
border = float.border,
title = float.title,
animation = float.animation,
row = bit.rshift((vim.o.lines - float.height), 1),
col = bit.rshift((vim.o.columns - float.width), 1),
2023-01-31 23:17:03 +08:00
zindex = 20,
2023-01-21 00:24:58 +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
set_title()
2023-01-31 23:17:03 +08:00
m_content = m_window:new_content()
m_result = require('Trans.query.offline')(word)
2023-01-22 22:01:47 +08:00
if m_result then
2023-01-31 23:17:03 +08:00
set_tag_hl('offline', 'success')
2023-01-25 11:04:18 +08:00
process()
2023-01-22 22:01:47 +08:00
else
2023-01-31 23:17:03 +08:00
set_tag_hl('offline', 'fail')
2023-01-22 11:15:48 +08:00
end
2023-01-21 00:24:58 +08:00
m_window:open()
m_window:bufset('bufhidden', 'wipe')
for act, key in pairs(float.keymap) do
m_window:map(key, action[act])
end
end