feat: perfect the hover view ui
This commit is contained in:
parent
6d1bfbc437
commit
f10fb38c02
21
lua/Trans/core/action.lua
Normal file
21
lua/Trans/core/action.lua
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
|
||||||
|
local function feedkey(mode, key)
|
||||||
|
vim.api.nvim_feedkeys(vim.api.nvim_replace_termcodes(key, true, false, true), mode, false)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local M = {
|
||||||
|
pageup = function (bufnr)
|
||||||
|
return function ()
|
||||||
|
vim.api.nvim_buf_call(bufnr, function ()
|
||||||
|
-- TODO :
|
||||||
|
end)
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
pagedown = function ()
|
||||||
|
feedkey('n', '<C-d>')
|
||||||
|
end
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return M
|
@ -1,7 +1,7 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
local get_width = vim.fn.strdisplaywidth
|
M.get_width = vim.fn.strdisplaywidth
|
||||||
-- local get_width = vim.fn.strwidth
|
-- local get_width = vim.fn.strwidth
|
||||||
-- local get_width = vim.api.nvim_strwidth
|
-- local get_width = vim.api.nvim_strwidth
|
||||||
|
|
||||||
@ -37,7 +37,7 @@ function M:alloc_block(s_row, s_col, height, width)
|
|||||||
|
|
||||||
__newindex = function(_, key, value)
|
__newindex = function(_, key, value)
|
||||||
assert(0 < key and key <= height)
|
assert(0 < key and key <= height)
|
||||||
local wid = get_width(value)
|
local wid = self.get_width(value)
|
||||||
if wid > width then
|
if wid > width then
|
||||||
error('check out the str width: Max ->' .. self.width .. ' str ->' .. wid)
|
error('check out the str width: Max ->' .. self.width .. ' str ->' .. wid)
|
||||||
else
|
else
|
||||||
@ -50,20 +50,20 @@ function M:alloc_block(s_row, s_col, height, width)
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
function M:alloc_newline()
|
function M:alloc_items()
|
||||||
self.len = self.len + 1
|
|
||||||
local items = {}
|
local items = {}
|
||||||
local len = 0
|
local len = 0
|
||||||
local size = 0
|
local size = 0
|
||||||
return {
|
return {
|
||||||
add_item = function(item, highlight)
|
add_item = function(item, highlight)
|
||||||
size = size + 1
|
size = size + 1
|
||||||
local wid = get_width(item)
|
local wid = self.get_width(item)
|
||||||
items[size] = { item, highlight }
|
items[size] = { item, highlight }
|
||||||
len = len + wid
|
len = len + wid
|
||||||
end,
|
end,
|
||||||
|
|
||||||
load_line = function()
|
load = function()
|
||||||
|
self.len = self.len + 1
|
||||||
local space = math.floor((self.width - len) / (size - 1))
|
local space = math.floor((self.width - len) / (size - 1))
|
||||||
assert(space > 0)
|
assert(space > 0)
|
||||||
local interval = (' '):rep(space)
|
local interval = (' '):rep(space)
|
||||||
@ -71,7 +71,7 @@ function M:alloc_newline()
|
|||||||
local function load_item(index)
|
local function load_item(index)
|
||||||
if items[index][2] then
|
if items[index][2] then
|
||||||
local _start = #value
|
local _start = #value
|
||||||
local _end = _start + #items[index][2]
|
local _end = _start + #items[index][1]
|
||||||
table.insert(self.highlights[self.len], {
|
table.insert(self.highlights[self.len], {
|
||||||
name = items[index][2],
|
name = items[index][2],
|
||||||
_start = _start,
|
_start = _start,
|
||||||
@ -92,12 +92,35 @@ function M:alloc_newline()
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function M:alloc_text()
|
||||||
|
local value = ''
|
||||||
|
return {
|
||||||
|
add_text = function(text, highlight)
|
||||||
|
if highlight then
|
||||||
|
local _start = #value
|
||||||
|
local _end = _start + #text
|
||||||
|
table.insert(self.highlights[self.len + 1], {
|
||||||
|
name = highlight,
|
||||||
|
_start = _start,
|
||||||
|
_end = _end,
|
||||||
|
})
|
||||||
|
end
|
||||||
|
value = value .. text
|
||||||
|
end,
|
||||||
|
load = function ()
|
||||||
|
self.len = self.len + 1
|
||||||
|
self.lines[self.len] = value
|
||||||
|
end
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
function M:addline(text, highlight)
|
function M:addline(text, highlight)
|
||||||
self.len = self.len + 1
|
self.len = self.len + 1
|
||||||
if highlight then
|
if highlight then
|
||||||
table.insert(self.highlights[self.len], {
|
table.insert(self.highlights[self.len], {
|
||||||
name = highlight,
|
name = highlight,
|
||||||
_start = 1,
|
_start = 0,
|
||||||
_end = -1
|
_end = -1
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
local M = {}
|
||||||
local icon = require('Trans').conf.icon
|
local icon = require('Trans').conf.icon
|
||||||
|
|
||||||
-- local components = {
|
-- local components = {
|
||||||
@ -53,21 +54,32 @@ local function exist(res)
|
|||||||
return res and res ~= ''
|
return res and res ~= ''
|
||||||
end
|
end
|
||||||
|
|
||||||
M = {
|
local function expl(c, text)
|
||||||
|
local t = c:alloc_text()
|
||||||
|
t.add_text('', 'TransTitleRound')
|
||||||
|
t.add_text(text, 'TransTitle')
|
||||||
|
t.add_text('', 'TransTitleRound')
|
||||||
|
t.load()
|
||||||
|
end
|
||||||
|
|
||||||
|
local indent = ' '
|
||||||
|
|
||||||
|
M.hover = {
|
||||||
title = function(result, content)
|
title = function(result, content)
|
||||||
local line = content:alloc_newline()
|
local line = content:alloc_items()
|
||||||
line.add_item(result.word, 'TransWord')
|
line.add_item(result.word, 'TransWord')
|
||||||
local pho = ('[' .. (exist(result.phonetic) and result.phonetic or icon.notfound) .. ']')
|
local pho = ('[' .. (exist(result.phonetic) and result.phonetic or icon.notfound) .. ']')
|
||||||
-- line.add_item(pho, 'TransPhonetic', #pho)
|
-- line.add_item(pho, 'TransPhonetic', #pho)
|
||||||
line.add_item(pho, 'TransPhonetic')
|
line.add_item(pho, 'TransPhonetic')
|
||||||
line.add_item((exist(result.collins) and icon.star:rep(result.collins) or icon.notfound))
|
line.add_item((exist(result.collins) and icon.star:rep(result.collins) or icon.notfound), 'TransCollins')
|
||||||
line.add_item((exist(result.oxford) and icon.yes or icon.no))
|
line.add_item((result.oxford == 1 and icon.yes or icon.no))
|
||||||
line.load_line()
|
line.load()
|
||||||
end,
|
end,
|
||||||
|
|
||||||
tag = function(result, content)
|
tag = function(result, content)
|
||||||
if exist(result.tag) then
|
if exist(result.tag) then
|
||||||
content:addline('标签:', 'TransRef')
|
expl(content, '标签')
|
||||||
|
|
||||||
local tags = vim.tbl_map(function(tag)
|
local tags = vim.tbl_map(function(tag)
|
||||||
return tag_map[tag]
|
return tag_map[tag]
|
||||||
end, vim.split(result.tag, ' ', { plain = true, trimempry = true }))
|
end, vim.split(result.tag, ' ', { plain = true, trimempry = true }))
|
||||||
@ -75,7 +87,7 @@ M = {
|
|||||||
local size = #tags
|
local size = #tags
|
||||||
local i = 1
|
local i = 1
|
||||||
while i <= size do
|
while i <= size do
|
||||||
content:addline(' ' .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''),
|
content:addline(indent .. tags[i] .. ' ' .. (tags[i + 1] or '') .. ' ' .. (tags[i + 2] or ''),
|
||||||
'TransTag')
|
'TransTag')
|
||||||
i = i + 3
|
i = i + 3
|
||||||
end
|
end
|
||||||
@ -85,9 +97,9 @@ M = {
|
|||||||
|
|
||||||
pos = function(result, content)
|
pos = function(result, content)
|
||||||
if exist(result.pos) then
|
if exist(result.pos) then
|
||||||
content:addline('词性:', 'TransRef')
|
expl(content, '词性')
|
||||||
vim.tbl_map(function(pos)
|
vim.tbl_map(function(pos)
|
||||||
content:addline(' ' .. pos_map[pos:sub(1, 1)] .. pos:sub(3) .. '%', 'TransPos')
|
content:addline(indent .. pos_map[pos:sub(1, 1)] .. pos:sub(3) .. '%', 'TransPos')
|
||||||
end, vim.split(result.pos, '/', { plain = true, trimempry = true }))
|
end, vim.split(result.pos, '/', { plain = true, trimempry = true }))
|
||||||
|
|
||||||
content:addline('')
|
content:addline('')
|
||||||
@ -96,10 +108,10 @@ M = {
|
|||||||
|
|
||||||
exchange = function(result, content)
|
exchange = function(result, content)
|
||||||
if exist(result.exchange) then
|
if exist(result.exchange) then
|
||||||
content:addline('词性变化:', 'TransRef')
|
expl(content, '词形变化')
|
||||||
|
|
||||||
vim.tbl_map(function(exc)
|
vim.tbl_map(function(exc)
|
||||||
content:addline(' ' .. exchange_map[exc:sub(1, 1)] .. ' ' .. exc:sub(3), 'TransExchange')
|
content:addline(indent .. exchange_map[exc:sub(1, 1)] .. ' ' .. exc:sub(3), 'TransExchange')
|
||||||
-- content:addline(' ' .. exchange_map[exc:sub(1, 1)] .. exc:sub(2), 'TransExchange')
|
|
||||||
end, vim.split(result.exchange, '/', { plain = true, trimempry = true }))
|
end, vim.split(result.exchange, '/', { plain = true, trimempry = true }))
|
||||||
|
|
||||||
content:addline('')
|
content:addline('')
|
||||||
@ -107,46 +119,30 @@ M = {
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
translation = function(result, content)
|
translation = function(result, content)
|
||||||
if result.translation and result.translation ~= '' then
|
expl(content, '中文翻译')
|
||||||
local ref = {
|
|
||||||
{ '中文翻译:', 'TransRef' }
|
|
||||||
}
|
|
||||||
|
|
||||||
local translations = {
|
vim.tbl_map(function(trs)
|
||||||
highlight = 'TransTranslation',
|
content:addline(indent .. trs, 'TransTranslation')
|
||||||
indent = 4,
|
end, vim.split(result.translation, '\n', { plain = true, trimempry = true }))
|
||||||
emptyline = true,
|
|
||||||
}
|
|
||||||
for trans in vim.gsplit(result.translation, '\n', true) do
|
|
||||||
table.insert(translations, trans)
|
|
||||||
end
|
|
||||||
|
|
||||||
return { ref, translations }
|
content:addline('')
|
||||||
end
|
|
||||||
end,
|
end,
|
||||||
|
|
||||||
|
|
||||||
definition = function(result, content)
|
definition = function(result, content)
|
||||||
if result.definition and result.definition ~= '' then
|
if exist(result.definition) then
|
||||||
local ref = {
|
expl(content, '英文注释')
|
||||||
{ '英文注释:', 'TransRef' }
|
|
||||||
}
|
|
||||||
|
|
||||||
local definitions = {
|
vim.tbl_map(function(def)
|
||||||
highlight = 'TransDefinition',
|
content:addline(def, 'TransDefinition')
|
||||||
indent = 4,
|
end, vim.split(indent .. result.definition, '\n', { plain = true, trimempry = true }))
|
||||||
emptyline = true,
|
|
||||||
}
|
|
||||||
|
|
||||||
for defin in vim.gsplit(result.definition, '\n', true) do
|
content:addline('')
|
||||||
if defin ~= '' then
|
|
||||||
table.insert(definitions, defin)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
return { ref, definitions }
|
|
||||||
end
|
end
|
||||||
end
|
end,
|
||||||
|
failed = function(content)
|
||||||
|
content:addline(icon.notfound .. indent .. '没有找到相关的翻译')
|
||||||
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -36,23 +36,18 @@ M.translate = function(method, view)
|
|||||||
|
|
||||||
win.init(view)
|
win.init(view)
|
||||||
local result = api.query('offline', word)
|
local result = api.query('offline', word)
|
||||||
|
local content = c:new(win.width)
|
||||||
|
local hd = handler[view]
|
||||||
|
|
||||||
if result then
|
if result then
|
||||||
local content = c:new(win.width)
|
|
||||||
|
|
||||||
for i = 1, #conf.order do
|
for i = 1, #conf.order do
|
||||||
handler[conf.order[i]](result, content)
|
hd[conf.order[i]](result, content)
|
||||||
end
|
end
|
||||||
|
|
||||||
win.draw(content)
|
|
||||||
else
|
else
|
||||||
local line = { '⚠️ 本地没有找到相应的结果' }
|
hd.failed(content)
|
||||||
vim.api.nvim_buf_set_lines(win.bufnr, 0, -1, false, line)
|
|
||||||
local wid = vim.fn.strdisplaywidth(line[1])
|
|
||||||
vim.api.nvim_win_set_width(win.id, wid)
|
|
||||||
vim.api.nvim_win_set_height(win.id, #line)
|
|
||||||
win.auto_close()
|
|
||||||
end
|
end
|
||||||
|
win.draw(content)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
local api = vim.api
|
local api = vim.api
|
||||||
local conf = require('Trans').conf
|
local conf = require('Trans').conf
|
||||||
|
local action = require('Trans.core.action')
|
||||||
|
|
||||||
M.id = 0
|
M.id = 0
|
||||||
M.bufnr = 0
|
M.bufnr = 0
|
||||||
M.ns = api.nvim_create_namespace('Trans')
|
M.ns = api.nvim_create_namespace('Trans')
|
||||||
@ -22,7 +24,11 @@ function M.init(view)
|
|||||||
height = M.height,
|
height = M.height,
|
||||||
style = 'minimal',
|
style = 'minimal',
|
||||||
border = conf.window.border,
|
border = conf.window.border,
|
||||||
title = 'Trans',
|
title = {
|
||||||
|
{'', 'TransTitleRound'},
|
||||||
|
{'Trans', 'TransTitle'},
|
||||||
|
{'', 'TransTitleRound'},
|
||||||
|
},
|
||||||
title_pos = 'center',
|
title_pos = 'center',
|
||||||
focusable = true,
|
focusable = true,
|
||||||
zindex = 100,
|
zindex = 100,
|
||||||
@ -53,14 +59,17 @@ M.draw = function(content)
|
|||||||
|
|
||||||
local len = #content.lines
|
local len = #content.lines
|
||||||
if M.height > len then
|
if M.height > len then
|
||||||
api.nvim_win_set_height(M.id, len + 1)
|
api.nvim_win_set_height(M.id, len)
|
||||||
|
end
|
||||||
|
if len == 1 then
|
||||||
|
api.nvim_win_set_width(M.id, content.get_width(content.lines[1]))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
api.nvim_buf_set_option(M.bufnr, 'modifiable', false)
|
api.nvim_buf_set_option(M.bufnr, 'modifiable', false)
|
||||||
api.nvim_buf_set_option(M.bufnr, 'filetype', 'Trans')
|
api.nvim_buf_set_option(M.bufnr, 'filetype', 'Trans')
|
||||||
api.nvim_win_set_option(M.id, 'wrap', not M.float)
|
api.nvim_win_set_option(M.id, 'wrap', not M.float)
|
||||||
api.nvim_win_set_option(M.id, 'winhl', 'Normal:TransCursorWin,FloatBorder:TransCursorBorder')
|
api.nvim_win_set_option(M.id, 'winhl', ('Normal:Trans%sWin,FloatBorder:Trans%sBorder'):format(M.view, M.view))
|
||||||
|
|
||||||
if M.float then
|
if M.float then
|
||||||
vim.keymap.set('n', 'q', function()
|
vim.keymap.set('n', 'q', function()
|
||||||
@ -91,4 +100,15 @@ M.auto_close = function()
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
-- M.load_keymap = function (once)
|
||||||
|
-- local keymap = conf.keymap[M.view]
|
||||||
|
-- local function warp(func)
|
||||||
|
-- return func or function ()
|
||||||
|
-- vim.api.nvim_get_keymap(' th')
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
--
|
||||||
|
-- end
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -24,19 +24,24 @@ M.conf = {
|
|||||||
'tag',
|
'tag',
|
||||||
'pos',
|
'pos',
|
||||||
'exchange',
|
'exchange',
|
||||||
-- 'translation',
|
'translation',
|
||||||
-- NOTE :如果你想限制某个组件的行数,可以设置max_size
|
-- NOTE :如果你想限制某个组件的行数,可以设置max_size
|
||||||
-- { 'Definition', max_size = 4 },
|
-- { 'Definition', max_size = 4 },
|
||||||
|
'definition',
|
||||||
-- },
|
-- },
|
||||||
-- online = {
|
-- online = {
|
||||||
-- -- TODO
|
-- -- TODO
|
||||||
-- },
|
-- },
|
||||||
},
|
},
|
||||||
icon = {
|
icon = {
|
||||||
star = '⭐',
|
star = '',
|
||||||
notfound = '❔',
|
notfound = '',
|
||||||
yes = '✔️',
|
yes = '',
|
||||||
no = '❌'
|
no = ''
|
||||||
|
-- star = '⭐',
|
||||||
|
-- notfound = '❔',
|
||||||
|
-- yes = '✔️',
|
||||||
|
-- no = '❌'
|
||||||
},
|
},
|
||||||
db_path = '$HOME/.vim/dict/ultimate.db',
|
db_path = '$HOME/.vim/dict/ultimate.db',
|
||||||
-- TODO :
|
-- TODO :
|
||||||
@ -44,9 +49,13 @@ M.conf = {
|
|||||||
-- -- TODO
|
-- -- TODO
|
||||||
-- 'offline',
|
-- 'offline',
|
||||||
-- }
|
-- }
|
||||||
-- map = {
|
map = {
|
||||||
-- -- TODO
|
-- TODO
|
||||||
-- },
|
hover = {
|
||||||
|
pageup = '<C-u>',
|
||||||
|
pagedown = '<C-d>',
|
||||||
|
},
|
||||||
|
},
|
||||||
-- history = {
|
-- history = {
|
||||||
-- -- TOOD
|
-- -- TOOD
|
||||||
-- }
|
-- }
|
||||||
|
@ -21,9 +21,12 @@ local highlights = {
|
|||||||
TransPhonetic = {
|
TransPhonetic = {
|
||||||
link = 'Linenr'
|
link = 'Linenr'
|
||||||
},
|
},
|
||||||
TransRef = {
|
TransTitle = {
|
||||||
|
fg = '#0f0f15',
|
||||||
|
bg = '#75beff',
|
||||||
|
},
|
||||||
|
TransTitleRound = {
|
||||||
fg = '#75beff',
|
fg = '#75beff',
|
||||||
bold = true,
|
|
||||||
},
|
},
|
||||||
TransTag = {
|
TransTag = {
|
||||||
fg = '#e5c07b',
|
fg = '#e5c07b',
|
||||||
@ -38,16 +41,18 @@ local highlights = {
|
|||||||
link = 'TransWord',
|
link = 'TransWord',
|
||||||
},
|
},
|
||||||
TransDefinition = {
|
TransDefinition = {
|
||||||
-- fg = '#bc8cff',
|
|
||||||
link = 'Moremsg',
|
link = 'Moremsg',
|
||||||
},
|
},
|
||||||
TransCursorWin = {
|
TransHoverWin = {
|
||||||
link = 'Normal',
|
link = 'Normal',
|
||||||
},
|
},
|
||||||
|
TransHoverBorder = {
|
||||||
TransCursorBorder = {
|
|
||||||
link = 'FloatBorder',
|
link = 'FloatBorder',
|
||||||
}
|
},
|
||||||
|
TransCollins = {
|
||||||
|
fg = '#faf743',
|
||||||
|
bold = true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
-- TODO
|
-- TODO
|
||||||
|
Loading…
x
Reference in New Issue
Block a user