refactor: replace conf.window with conf.hover and conf.float

This commit is contained in:
JuanZoran 2023-01-19 23:44:27 +08:00
parent 373a1e4914
commit e6b02ba5ce
3 changed files with 70 additions and 55 deletions

View File

@ -6,30 +6,37 @@ M.conf = {
n = 'hover',
v = 'hover',
},
window = {
-- animation = true,
hover = {
width = 36,
height = 26,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
-- animation = true,
hover = {
width = 36,
height = 26,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
keymap = {
-- TODO :
pageup = '[[',
pagedown = ']]',
},
animation = 13,
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
title = {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
},
keymap = {
quit = 'q',
},
animation = 9,
},
order = {
-- offline = {
'title',
@ -56,13 +63,6 @@ M.conf = {
-- no = ''
},
db_path = '$HOME/.vim/dict/ultimate.db',
keymap = {
-- TODO :
hover = {
pageup = '[[',
pagedown = ']]',
},
},
-- TODO :
-- engine = {
@ -86,13 +86,15 @@ M.setup = function(opts)
if opts then
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
end
local window = M.conf.window
assert(window.hover.width > 1 and window.hover.height > 1)
assert(0 < window.float.width and window.float.width <= 1)
assert(0 < window.float.height and window.float.height <= 1)
local hover = M.conf.hover
local float = M.conf.float
window.float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * window.float.height)
window.float.width = math.floor(vim.o.columns * window.float.width)
assert(hover.width > 1 and hover.height > 1)
assert(0 < float.width and float.width <= 1)
assert(0 < float.height and float.height <= 1)
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
float.width = math.floor(vim.o.columns * float.width)
M.translate = require('Trans.translate')
require("Trans.setup")

View File

@ -1,23 +1,28 @@
local conf = require('Trans').conf
local m_window
local m_result
return function(word)
-- TODO :online query
m_result = require('Trans.query.offline')(word)
m_window = require('Trans.window')
local float = conf.window.float
float.row = math.floor((vim.o.lines - float.height) / 2)
float.col = math.floor((vim.o.columns - float.width) / 2)
float.relative = 'editor'
m_result = require('Trans.query.offline')(word)
m_window = require('Trans.window')
local float = require('Trans').conf.float
local opt = {
relative = 'editor',
width = float.width,
height = float.height,
border = float.border,
title = float.title,
row = math.floor((vim.o.lines - float.height) / 2),
col = math.floor((vim.o.columns - float.width) / 2),
}
-- 创建窗口
m_window.init(true, float)
m_window.init(true, opt)
m_window.center('https:github.com/JuanZoran/Trans.nvim', '@text.uri') -- only show color with treesiter
m_window.draw()
m_window.map('q', function ()
m_window.try_close(9)
m_window.map('q', function()
m_window.try_close(float.animation)
end)
end

View File

@ -182,18 +182,26 @@ local action = {
}
return function (word)
return function(word)
vim.validate {
word = { word, 's' },
}
-- 目前只处理了本地数据库的查询
m_result = require('Trans.query.offline')(word)
local hover = conf.window.hover
hover.relative = 'cursor'
hover.col = 2
hover.row = 2
m_window.init(false, hover)
m_result = require('Trans.query.offline')(word)
local hover = conf.hover
local opt = {
relative = 'cursor',
width = hover.width,
height = hover.height,
title = hover.title,
border = hover.border,
col = 2,
row = 2,
}
m_window.init(false, opt)
if m_result then
for _, field in ipairs(conf.order) do
@ -209,15 +217,15 @@ return function (word)
{ --[[ 'InsertEnter', ]] 'CursorMoved', 'BufLeave', }, {
buffer = 0,
once = true,
callback = function ()
m_window.try_close(13) -- NOTE :maybe can be passed by uesr
callback = function()
m_window.try_close(hover.animation) -- NOTE :maybe can be passed by uesr
end,
})
m_window.set('wrap', true)
m_window.adjust()
for act, key in pairs(conf.keymap.hover) do
for act, key in pairs(hover.keymap) do
vim.keymap.set('n', key, function()
if m_window.is_open() then
action[act]()