chore: sync and leave bug to be fixed
This commit is contained in:
parent
cdb1ab847a
commit
27ef2c00b0
@ -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
|
||||
|
@ -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
|
||||
|
@ -8,9 +8,7 @@ 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'),
|
||||
dir = '$HOME/.vim/dict',
|
||||
strategy = {
|
||||
frontend = 'hover',
|
||||
backend = '*',
|
||||
@ -19,23 +17,24 @@ return {
|
||||
timeout = 2000,
|
||||
},
|
||||
frontend = {
|
||||
hover = {
|
||||
auto_play = true,
|
||||
border = 'rounded',
|
||||
animation = {
|
||||
open = 'slid', -- 'fold', 'slid'
|
||||
close = 'slid',
|
||||
interval = 12,
|
||||
},
|
||||
title = title, -- need nvim-0.9
|
||||
hover = {
|
||||
width = 37,
|
||||
height = 27,
|
||||
border = 'rounded',
|
||||
keymap = {
|
||||
play = '_',
|
||||
pageup = '[[',
|
||||
pagedown = ']]',
|
||||
pin = '<leader>[',
|
||||
close = '<leader>]',
|
||||
toggle_entry = '<leader>;',
|
||||
play = '_',
|
||||
},
|
||||
animation = {
|
||||
open = 'slid', -- 'fold', 'slid'
|
||||
close = 'slid',
|
||||
interval = 12,
|
||||
},
|
||||
auto_close_events = {
|
||||
'InsertEnter',
|
||||
@ -53,6 +52,9 @@ return {
|
||||
spinner = 'dots', -- see: /lua/Trans/style/spinner
|
||||
},
|
||||
},
|
||||
style = {
|
||||
-- see lua/Trans/style/theme.lua
|
||||
theme = 'default', -- default | tokyonight | dracula
|
||||
-- or use emoji
|
||||
icon = {
|
||||
star = '', -- ⭐
|
||||
@ -61,6 +63,7 @@ return {
|
||||
no = '', -- ❌
|
||||
cell = '■', -- ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
14
lua/Trans/core/define.lua
Normal file
14
lua/Trans/core/define.lua
Normal file
@ -0,0 +1,14 @@
|
||||
return {
|
||||
modes = {
|
||||
'normal',
|
||||
'visual',
|
||||
'input',
|
||||
},
|
||||
backends = {
|
||||
'offline',
|
||||
'baidu',
|
||||
},
|
||||
frontends = {
|
||||
'hover',
|
||||
}
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
return {
|
||||
|
||||
}
|
@ -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
|
||||
-- FIXME : Wrong backend baidu
|
||||
local function parse_backend(backend)
|
||||
if type(backend) == 'string' then
|
||||
strategys.backend = backend == '*' and backend or { backend }
|
||||
return backend == '*' and all_backends or { backend }
|
||||
end
|
||||
|
||||
for i = 2, #conf.backends do
|
||||
local name = conf.backends[i]
|
||||
if not strategys[name] then
|
||||
strategys[name] = {
|
||||
frontend = strategys.frontend,
|
||||
backend = strategys.backend,
|
||||
return backend
|
||||
end
|
||||
local global_strategy = conf.strategy
|
||||
global_strategy.backend = parse_backend(global_strategy.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 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
|
||||
|
@ -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()
|
||||
|
@ -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('<cword>')
|
||||
@ -46,7 +46,7 @@ function M.get_str(method)
|
||||
input = function()
|
||||
return fn.input('请输入需要查询的单词:')
|
||||
end,
|
||||
})[method]()
|
||||
})[mode]()
|
||||
end
|
||||
|
||||
function M.is_English(str)
|
||||
|
@ -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
|
||||
end
|
||||
if not opts.enable then
|
||||
result[name] = nil
|
||||
end
|
||||
end
|
||||
Trans.conf.engines = result
|
||||
|
||||
|
||||
-- new_command('TranslateInput', function() M.translate { mode = 'i' } end, { desc = ' 搜索翻译', })
|
||||
else
|
||||
Trans.conf.engines = {}
|
||||
end
|
||||
|
Loading…
x
Reference in New Issue
Block a user