Trans.nvim/lua/Trans/display.lua

310 lines
8.4 KiB
Lua
Raw Normal View History

local M = {}
2022-12-25 09:02:37 +08:00
local api = vim.api
local display = require("Trans").conf.display
local icon = require("Trans").conf.icon
local order = require("Trans").conf.order
local auto_close = require("Trans").conf.auto_close
2022-12-21 11:41:21 +08:00
local hl = require("Trans.highlight").hlgroup
2022-12-21 11:41:21 +08:00
local buf = require("Trans.conf").buf
2022-12-20 10:22:28 +08:00
local win = 0
2022-12-21 11:41:21 +08:00
local line = 0
local pos_info = {}
2022-12-29 20:16:36 +08:00
local handler = {}
2022-12-21 11:41:21 +08:00
api.nvim_buf_set_option(buf, 'filetype', 'Trans')
local function show_win(width, height)
2022-12-21 11:41:21 +08:00
win = api.nvim_open_win(buf, false, {
relative = 'cursor',
col = display.offset_x,
row = display.offset_y,
title = 'Trans',
title_pos = 'center',
style = display.style,
2022-12-21 11:41:21 +08:00
width = (display.max_width > 0 and width > display.max_width) and display.max_width or width,
height = (display.max_width > 0 and height > display.max_height) and display.max_height or height,
2022-12-20 12:05:36 +08:00
border = display.border_style,
focusable = false,
zindex = 250, -- Top
})
2022-12-21 11:41:21 +08:00
api.nvim_win_set_option(win, 'wrap', display.wrap)
end
-- NOTE title
handler.title = function(text, query_res)
local title = ('%s [%s] %s %s'):format(
query_res.word,
query_res.phonetic,
(display.oxford and (query_res.oxford == 1 and icon.isOxford or icon.notOxford) or ''),
2022-12-20 12:05:36 +08:00
((display.collins_star and query_res.collins) and string.rep(icon.star, query_res.collins) or '')
)
2022-12-20 12:05:36 +08:00
table.insert(text, title)
2022-12-21 11:41:21 +08:00
pos_info.title = {}
pos_info.title.word = #query_res.word
2022-12-21 16:18:36 +08:00
pos_info.title.phonetic = query_res.phonetic and #query_res.phonetic or 3
2022-12-21 11:41:21 +08:00
pos_info.title.line = line
line = line + 1
2022-12-20 12:05:36 +08:00
end
-- NOTE tag
2022-12-29 20:16:36 +08:00
handler.tag = function(text, query_res)
2022-12-21 11:41:21 +08:00
if query_res.tag and #query_res.tag > 0 then
local tag = query_res.tag:gsub('zk', '中考'):gsub('gk', '高考'):gsub('ky', '考研'):gsub('cet4', '四级'):
2022-12-29 20:16:36 +08:00
gsub('cet6', '六级'):gsub('ielts', '雅思'):gsub('toefl', '托福'):gsub('gre', 'GRE')
table.insert(text, '标签:')
table.insert(text, ' ' .. tag)
2022-12-20 13:24:00 +08:00
table.insert(text, '')
2022-12-21 11:41:21 +08:00
pos_info.tag = line
line = line + 3
end
2022-12-20 12:05:36 +08:00
end
-- NOTE pos 词性
2022-12-29 20:16:36 +08:00
handler.pos = function(text, query_res)
2022-12-21 11:41:21 +08:00
if query_res.pos and #query_res.pos > 0 then
table.insert(text, '词性:')
2022-12-21 11:41:21 +08:00
local content = 0
2022-12-20 12:05:36 +08:00
for v in vim.gsplit(query_res.pos, [[/]]) do
table.insert(text, string.format(' %s', v .. '%'))
2022-12-21 11:41:21 +08:00
content = content + 1
2022-12-20 12:05:36 +08:00
end
2022-12-21 11:41:21 +08:00
2022-12-20 12:05:36 +08:00
table.insert(text, '')
2022-12-21 11:41:21 +08:00
pos_info.pos = {}
pos_info.pos.line = line
pos_info.pos.content = content
line = line + content + 2
end
2022-12-20 12:05:36 +08:00
end
-- NOTE exchange
2022-12-29 20:16:36 +08:00
handler.exchange = function(text, query_res)
2022-12-21 11:41:21 +08:00
if query_res.exchange and #query_res.exchange > 0 then
table.insert(text, '词形变化:')
2022-12-21 11:41:21 +08:00
local exchange_map = {
p = '过去式',
d = '过去分词',
i = '现在分词',
r = '形容词比较级',
t = '形容词最高级',
s = '名词复数形式',
O = '词干',
['3'] = '第三人称单数',
}
2022-12-21 11:41:21 +08:00
local content = 0
for v in vim.gsplit(query_res.exchange, [[/]]) do
table.insert(text, string.format(' %s: %s', exchange_map[v:sub(1, 1)], v:sub(3)))
2022-12-21 11:41:21 +08:00
content = content + 1
-- FIXME: 中文字符与字母位宽不一致, 暂时无法对齐
end
2022-12-20 12:05:36 +08:00
table.insert(text, '')
2022-12-21 11:41:21 +08:00
pos_info.exchange = {}
pos_info.exchange.line = line
pos_info.exchange.content = content
line = line + content + 2
end
2022-12-20 12:05:36 +08:00
end
-- NOTE 中文翻译
2022-12-29 20:16:36 +08:00
handler.zh = function(text, query_res)
2022-12-21 11:41:21 +08:00
if query_res.translation then
table.insert(text, '中文翻译:')
2022-12-21 11:41:21 +08:00
local content = 0
for v in vim.gsplit(query_res.translation, '\n') do
table.insert(text, ' ' .. v)
2022-12-21 11:41:21 +08:00
content = content + 1
end
2022-12-20 12:05:36 +08:00
table.insert(text, '')
2022-12-21 11:41:21 +08:00
pos_info.zh = {}
pos_info.zh.line = line
pos_info.zh.content = content
line = content + line + 2
end
2022-12-20 12:05:36 +08:00
end
-- NOTE 英文翻译
2022-12-29 20:16:36 +08:00
handler.en = function(text, query_res)
2022-12-21 11:41:21 +08:00
if query_res.definition and #query_res.definition > 0 then
table.insert(text, '英文翻译:')
2022-12-21 11:41:21 +08:00
local content = 0
for v in vim.gsplit(query_res.definition, '\n') do
table.insert(text, ' ' .. v)
2022-12-21 11:41:21 +08:00
content = content + 1
end
2022-12-20 12:05:36 +08:00
table.insert(text, '')
2022-12-21 11:41:21 +08:00
pos_info.en = {}
pos_info.en.line = line
pos_info.en.content = content
line = line + content + 2
end
2022-12-20 12:05:36 +08:00
end
-- @return string array
local function get_text(query_res)
local text = {}
2022-12-20 13:24:00 +08:00
for _, v in ipairs(order) do
2022-12-20 12:05:36 +08:00
handler[v](text, query_res)
end
return text
end
local function set_text(query_res)
local text = query_res and get_text(query_res) or { '没有找到相关定义' }
2022-12-21 11:41:21 +08:00
api.nvim_buf_set_lines(buf, 0, -1, false, text)
local width = 0
for _, v in ipairs(text) do
2022-12-21 11:41:21 +08:00
if #v > width then
width = v:len()
end
end
return width, #text
end
2022-12-25 09:02:37 +08:00
local hl_handler = {}
hl_handler.title = function()
2022-12-21 11:41:21 +08:00
api.nvim_buf_add_highlight(buf, -1, hl.word, pos_info.title.line, 0, pos_info.title.word)
api.nvim_buf_add_highlight(buf, -1, hl.phonetic, pos_info.title.line, pos_info.title.word + 5,
pos_info.title.word + 5 + pos_info.title.phonetic)
end
2022-12-25 09:02:37 +08:00
hl_handler.tag = function()
2022-12-21 11:41:21 +08:00
if pos_info.tag then
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.tag, 0, -1)
api.nvim_buf_add_highlight(buf, -1, hl.tag, pos_info.tag + 1, 0, -1)
end
end
2022-12-25 09:02:37 +08:00
hl_handler.pos = function()
2022-12-21 11:41:21 +08:00
if pos_info.pos then
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.pos.line, 0, -1)
for i = 1, pos_info.pos.content, 1 do
api.nvim_buf_add_highlight(buf, -1, hl.pos, pos_info.pos.line + i, 0, -1)
end
end
end
2022-12-25 09:02:37 +08:00
hl_handler.exchange = function()
2022-12-21 11:41:21 +08:00
if pos_info.exchange then
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.exchange.line, 0, -1)
for i = 1, pos_info.exchange.content, 1 do
api.nvim_buf_add_highlight(buf, -1, hl.exchange, pos_info.exchange.line + i, 0, -1)
end
end
end
2022-12-25 09:02:37 +08:00
hl_handler.zh = function()
2022-12-21 11:41:21 +08:00
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.zh.line, 0, -1)
for i = 1, pos_info.zh.content, 1 do
api.nvim_buf_add_highlight(buf, -1, hl.zh, pos_info.zh.line + i, 0, -1)
end
end
2022-12-25 09:02:37 +08:00
hl_handler.en = function()
2022-12-21 16:18:36 +08:00
if pos_info.en then
api.nvim_buf_add_highlight(buf, -1, hl.ref, pos_info.en.line, 0, -1)
for i = 1, pos_info.en.content, 1 do
api.nvim_buf_add_highlight(buf, -1, hl.en, pos_info.en.line + i, 0, -1)
end
2022-12-21 11:41:21 +08:00
end
end
local function set_hl()
for _, v in ipairs(order) do
hl_handler[v]()
end
end
local function clear_tmp_info()
pos_info = {}
line = 0
end
2022-12-21 16:18:36 +08:00
local function get_visual_selection()
local s_start = vim.fn.getpos("'<")
local s_end = vim.fn.getpos("'>")
assert(s_end[2] == s_start[2])
local lin = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)[1]
local word = string.sub(lin, s_start[3], s_end[3])
return word
end
function M.query(mode)
assert(buf > 0)
local word = ''
if mode == 'n' then
word = vim.fn.expand('<cword>')
elseif mode == 'v' then
word = get_visual_selection()
2022-12-29 20:16:36 +08:00
elseif mode == 'I' then
word = vim.fn.input('请输入您要查询的单词: ')
-- vim.ui.input({prompt = '请输入您要查询的单词: '}, function (input)
-- word = input
-- end)
2022-12-21 16:18:36 +08:00
else
2022-12-29 20:16:36 +08:00
error('mode argument is invalid')
2022-12-21 16:18:36 +08:00
end
local res = require("Trans.database").query(word)
local width, height = set_text(res)
show_win(width, height)
2022-12-21 16:18:36 +08:00
if res then
set_hl()
clear_tmp_info()
end
2022-12-25 09:02:37 +08:00
if auto_close then
api.nvim_create_autocmd(
{ 'InsertEnter', 'CursorMoved', 'BufLeave', }, {
buffer = 0,
once = true,
callback = M.close_win,
})
end
end
2022-12-21 16:18:36 +08:00
function M.query_cursor()
M.query('n')
end
2022-12-21 16:18:36 +08:00
function M.query_select()
M.query('v')
2022-12-19 22:23:12 +08:00
end
2022-12-29 20:16:36 +08:00
function M.query_input()
M.query('I')
end
2022-12-20 10:22:28 +08:00
function M.close_win()
if win > 0 then
2022-12-21 11:41:21 +08:00
api.nvim_win_close(win, true)
2022-12-20 10:22:28 +08:00
win = 0
end
end
2022-12-25 09:02:37 +08:00
-- function M.enter_win()
-- if api.nvim_win_is_valid(win) then
-- else
-- error('current win is not valid')
-- end
-- end
return M