feat: add engine tag hl

This commit is contained in:
JuanZoran 2023-01-22 22:01:47 +08:00
parent 5135f2f6f9
commit 7066ecfc7e
4 changed files with 118 additions and 100 deletions

View File

@ -54,20 +54,23 @@ M.conf = {
open = 'fold', open = 'fold',
close = 'fold', close = 'fold',
interval = 10, interval = 10,
},
tag = {
wait = '#519aba',
fail = '#e46876',
success = '#10b981',
},
engine = {
'本地',
} }
}, },
order = { order = { -- only work on hover mode
-- offline = {
'title', 'title',
'tag', 'tag',
'pos', 'pos',
'exchange', 'exchange',
'translation', 'translation',
'definition', 'definition',
-- },
-- online = {
-- -- TODO
-- },
}, },
icon = { icon = {
star = '', star = '',

View File

@ -1,13 +1,43 @@
local conf = require('Trans').conf
local m_window local m_window
local m_result local m_result
local m_content local m_content
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
local function set_title() local function set_title()
local title = m_window.contents[1] local title = m_window.contents[1]
local github = ' https://github.com/JuanZoran/Trans.nvim' local github = ' https://github.com/JuanZoran/Trans.nvim'
title:center_line(github, '@text.uri') title:center_line(github, '@text.uri')
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'
local wrap = title:line_wrap()
wrap('', round)
wrap(engine_ch .. '(' .. i .. ')', engine_us)
wrap('', round)
end
end end
local action = { local action = {
@ -25,8 +55,11 @@ local handle = {
return function(word) return function(word)
-- TODO :online query -- TODO :online query
local float = require('Trans').conf.float local float = conf.float
m_result = require('Trans.query.offline')(word) local engine_ch = '本地'
local engine_us = engine_map[engine_ch]
m_result = require('Trans.query.' .. engine_us)(word)
local opt = { local opt = {
relative = 'editor', relative = 'editor',
@ -43,11 +76,16 @@ return function(word)
m_window.animation = float.animation m_window.animation = float.animation
set_title() set_title()
m_content = m_window.contents[2] m_content = m_window.contents[2]
if m_result then
set_tag_hl(engine_us, 'success')
for _, proc in pairs(handle) do for _, proc in pairs(handle) do
proc() proc()
end end
else
set_tag_hl(engine_us, 'fail')
end
m_window:draw() m_window:draw()
m_window:open() m_window:open()

View File

@ -1,6 +1,5 @@
local api = vim.api local api = vim.api
local conf = require('Trans').conf local conf = require('Trans').conf
local icon = conf.icon
local m_window local m_window
local m_result local m_result
@ -9,13 +8,33 @@ local m_indent = ' '
local title = function(str) local title = function(str)
local wrapper = m_content:line_wrap() local wrapper = m_content:line_wrap()
-- wrapper('', 'TransTitleRound')
wrapper('', 'TransTitleRound') wrapper('', 'TransTitleRound')
wrapper(str, 'TransTitle') wrapper(str, 'TransTitle')
wrapper('', 'TransTitleRound') wrapper('', 'TransTitleRound')
-- wrapper('', 'TransTitleRound')
end end
local exist = function(str)
return str and str ~= ''
end
local process = {
title = function()
local line = m_content:items_wrap()
local icon = conf.icon
line.add_item(m_result.word, 'TransWord')
line.add_item('[' .. (exist(m_result.phonetic) and m_result.phonetic or icon.notfound) .. ']', 'TransPhonetic')
line.add_item((exist(m_result.collins) and icon.star:rep(m_result.collins) or icon.notfound), 'TransCollins')
line.add_item((m_result.oxford == 1 and icon.yes or icon.no))
line.load()
end,
tag = function()
if exist(m_result.tag) then
title('标签')
local tag_map = { local tag_map = {
zk = '中考', zk = '中考',
gk = '高考', gk = '高考',
@ -26,67 +45,6 @@ local tag_map = {
toefl = '托福', toefl = '托福',
gre = 'gre ', gre = 'gre ',
} }
local pos_map = {
a = '代词pron ',
c = '连接词conj ',
i = '介词prep ',
j = '形容词adj ',
m = '数词num ',
n = '名词n ',
p = '代词pron ',
r = '副词adv ',
u = '感叹词int ',
v = '动词v ',
x = '否定标记not ',
t = '不定式标记infm ',
d = '限定词determiner ',
}
local exchange_map = {
['p'] = '过去式 ',
['d'] = '过去分词 ',
['i'] = '现在分词 ',
['r'] = '比较级 ',
['t'] = '最高级 ',
['s'] = '复数 ',
['0'] = '原型 ',
['1'] = '类别 ',
['3'] = '第三人称单数',
['f'] = '第三人称单数',
}
local exist = function(str)
return str and str ~= ''
end
local process = {
title = function()
local line = m_content:items_wrap()
line.add_item(
m_result.word,
'TransWord'
)
line.add_item(
'[' .. (exist(m_result.phonetic) and m_result.phonetic or icon.notfound) .. ']',
'TransPhonetic'
)
line.add_item(
(exist(m_result.collins) and icon.star:rep(m_result.collins) or icon.notfound),
'TransCollins'
)
line.add_item(
(m_result.oxford == 1 and icon.yes or icon.no)
)
line.load()
end,
tag = function()
if exist(m_result.tag) then
title('标签')
local tags = {} local tags = {}
local size = 0 local size = 0
local interval = ' ' local interval = ' '
@ -109,6 +67,21 @@ local process = {
pos = function() pos = function()
if exist(m_result.pos) then if exist(m_result.pos) then
title('词性') title('词性')
local pos_map = {
a = '代词pron ',
c = '连接词conj ',
i = '介词prep ',
j = '形容词adj ',
m = '数词num ',
n = '名词n ',
p = '代词pron ',
r = '副词adv ',
u = '感叹词int ',
v = '动词v ',
x = '否定标记not ',
t = '不定式标记infm ',
d = '限定词determiner ',
}
for pos in vim.gsplit(m_result.pos, '/', true) do for pos in vim.gsplit(m_result.pos, '/', true) do
m_content:addline( m_content:addline(
@ -124,6 +97,18 @@ local process = {
exchange = function() exchange = function()
if exist(m_result.exchange) then if exist(m_result.exchange) then
title('词形变化') title('词形变化')
local exchange_map = {
['p'] = '过去式 ',
['d'] = '过去分词 ',
['i'] = '现在分词 ',
['r'] = '比较级 ',
['t'] = '最高级 ',
['s'] = '复数 ',
['0'] = '原型 ',
['1'] = '类别 ',
['3'] = '第三人称单数',
['f'] = '第三人称单数',
}
local interval = ' ' local interval = ' '
for exc in vim.gsplit(m_result.exchange, '/', true) do for exc in vim.gsplit(m_result.exchange, '/', true) do
@ -167,10 +152,8 @@ local process = {
end, end,
failed = function() failed = function()
m_content:addline( m_content:addline(conf.icon.notfound .. m_indent .. '没有找到相关的翻译', 'TransFailed')
icon.notfound .. m_indent .. '没有找到相关的翻译', m_window:set_width(m_content.lines[1]:width())
'TransFailed'
)
end, end,
} }
@ -182,11 +165,10 @@ local try_del_keymap = function()
end end
local cmd_id local cmd_id
local pin = false local pin
local action
local next local next
local _word
local action
action = { action = {
pageup = function() pageup = function()
m_window:normal('gg') m_window:normal('gg')
@ -255,10 +237,10 @@ action = {
end, end,
play = vim.fn.has('linux') == 1 and function() play = vim.fn.has('linux') == 1 and function()
vim.fn.jobstart('echo ' .. _word .. ' | festival --tts') vim.fn.jobstart('echo ' .. m_result.word .. ' | festival --tts')
end or function() end or function()
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua/') .. 'tts/say.js' local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua/') .. 'tts/say.js'
vim.fn.jobstart('node ' .. file .. ' ' .. _word) vim.fn.jobstart('node ' .. file .. ' ' .. m_result.word)
end, end,
} }
@ -267,12 +249,11 @@ return function(word)
vim.validate { vim.validate {
word = { word, 's' }, word = { word, 's' },
} }
_word = word
-- 目前只处理了本地数据库的查询 m_result = require('Trans.query.offline')(word) -- 目前只处理了本地数据库的查询
m_result = require('Trans.query.offline')(word)
local hover = conf.hover local hover = conf.hover
local opt = { m_window = require("Trans.window")(false, {
relative = 'cursor', relative = 'cursor',
width = hover.width, width = hover.width,
height = hover.height, height = hover.height,
@ -280,23 +261,23 @@ return function(word)
border = hover.border, border = hover.border,
col = 2, col = 2,
row = 2, row = 2,
} })
m_window = require("Trans.window")(false, opt)
m_window.animation = hover.animation m_window.animation = hover.animation
m_content = m_window.contents[1] m_content = m_window.contents[1]
if m_result then if m_result then
if hover.auto_play then if hover.auto_play then action.play() end
action.play()
end
for _, field in ipairs(conf.order) do for _, field in ipairs(conf.order) do
process[field]() process[field]()
end end
for act, key in pairs(hover.keymap) do
vim.keymap.set('n', key, action[act], { buffer = true, silent = true })
end
else else
process.failed() process.failed()
m_window:set_width(m_content.lines[1]:width())
end end
m_window:draw() m_window:draw()
@ -306,13 +287,10 @@ return function(word)
m_window:set_height(height) m_window:set_height(height)
end end
-- action.pageup()
m_window:open(function() m_window:open(function()
m_window:set('wrap', true) m_window:set('wrap', true)
end) end)
-- Auto Close -- Auto Close
cmd_id = api.nvim_create_autocmd( cmd_id = api.nvim_create_autocmd(
hover.auto_close_events, { hover.auto_close_events, {
@ -324,10 +302,4 @@ return function(word)
api.nvim_del_autocmd(cmd_id) api.nvim_del_autocmd(cmd_id)
end, end,
}) })
if m_result then
for act, key in pairs(hover.keymap) do
vim.keymap.set('n', key, action[act], { buffer = true, silent = true })
end
end
end end

View File

@ -192,6 +192,10 @@ local window = {
self.winid = api.nvim_open_win(self.bufnr, entry, self.config) self.winid = api.nvim_open_win(self.bufnr, entry, self.config)
self:open(callback) self:open(callback)
end,
set_hl = function(self, name, hl)
api.nvim_set_hl(self.hl, name, hl)
end end
} }
@ -258,6 +262,7 @@ return function(entry, option)
win:bufset('filetype', 'Trans') win:bufset('filetype', 'Trans')
win:bufset('buftype', 'nofile') win:bufset('buftype', 'nofile')
api.nvim_win_set_hl_ns(win.winid, win.hl)
---@diagnostic disable-next-line: return-type-mismatch ---@diagnostic disable-next-line: return-type-mismatch
return win return win
end end