refactor: add frontend.hover.load function to set buffer content
This commit is contained in:
parent
7731c6c8cb
commit
693dd0c7aa
@ -16,7 +16,7 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
|
|||||||
function M.query(data)
|
function M.query(data)
|
||||||
if data.is_word == false or data.from == 'zh' then return end
|
if data.is_word == false or data.from == 'zh' then return end
|
||||||
|
|
||||||
local path = require('Trans').conf.dir .. '/ultimate.db'
|
local path = require('Trans').conf.dir .. '/ultimate.db'
|
||||||
|
|
||||||
local dict = db:open(path)
|
local dict = db:open(path)
|
||||||
local db_name = data.db_name or 'stardict'
|
local db_name = data.db_name or 'stardict'
|
||||||
@ -109,24 +109,24 @@ local formatter = {
|
|||||||
pos = function(res)
|
pos = function(res)
|
||||||
if not exist(res.pos) then return end
|
if not exist(res.pos) then return end
|
||||||
local pos_map = {
|
local pos_map = {
|
||||||
v = '动词 v',
|
a = '代词pron ',
|
||||||
n = '名词 n',
|
c = '连接词conj ',
|
||||||
r = '副词 adv',
|
i = '介词prep ',
|
||||||
m = '数词 num',
|
j = '形容词adj ',
|
||||||
p = '代词 pron',
|
m = '数词num ',
|
||||||
a = '代词 pron',
|
n = '名词n ',
|
||||||
i = '介词 prep',
|
p = '代词pron ',
|
||||||
u = '感叹词 int',
|
r = '副词adv ',
|
||||||
j = '形容词 adj',
|
u = '感叹词int ',
|
||||||
c = '连接词 conj',
|
v = '动词v ',
|
||||||
x = '否定标记 not',
|
x = '否定标记not ',
|
||||||
t = '不定式标记 infm',
|
t = '不定式标记infm ',
|
||||||
d = '限定词 determiner',
|
d = '限定词determiner ',
|
||||||
}
|
}
|
||||||
|
|
||||||
local pos = {}
|
local pos = {}
|
||||||
for _, _pos in ipairs(vim.split(res.pos, '/', { plain = true })) do
|
for _, _pos in ipairs(vim.split(res.pos, '/', { plain = true })) do
|
||||||
pos[pos_map[_pos:sub(1, 1)]] = _pos:sub(3)
|
pos[pos_map[_pos:sub(1, 1)]] = ('%2s%%'):format(_pos:sub(3))
|
||||||
end
|
end
|
||||||
|
|
||||||
return pos
|
return pos
|
||||||
|
@ -123,11 +123,13 @@ end
|
|||||||
---@param nodes string|table|table[] string -> as line content | table -> as a node | table[] -> as node[]
|
---@param nodes string|table|table[] string -> as line content | table -> as a node | table[] -> as node[]
|
||||||
---@param linenr number? line number should be set[one index] or let it be nil to append
|
---@param linenr number? line number should be set[one index] or let it be nil to append
|
||||||
function buffer:setline(nodes, linenr)
|
function buffer:setline(nodes, linenr)
|
||||||
linenr = linenr and linenr - 1 or -1
|
self:set('modifiable', true)
|
||||||
|
linenr = linenr and linenr - 1 or self:line_count()
|
||||||
|
|
||||||
if type(nodes) == 'string' then
|
if type(nodes) == 'string' then
|
||||||
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes })
|
api.nvim_buf_set_lines(self.bufnr, linenr, linenr, false, { nodes })
|
||||||
elseif type(nodes) == 'table' then
|
|
||||||
|
else
|
||||||
if type(nodes[1]) == 'string' then
|
if type(nodes[1]) == 'string' then
|
||||||
-- FIXME :set [nodes] type as node
|
-- FIXME :set [nodes] type as node
|
||||||
---@diagnostic disable-next-line: assign-type-mismatch
|
---@diagnostic disable-next-line: assign-type-mismatch
|
||||||
@ -149,6 +151,8 @@ function buffer:setline(nodes, linenr)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
self:set('modifiable', false)
|
||||||
end
|
end
|
||||||
|
|
||||||
---@private
|
---@private
|
||||||
@ -183,6 +187,7 @@ function buffer.new()
|
|||||||
}, buffer)
|
}, buffer)
|
||||||
|
|
||||||
|
|
||||||
|
new_buf:set('modifiable', false)
|
||||||
new_buf:set('filetype', 'Trans')
|
new_buf:set('filetype', 'Trans')
|
||||||
new_buf:set('buftype', 'nofile')
|
new_buf:set('buftype', 'nofile')
|
||||||
return new_buf
|
return new_buf
|
||||||
|
@ -3,8 +3,20 @@ local Trans = require('Trans')
|
|||||||
local M = {}
|
local M = {}
|
||||||
M.__index = M
|
M.__index = M
|
||||||
|
|
||||||
|
---@class data
|
||||||
|
---@field str string
|
||||||
|
---@field mode string
|
||||||
|
---@field result table
|
||||||
|
---@field frontend table
|
||||||
|
---@field backend table
|
||||||
|
---@field from string
|
||||||
|
---@field to string
|
||||||
|
---@field is_word boolean
|
||||||
|
|
||||||
|
|
||||||
|
---Data constructor
|
||||||
|
---@param opts table
|
||||||
|
---@return data
|
||||||
function M.new(opts)
|
function M.new(opts)
|
||||||
local mode = opts.mode
|
local mode = opts.mode
|
||||||
local str = opts.str
|
local str = opts.str
|
||||||
@ -39,4 +51,17 @@ function M.new(opts)
|
|||||||
return setmetatable(data, M)
|
return setmetatable(data, M)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- ---Get the first available result [return nil if no result]
|
||||||
|
-- ---@return table?
|
||||||
|
-- function M:get_available_result()
|
||||||
|
-- local result = self.result
|
||||||
|
-- local backend = self.backend
|
||||||
|
|
||||||
|
-- for _, name in ipairs(backend) do
|
||||||
|
-- if result[name] then
|
||||||
|
-- return result[name]
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
-- end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -13,19 +13,26 @@ local function init_opts(opts)
|
|||||||
return opts
|
return opts
|
||||||
end
|
end
|
||||||
|
|
||||||
local function set_result(data)
|
|
||||||
|
local function do_query(data)
|
||||||
-- HACK :Rewrite this function to support multi requests
|
-- HACK :Rewrite this function to support multi requests
|
||||||
local frontend = data.frontend
|
local frontend = data.frontend
|
||||||
|
local result = data.result
|
||||||
for _, backend in ipairs(data.backend) do
|
for _, backend in ipairs(data.backend) do
|
||||||
local name = backend.name
|
local name = backend.name
|
||||||
if backend.no_wait then
|
if backend.no_wait then
|
||||||
backend.query(data)
|
backend.query(data)
|
||||||
else
|
else
|
||||||
backend.query(data)
|
backend.query(data)
|
||||||
frontend:wait(data.result, name, backend.timeout)
|
frontend:wait(result, name, backend.timeout)
|
||||||
end
|
end
|
||||||
|
|
||||||
if type(data.result[name]) == 'table' then break end
|
|
||||||
|
if type(result[name]) == 'table' then
|
||||||
|
return result[name]
|
||||||
|
else
|
||||||
|
result[name] = nil
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -46,20 +53,11 @@ local function process(opts)
|
|||||||
|
|
||||||
|
|
||||||
local data = Trans.data.new(opts)
|
local data = Trans.data.new(opts)
|
||||||
set_result(data)
|
local result = do_query(data)
|
||||||
|
|
||||||
|
|
||||||
local success = false
|
|
||||||
for _, v in pairs(data.result) do
|
|
||||||
if type(v) == "table" then
|
|
||||||
success = true
|
|
||||||
break
|
|
||||||
end
|
|
||||||
end
|
|
||||||
if success == false then return end
|
|
||||||
|
|
||||||
|
if not result then return end
|
||||||
Trans.cache[data.str] = data
|
Trans.cache[data.str] = data
|
||||||
data.frontend:process(data)
|
data.frontend:process(data, result)
|
||||||
end
|
end
|
||||||
|
|
||||||
return coroutine.wrap(process)
|
return coroutine.wrap(process)
|
||||||
|
@ -67,7 +67,7 @@ function M:destroy()
|
|||||||
end
|
end
|
||||||
|
|
||||||
---Init hover window
|
---Init hover window
|
||||||
---@param opts table @window options: width, height
|
---@param opts table? @window options: width, height
|
||||||
---@return unknown
|
---@return unknown
|
||||||
function M:init_window(opts)
|
function M:init_window(opts)
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
@ -130,11 +130,17 @@ function M:wait(tbl, name, timeout)
|
|||||||
-- TODO : End waitting animation
|
-- TODO : End waitting animation
|
||||||
end
|
end
|
||||||
|
|
||||||
---Process data and display it in hover window
|
|
||||||
---@param data table @data to be processed
|
function M:process(_, result)
|
||||||
function M:process(data)
|
if not self.window then self:init_window() end
|
||||||
vim.pretty_print(data.result)
|
|
||||||
print('TODO: process data')
|
local node = Trans.util.node
|
||||||
|
local it, t, f = node.item, node.text, node.format
|
||||||
|
self.buffer:setline(it('hello', 'MoreMsg'))
|
||||||
|
|
||||||
|
-- for _, field in ipairs(self.opts.order) do
|
||||||
|
-- self:load(result, field)
|
||||||
|
-- end
|
||||||
end
|
end
|
||||||
|
|
||||||
---Check if hover window and buffer are valid
|
---Check if hover window and buffer are valid
|
||||||
@ -143,204 +149,8 @@ function M:is_available()
|
|||||||
return self.buffer:is_valid() and self.window:is_valid()
|
return self.buffer:is_valid() and self.window:is_valid()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
-- local error_msg = conf.icon.notfound .. ' 没有找到相关的翻译'
|
|
||||||
-- local buffer = require('Trans.buffer')()
|
|
||||||
|
|
||||||
-- local node = require('Trans.node')
|
|
||||||
-- local it, t, f = node.item, node.text, node.format
|
|
||||||
|
|
||||||
-- local function handle_result(result)
|
|
||||||
-- local icon = conf.icon
|
|
||||||
-- local notfound = icon.notfound
|
|
||||||
-- local indent = ' '
|
|
||||||
|
|
||||||
-- local word = result.title.word
|
|
||||||
-- if hover.auto_play then
|
|
||||||
-- string.play(word:isEn() and word or result.definition)
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- local addtitle = function(title)
|
|
||||||
-- buffer:addline {
|
|
||||||
-- it('', 'TransTitleRound'),
|
|
||||||
-- it(title, 'TransTitle'),
|
|
||||||
-- it('', 'TransTitleRound'),
|
|
||||||
-- }
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- local process = {
|
|
||||||
-- title = function(title)
|
|
||||||
-- local oxford = title.oxford
|
|
||||||
-- local collins = title.collins
|
|
||||||
-- local phonetic = title.phonetic
|
|
||||||
|
|
||||||
-- if not phonetic and not collins and not oxford then
|
|
||||||
-- buffer:addline(it(word, 'TransWord'))
|
|
||||||
|
|
||||||
-- else
|
|
||||||
-- buffer:addline(f {
|
|
||||||
-- width = hover.width,
|
|
||||||
-- text = t {
|
|
||||||
-- it(word, 'TransWord'),
|
|
||||||
-- t {
|
|
||||||
-- it('['),
|
|
||||||
-- it((phonetic and phonetic ~= '') and phonetic or notfound, 'TransPhonetic'),
|
|
||||||
-- it(']')
|
|
||||||
-- },
|
|
||||||
-- it(collins and icon.star:rep(collins) or notfound, 'TransCollins'),
|
|
||||||
-- it(oxford == 1 and icon.yes or icon.no)
|
|
||||||
-- },
|
|
||||||
-- })
|
|
||||||
-- end
|
|
||||||
-- end,
|
|
||||||
|
|
||||||
-- tag = function(tag)
|
|
||||||
-- addtitle('标签')
|
|
||||||
-- local tag_map = {
|
|
||||||
-- zk = '中考',
|
|
||||||
-- gk = '高考',
|
|
||||||
-- ky = '考研',
|
|
||||||
-- cet4 = '四级',
|
|
||||||
-- cet6 = '六级',
|
|
||||||
-- ielts = '雅思',
|
|
||||||
-- toefl = '托福',
|
|
||||||
-- gre = 'gre ',
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- local tags = {}
|
|
||||||
-- local size = 0
|
|
||||||
-- local interval = ' '
|
|
||||||
-- for _tag in vim.gsplit(tag, ' ', true) do
|
|
||||||
-- size = size + 1
|
|
||||||
-- tags[size] = tag_map[_tag]
|
|
||||||
-- end
|
|
||||||
|
|
||||||
|
|
||||||
-- for i = 1, size, 3 do
|
|
||||||
-- buffer:addline(
|
|
||||||
-- it(
|
|
||||||
-- indent .. tags[i] ..
|
|
||||||
-- (tags[i + 1] and interval .. tags[i + 1] ..
|
|
||||||
-- (tags[i + 2] and interval .. tags[i + 2] or '') or ''),
|
|
||||||
-- 'TransTag'
|
|
||||||
-- )
|
|
||||||
-- )
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:addline('')
|
|
||||||
-- end,
|
|
||||||
|
|
||||||
-- pos = function(pos)
|
|
||||||
-- addtitle('词性')
|
|
||||||
-- 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 s = '%s %2s%%'
|
|
||||||
-- for _pos in vim.gsplit(pos, '/', true) do
|
|
||||||
-- buffer:addline(
|
|
||||||
-- it(indent .. s:format(pos_map[_pos:sub(1, 1)], _pos:sub(3)), 'TransPos')
|
|
||||||
-- )
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:addline('')
|
|
||||||
-- end,
|
|
||||||
|
|
||||||
-- exchange = function(exchange)
|
|
||||||
-- addtitle('词形变化')
|
|
||||||
-- local exchange_map = {
|
|
||||||
-- ['p'] = '过去式 ',
|
|
||||||
-- ['d'] = '过去分词 ',
|
|
||||||
-- ['i'] = '现在分词 ',
|
|
||||||
-- ['r'] = '比较级 ',
|
|
||||||
-- ['t'] = '最高级 ',
|
|
||||||
-- ['s'] = '复数 ',
|
|
||||||
-- ['0'] = '原型 ',
|
|
||||||
-- ['1'] = '类别 ',
|
|
||||||
-- ['3'] = '第三人称单数',
|
|
||||||
-- ['f'] = '第三人称单数',
|
|
||||||
-- }
|
|
||||||
-- local interval = ' '
|
|
||||||
-- for exc in vim.gsplit(exchange, '/', true) do
|
|
||||||
-- buffer:addline(
|
|
||||||
-- it(indent .. exchange_map[exc:sub(1, 1)] .. interval .. exc:sub(3), 'TransExchange')
|
|
||||||
-- )
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:addline('')
|
|
||||||
-- end,
|
|
||||||
|
|
||||||
-- translation = function(translation)
|
|
||||||
-- addtitle('中文翻译')
|
|
||||||
|
|
||||||
-- for trs in vim.gsplit(translation, '\n', true) do
|
|
||||||
-- buffer:addline(
|
|
||||||
-- it(indent .. trs, 'TransTranslation')
|
|
||||||
-- )
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:addline('')
|
|
||||||
-- end,
|
|
||||||
|
|
||||||
-- definition = function(definition)
|
|
||||||
-- addtitle('英文注释')
|
|
||||||
|
|
||||||
-- for def in vim.gsplit(definition, '\n', true) do
|
|
||||||
-- def = def:gsub('^%s+', '', 1) -- TODO :判断是否需要分割空格
|
|
||||||
-- buffer:addline(
|
|
||||||
-- it(indent .. def, 'TransDefinition')
|
|
||||||
-- )
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:addline('')
|
|
||||||
-- end,
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- buffer:set('modifiable', true)
|
|
||||||
-- for _, field in ipairs(conf.order) do
|
|
||||||
-- local value = result[field]
|
|
||||||
-- if value and value ~= '' then
|
|
||||||
-- process[field](value)
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
-- buffer:set('modifiable', false)
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- local function open_window(opts)
|
|
||||||
-- opts = opts or {}
|
|
||||||
|
|
||||||
-- local col = opts.col or 1
|
|
||||||
-- local row = opts.row or 1
|
|
||||||
-- local width = opts.width or hover.width
|
|
||||||
-- local height = opts.height or hover.height
|
|
||||||
-- local relative = opts.relative or 'cursor'
|
|
||||||
|
|
||||||
-- return require('Trans.window') {
|
|
||||||
-- col = col,
|
|
||||||
-- row = row,
|
|
||||||
-- buf = buffer,
|
|
||||||
-- relative = relative,
|
|
||||||
-- width = width,
|
|
||||||
-- height = height,
|
|
||||||
-- title = hover.title,
|
|
||||||
-- border = hover.border,
|
|
||||||
-- animation = hover.animation,
|
|
||||||
-- ns = require('Trans').ns,
|
|
||||||
-- }
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- local function handle_keymap(win, word)
|
-- local function handle_keymap(win, word)
|
||||||
-- local keymap = hover.keymap
|
-- local keymap = hover.keymap
|
||||||
-- local cur_buf = api.nvim_get_current_buf()
|
-- local cur_buf = api.nvim_get_current_buf()
|
||||||
@ -438,102 +248,3 @@ return M
|
|||||||
-- })
|
-- })
|
||||||
-- end
|
-- end
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
-- local function online_query(win, word)
|
|
||||||
-- local lists = {
|
|
||||||
-- remove = table.remove
|
|
||||||
-- }
|
|
||||||
-- local engines = conf.engines
|
|
||||||
-- local size = #engines
|
|
||||||
-- local icon = conf.icon
|
|
||||||
-- local error_line = it(error_msg, 'TransFailed')
|
|
||||||
-- if size == 0 then
|
|
||||||
-- buffer:addline(error_line)
|
|
||||||
-- return
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- for i = 1, size do
|
|
||||||
-- lists[i] = require('Trans.query.' .. engines[i])(word)
|
|
||||||
-- end
|
|
||||||
-- local cell = icon.cell
|
|
||||||
-- local timeout = hover.timeout
|
|
||||||
-- local spinner = require('Trans.style.spinner')[hover.spinner]
|
|
||||||
-- local range = #spinner
|
|
||||||
-- local interval = math.floor(timeout / (win.width - spinner[1]:width()))
|
|
||||||
-- local win_width = win.width
|
|
||||||
|
|
||||||
-- local s = '%s %s'
|
|
||||||
-- local width, height = hover.width, hover.height
|
|
||||||
-- local function waitting_result(this, times)
|
|
||||||
-- for i = size, 1, -1 do
|
|
||||||
-- local res = lists[i][1]
|
|
||||||
-- if res then
|
|
||||||
-- buffer:wipe()
|
|
||||||
-- win:set_width(width)
|
|
||||||
-- handle_result(res)
|
|
||||||
-- height = math.min(height, buffer:height(width))
|
|
||||||
|
|
||||||
-- win:expand {
|
|
||||||
-- field = 'height',
|
|
||||||
-- target = height,
|
|
||||||
-- }
|
|
||||||
-- this.run = false
|
|
||||||
-- return
|
|
||||||
-- elseif res == false then
|
|
||||||
-- lists:remove(i)
|
|
||||||
-- size = size - 1
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- if size == 0 or times == win_width then
|
|
||||||
-- buffer:addline(error_line, 1)
|
|
||||||
-- this.run = false
|
|
||||||
-- else
|
|
||||||
-- buffer:addline(it(s:format(spinner[times % range + 1], cell:rep(times)), 'MoreMsg'), 1)
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- buffer:set('modifiable', true)
|
|
||||||
-- local run = require('Trans.util.display') {
|
|
||||||
-- times = win_width,
|
|
||||||
-- interval = interval,
|
|
||||||
-- frame = waitting_result,
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- run(function()
|
|
||||||
-- buffer:set('modifiable', false)
|
|
||||||
-- end)
|
|
||||||
-- end
|
|
||||||
|
|
||||||
-- ---处理不同hover模式的窗口
|
|
||||||
-- ---@param word string 待查询的单词
|
|
||||||
-- return function(word)
|
|
||||||
-- buffer:init()
|
|
||||||
-- local result = require('Trans.query.offline')(word)
|
|
||||||
|
|
||||||
-- if result then
|
|
||||||
-- handle_result(result)
|
|
||||||
-- local width = hover.width
|
|
||||||
-- local win, run = open_window {
|
|
||||||
-- width = width,
|
|
||||||
-- height = math.min(buffer:height(width), hover.height)
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- run(function()
|
|
||||||
-- win:set('wrap', true)
|
|
||||||
-- handle_keymap(win, word)
|
|
||||||
-- end)
|
|
||||||
|
|
||||||
-- else
|
|
||||||
-- local win, run = open_window {
|
|
||||||
-- width = error_msg:width(),
|
|
||||||
-- height = 1,
|
|
||||||
-- }
|
|
||||||
|
|
||||||
-- run(function()
|
|
||||||
-- win:set('wrap', true)
|
|
||||||
-- handle_keymap(win, word)
|
|
||||||
-- online_query(win, word)
|
|
||||||
-- end)
|
|
||||||
-- end
|
|
||||||
-- end
|
|
||||||
|
121
lua/Trans/frontend/hover/load.lua
Normal file
121
lua/Trans/frontend/hover/load.lua
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
local node = require('Trans').util.node
|
||||||
|
local it, t, f = node.item, node.text, node.format
|
||||||
|
|
||||||
|
|
||||||
|
local function conjunction(text)
|
||||||
|
return {
|
||||||
|
it('', 'TransTitleRound'),
|
||||||
|
it(text, 'TransTitle'),
|
||||||
|
it('', 'TransTitleRound'),
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
local interval = (' '):rep(4)
|
||||||
|
|
||||||
|
local strategy = {
|
||||||
|
title = function(hover, title)
|
||||||
|
if type(title) == 'string' then
|
||||||
|
hover.buffer:setline(it(title, 'TransTitle'))
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local icon = hover.opts.icon
|
||||||
|
|
||||||
|
|
||||||
|
local word = title.word
|
||||||
|
local oxford = title.oxford
|
||||||
|
local collins = title.collins
|
||||||
|
local phonetic = title.phonetic
|
||||||
|
|
||||||
|
|
||||||
|
if not phonetic and not collins and not oxford then
|
||||||
|
hover.buffer:setline(it(word, 'TransWord'))
|
||||||
|
else
|
||||||
|
hover.buffer:setline(f {
|
||||||
|
width = hover.width,
|
||||||
|
text = t {
|
||||||
|
it(word, 'TransWord'),
|
||||||
|
t {
|
||||||
|
it('['),
|
||||||
|
it((phonetic and phonetic ~= '') and phonetic or icon.notfound, 'TransPhonetic'),
|
||||||
|
it(']')
|
||||||
|
},
|
||||||
|
|
||||||
|
it(collins and icon.star:rep(collins) or icon.notfound, 'TransCollins'),
|
||||||
|
it(oxford == 1 and icon.yes or icon.no)
|
||||||
|
},
|
||||||
|
})
|
||||||
|
end
|
||||||
|
end,
|
||||||
|
tag = function(hover, tag)
|
||||||
|
local buffer = hover.buffer
|
||||||
|
buffer:setline(conjunction('标签'))
|
||||||
|
|
||||||
|
local size = #tag
|
||||||
|
|
||||||
|
for i = 1, size, 3 do
|
||||||
|
buffer:setline(
|
||||||
|
it(
|
||||||
|
interval .. tag[i] ..
|
||||||
|
(tag[i + 1] and interval .. tag[i + 1] ..
|
||||||
|
(tag[i + 2] and interval .. tag[i + 2] or '') or ''),
|
||||||
|
'TransTag'
|
||||||
|
)
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
buffer:setline('')
|
||||||
|
end,
|
||||||
|
exchange = function(hover, exchange)
|
||||||
|
local buffer = hover.buffer
|
||||||
|
buffer:setline(conjunction('词形变化'))
|
||||||
|
|
||||||
|
for description, value in pairs(exchange) do
|
||||||
|
buffer:setline(
|
||||||
|
it(interval .. description .. interval .. value, 'TransExchange')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
buffer:setline('')
|
||||||
|
end,
|
||||||
|
pos = function(hover, pos)
|
||||||
|
local buffer = hover.buffer
|
||||||
|
buffer:setline(conjunction('词性'))
|
||||||
|
|
||||||
|
for description, value in pairs(pos) do
|
||||||
|
buffer:setline(
|
||||||
|
it(interval .. description .. interval .. value, 'TransPos')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
buffer:setline('')
|
||||||
|
end,
|
||||||
|
translation = function(hover, translation)
|
||||||
|
local buffer = hover.buffer
|
||||||
|
buffer:setline(conjunction('中文翻译'))
|
||||||
|
|
||||||
|
for _, value in ipairs(translation) do
|
||||||
|
buffer:setline(
|
||||||
|
it(interval .. value, 'TransTranslation')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
buffer:setline('')
|
||||||
|
end,
|
||||||
|
definition = function(hover, definition)
|
||||||
|
local buffer = hover.buffer
|
||||||
|
buffer:setline(conjunction('英文注释'))
|
||||||
|
|
||||||
|
for _, value in ipairs(definition) do
|
||||||
|
buffer:setline(
|
||||||
|
it(interval .. value, 'TransDefinition')
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
buffer:setline('')
|
||||||
|
end,
|
||||||
|
}
|
||||||
|
|
||||||
|
return function(hover, result, field)
|
||||||
|
strategy[field](hover, result[field])
|
||||||
|
end
|
@ -6,8 +6,7 @@ local function metatable(folder_name, origin)
|
|||||||
return setmetatable(origin or {}, {
|
return setmetatable(origin or {}, {
|
||||||
__index = function(tbl, key)
|
__index = function(tbl, key)
|
||||||
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
||||||
|
if not status then return end
|
||||||
if not status then error('fail to load: ' .. key .. '\n' .. result) end
|
|
||||||
|
|
||||||
tbl[key] = result
|
tbl[key] = result
|
||||||
return result
|
return result
|
||||||
@ -16,8 +15,7 @@ local function metatable(folder_name, origin)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local M = metatable('core')
|
local M = metatable('core')
|
||||||
|
|
||||||
|
|
||||||
M.metatable = metatable
|
M.metatable = metatable
|
||||||
M.style = metatable("style")
|
M.style = metatable("style")
|
||||||
|
@ -1,23 +1,20 @@
|
|||||||
local api = vim.api
|
|
||||||
local add_hl = api.nvim_buf_add_highlight
|
|
||||||
|
|
||||||
local item_meta = {
|
local item_meta = {
|
||||||
render = function(self, bufnr, line, col)
|
render = function(self, buffer, line, col)
|
||||||
if self[2] then
|
if self[2] then
|
||||||
add_hl(bufnr, self.ns or -1, self[2], line, col, col + #self[1])
|
buffer:add_highlight(line, self[2], col, col + #self[1])
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
local text_meta = {
|
local text_meta = {
|
||||||
render = function(self, bufnr, line, col)
|
render = function(self, buffer, line, col)
|
||||||
local items = self.items
|
local items = self.items
|
||||||
local step = self.step or ''
|
local step = self.step or ''
|
||||||
local len = #step
|
local len = #step
|
||||||
|
|
||||||
for i = 1, self.size do
|
for i = 1, self.size do
|
||||||
local item = items[i]
|
local item = items[i]
|
||||||
item:render(bufnr, line, col)
|
item:render(buffer, line, col)
|
||||||
col = col + #item[1] + len
|
col = col + #item[1] + len
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -28,6 +25,7 @@ text_meta.__index = function(self, key)
|
|||||||
return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil)
|
return text_meta[key] or (key == 1 and table.concat(self.strs, self.step) or nil)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
item = function(text, highlight)
|
item = function(text, highlight)
|
||||||
return setmetatable({
|
return setmetatable({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user