diff --git a/lua/Trans/init.lua b/lua/Trans/init.lua index fd89a6f..a7232a1 100644 --- a/lua/Trans/init.lua +++ b/lua/Trans/init.lua @@ -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") diff --git a/lua/Trans/view/float.lua b/lua/Trans/view/float.lua index 71ded95..10b64db 100644 --- a/lua/Trans/view/float.lua +++ b/lua/Trans/view/float.lua @@ -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 diff --git a/lua/Trans/view/hover.lua b/lua/Trans/view/hover.lua index 8dde52b..04a7db1 100644 --- a/lua/Trans/view/hover.lua +++ b/lua/Trans/view/hover.lua @@ -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]()