diff --git a/lua/Trans/backend/baidu.lua b/lua/Trans/backend/baidu.lua index 8386131..568d77a 100644 --- a/lua/Trans/backend/baidu.lua +++ b/lua/Trans/backend/baidu.lua @@ -1,6 +1,5 @@ local M = {} - local baidu = require('Trans').conf.engines.baidu local app_id = baidu.app_id local app_passwd = baidu.app_passwd diff --git a/lua/Trans/backend/init.lua b/lua/Trans/backend/init.lua index 296dd7a..4ede63a 100644 --- a/lua/Trans/backend/init.lua +++ b/lua/Trans/backend/init.lua @@ -1,7 +1,9 @@ return setmetatable({}, { __index = function(t, k) local res, engine = pcall(require, [[Trans.backend.]] .. k) - assert(res, [[No such Backend: ]] .. k) + if not res then + error([[Fail to load backend: ]] .. k .. '\n ' .. engine) + end t[k] = engine return engine end diff --git a/lua/Trans/core/conf.lua b/lua/Trans/core/conf.lua index 42ca8ad..a8dc3da 100644 --- a/lua/Trans/core/conf.lua +++ b/lua/Trans/core/conf.lua @@ -8,34 +8,33 @@ if vim.fn.has('nvim-0.9') == 1 then end return { - theme = 'default', -- see lua/Trans/style/theme.lua - auto_play = true, - dir = vim.fn.expand('$HOME/.vim/dict'), - strategy = { + dir = '$HOME/.vim/dict', + strategy = { frontend = 'hover', backend = '*', }, - backend = { + backend = { timeout = 2000, }, - frontend = { + frontend = { + auto_play = true, + border = 'rounded', + animation = { + open = 'slid', -- 'fold', 'slid' + close = 'slid', + interval = 12, + }, + title = title, -- need nvim-0.9 hover = { - title = title, -- need nvim-0.9 width = 37, height = 27, - border = 'rounded', keymap = { - pageup = '[[', - pagedown = ']]', - pin = '[', - close = ']', + play = '_', + pageup = '[[', + pagedown = ']]', + pin = '[', + close = ']', toggle_entry = ';', - play = '_', - }, - animation = { - open = 'slid', -- 'fold', 'slid' - close = 'slid', - interval = 12, }, auto_close_events = { 'InsertEnter', @@ -53,13 +52,17 @@ return { spinner = 'dots', -- see: /lua/Trans/style/spinner }, }, - -- or use emoji - icon = { - star = '', -- ⭐ - notfound = ' ', -- ❔ - yes = '✔', -- ✔️ - no = '', -- ❌ - cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █ + style = { + -- see lua/Trans/style/theme.lua + theme = 'default', -- default | tokyonight | dracula + -- or use emoji + icon = { + star = '', -- ⭐ + notfound = ' ', -- ❔ + yes = '✔', -- ✔️ + no = '', -- ❌ + cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █ + }, }, } diff --git a/lua/Trans/core/define.lua b/lua/Trans/core/define.lua new file mode 100644 index 0000000..0110336 --- /dev/null +++ b/lua/Trans/core/define.lua @@ -0,0 +1,14 @@ +return { + modes = { + 'normal', + 'visual', + 'input', + }, + backends = { + 'offline', + 'baidu', + }, + frontends = { + 'hover', + } +} diff --git a/lua/Trans/core/defines.lua b/lua/Trans/core/defines.lua deleted file mode 100644 index b30bcbd..0000000 --- a/lua/Trans/core/defines.lua +++ /dev/null @@ -1,3 +0,0 @@ -return { - -} diff --git a/lua/Trans/core/setup.lua b/lua/Trans/core/setup.lua index 4b8fdcd..1a00684 100644 --- a/lua/Trans/core/setup.lua +++ b/lua/Trans/core/setup.lua @@ -1,26 +1,69 @@ -local function set_backend_opts(conf) - local strategys = conf.strategy +local function set_strategy_opts(conf) + local define = require('Trans').define + local all_modes = define.modes + local all_backends = vim.tbl_keys(conf.engines) - local backend = strategys.backend - if type(backend) == 'string' then - strategys.backend = backend == '*' and backend or { backend } + -- FIXME : Wrong backend baidu + local function parse_backend(backend) + if type(backend) == 'string' then + return backend == '*' and all_backends or { backend } + end + + return backend end + local global_strategy = conf.strategy + global_strategy.backend = parse_backend(global_strategy.backend) - for i = 2, #conf.backends do - local name = conf.backends[i] - if not strategys[name] then - strategys[name] = { - frontend = strategys.frontend, - backend = strategys.backend, - } + + local meta = { + __index = function(tbl, key) + tbl[key] = global_strategy[key] + return tbl[key] + end + } + + + for _, mode in ipairs(all_modes) do + if not global_strategy[mode] then + global_strategy[mode] = setmetatable({}, meta) + else + if mode.backend then + mode.backend = parse_backend(mode.backend) + end + + setmetatable(mode, meta) end end end +local function set_frontend_opts(conf) + local all_frontends = require('Trans').define.frontends + + + local global_frontend_opts = conf.frontend + local meta = { + __index = function(tbl, key) + tbl[key] = global_frontend_opts[key] + return tbl[key] + end + } + + for _, frontend in ipairs(all_frontends) do + local frontend_opts = global_frontend_opts[frontend] + if not frontend_opts then + global_frontend_opts[frontend] = setmetatable({}, meta) + else + setmetatable(frontend_opts, meta) + end + end +end + + + local function define_highlights(conf) - local set_hl = vim.api.nvim_set_hl - local highlights = require('Trans.style.theme')[conf.theme] + local set_hl = vim.api.nvim_set_hl + local highlights = require('Trans.style.theme')[conf.style.theme] for hl, opt in pairs(highlights) do set_hl(0, hl, opt) end @@ -32,7 +75,9 @@ return function(opts) M.conf = vim.tbl_deep_extend('force', M.conf, opts) end local conf = M.conf + conf.dir = vim.fn.expand(conf.dir) - set_backend_opts(conf) + set_strategy_opts(conf) + set_frontend_opts(conf) define_highlights(conf) end diff --git a/lua/Trans/core/translate.lua b/lua/Trans/core/translate.lua index 7f2920d..66c505b 100644 --- a/lua/Trans/core/translate.lua +++ b/lua/Trans/core/translate.lua @@ -1,32 +1,26 @@ local Trans = require('Trans') local util = Trans.util -local backends = Trans.conf.backends - +vim.pretty_print(Trans.conf) local function new_data(opts) opts = opts or {} - local method = opts.method or ({ + local mode = opts.method or ({ n = 'normal', v = 'visual', })[vim.api.nvim_get_mode().mode] - local str = util.get_str(method) + local str = util.get_str(mode) if str == '' then return end - local strategy = Trans.conf.strategy[method] or Trans.conf.strategy + local strategy = Trans.conf.strategy[mode] local data = { str = str, - method = method, + mode = mode, frontend = strategy.frontend, + backend = strategy.backend, result = {}, } - local backend = strategy.backend - if type(backend) == 'string' then - backend = backend == '*' and backends or { backend } - end - data.backend = backend - if util.is_English(str) then data.from = 'en' data.to = 'zh' @@ -38,14 +32,14 @@ local function new_data(opts) end local function set_result(data) - local t_backend = require('Trans.backend') - for _, name in data.backend do - local backend = t_backend[name] - backend.query(data) - if backend.no_wait then + -- local t_backend = require('Trans.backend') + -- for _, name in rdata.backend do + -- local backend = t_backend[name] + -- backend.query(data) + -- if backend.no_wait then - end - end + -- end + -- end require('Trans.backend').baidu.query(data) local thread = coroutine.running() diff --git a/lua/Trans/core/util.lua b/lua/Trans/core/util.lua index 6032538..00626f5 100644 --- a/lua/Trans/core/util.lua +++ b/lua/Trans/core/util.lua @@ -32,9 +32,9 @@ function M.get_select() end ---Get Text which need to be translated ----@param method string 'n' | 'v' | 'i' +---@param mode string 'n' | 'v' | 'i' ---@return string -function M.get_str(method) +function M.get_str(mode) return ({ normal = function() return fn.expand('') @@ -46,7 +46,7 @@ function M.get_str(method) input = function() return fn.input('请输入需要查询的单词:') end, - })[method]() + })[mode]() end function M.is_English(str) diff --git a/plugin/Trans.lua b/plugin/Trans.lua index 44949a9..779e835 100644 --- a/plugin/Trans.lua +++ b/plugin/Trans.lua @@ -21,13 +21,13 @@ end --- INFO :Define plugin command -local M = require('Trans') +local Trans = require('Trans') local command = api.nvim_create_user_command -command('Translate', function() M.translate() end, { desc = ' 单词翻译', }) +command('Translate', function() Trans.translate() end, { desc = ' 单词翻译', }) command('TransPlay', function() - local str = M.util.get_str(api.nvim_get_mode().mode) - if str and str ~= '' and M.util.is_English(str) then + local str = Trans.util.get_str(api.nvim_get_mode().mode) + if str and str ~= '' and Trans.util.is_English(str) then str:play() end end, { desc = ' 自动发音' }) @@ -36,7 +36,7 @@ end, { desc = ' 自动发音' }) --- INFO :Parse online engines config file local function parse_engine_file() - local path = M.conf.dir .. '/Trans.json' + local path = Trans.conf.dir .. '/Trans.json' local file = io.open(path, "r") if file then @@ -48,20 +48,15 @@ local function parse_engine_file() end end -M.conf.backends = { 'offline' } -M.engines = {} - local result = parse_engine_file() if result then - local backends = M.conf.backends - local engines = M.engines for name, opts in pairs(result) do - if opts.enable then - backends[#backends + 1] = name - engines[name] = opts + if not opts.enable then + result[name] = nil end end + Trans.conf.engines = result + +else + Trans.conf.engines = {} end - - --- new_command('TranslateInput', function() M.translate { mode = 'i' } end, { desc = ' 搜索翻译', })