chore: sync
This commit is contained in:
parent
20fffe0ee5
commit
164e17f737
@ -40,7 +40,7 @@ function M.query(data)
|
|||||||
-- TEST :whether multi result
|
-- TEST :whether multi result
|
||||||
assert(#result == 1, 'multi result :' .. vim.inspect(result))
|
assert(#result == 1, 'multi result :' .. vim.inspect(result))
|
||||||
result = result[1]
|
result = result[1]
|
||||||
data.result = {
|
data.result.baidu = {
|
||||||
title = result.src,
|
title = result.src,
|
||||||
translation = result.dst,
|
translation = result.dst,
|
||||||
}
|
}
|
||||||
@ -48,7 +48,7 @@ function M.query(data)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
data.result = false
|
data.result.baidu = false
|
||||||
data.trace = res
|
data.trace = res
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -28,11 +28,8 @@ function M.query(data)
|
|||||||
limit = 1,
|
limit = 1,
|
||||||
})[1]
|
})[1]
|
||||||
|
|
||||||
if res then
|
|
||||||
data.result = data.formatter(res)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
|
data.result.offline = res and data.formatter(res) or false
|
||||||
return data
|
return data
|
||||||
end
|
end
|
||||||
|
|
||||||
|
3
lua/Trans/core/defines.lua
Normal file
3
lua/Trans/core/defines.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
|
||||||
|
}
|
@ -1,12 +1,38 @@
|
|||||||
|
local function set_backend_opts(conf)
|
||||||
|
local strategys = conf.strategy
|
||||||
|
|
||||||
|
local backend = strategys.backend
|
||||||
|
if type(backend) == 'string' then
|
||||||
|
strategys.backend = backend == '*' and backend 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,
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local function define_highlights(conf)
|
||||||
|
local set_hl = vim.api.nvim_set_hl
|
||||||
|
local highlights = require('Trans.style.theme')[conf.theme]
|
||||||
|
for hl, opt in pairs(highlights) do
|
||||||
|
set_hl(0, hl, opt)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return function(opts)
|
return function(opts)
|
||||||
local M = require('Trans')
|
local M = require('Trans')
|
||||||
if opts then
|
if opts then
|
||||||
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
||||||
end
|
end
|
||||||
|
local conf = M.conf
|
||||||
|
|
||||||
local set_hl = vim.api.nvim_set_hl
|
set_backend_opts(conf)
|
||||||
local hls = require('Trans.style.theme')[M.conf.theme]
|
define_highlights(conf)
|
||||||
for hl, opt in pairs(hls) do
|
|
||||||
set_hl(0, hl, opt)
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
@ -1,17 +1,14 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require('Trans')
|
||||||
local util = Trans.util
|
local util = Trans.util
|
||||||
|
|
||||||
local backends = {
|
local backends = Trans.conf.backends
|
||||||
'offline',
|
|
||||||
'baidu',
|
|
||||||
}
|
|
||||||
|
|
||||||
local function new_data(opts)
|
local function new_data(opts)
|
||||||
opts = opts or {}
|
opts = opts or {}
|
||||||
local method = opts.method or ({
|
local method = opts.method or ({
|
||||||
n = 'normal',
|
n = 'normal',
|
||||||
v = 'visual',
|
v = 'visual',
|
||||||
})(vim.api.nvim_get_mode().mode)
|
})[vim.api.nvim_get_mode().mode]
|
||||||
|
|
||||||
local str = util.get_str(method)
|
local str = util.get_str(method)
|
||||||
if str == '' then return end
|
if str == '' then return end
|
||||||
@ -21,6 +18,7 @@ local function new_data(opts)
|
|||||||
str = str,
|
str = str,
|
||||||
method = method,
|
method = method,
|
||||||
frontend = strategy.frontend,
|
frontend = strategy.frontend,
|
||||||
|
result = {},
|
||||||
}
|
}
|
||||||
|
|
||||||
local backend = strategy.backend
|
local backend = strategy.backend
|
||||||
@ -40,6 +38,15 @@ local function new_data(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function set_result(data)
|
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
|
||||||
|
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
require('Trans.backend').baidu.query(data)
|
require('Trans.backend').baidu.query(data)
|
||||||
local thread = coroutine.running()
|
local thread = coroutine.running()
|
||||||
local resume = function()
|
local resume = function()
|
||||||
@ -60,6 +67,7 @@ local function render_window()
|
|||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- HACK : Core process logic
|
||||||
local function process(opts)
|
local function process(opts)
|
||||||
Trans.translate = coroutine.wrap(process)
|
Trans.translate = coroutine.wrap(process)
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ function M.get_str(method)
|
|||||||
input = function()
|
input = function()
|
||||||
return fn.input('请输入需要查询的单词:')
|
return fn.input('请输入需要查询的单词:')
|
||||||
end,
|
end,
|
||||||
})(method)()
|
})[method]()
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.is_English(str)
|
function M.is_English(str)
|
||||||
|
@ -2,6 +2,9 @@ local M = {}
|
|||||||
|
|
||||||
local api = vim.api
|
local api = vim.api
|
||||||
|
|
||||||
|
function M.process(data)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
||||||
|
@ -83,11 +83,11 @@ local function check_configure_file()
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function check()
|
local function check()
|
||||||
|
check_database()
|
||||||
check_neovim_version()
|
check_neovim_version()
|
||||||
|
check_configure_file()
|
||||||
check_plugin_dependencies()
|
check_plugin_dependencies()
|
||||||
check_binary_dependencies()
|
check_binary_dependencies()
|
||||||
check_database()
|
|
||||||
check_configure_file()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
return { check = check, }
|
return { check = check, }
|
||||||
|
@ -35,24 +35,33 @@ end, { desc = ' 自动发音' })
|
|||||||
|
|
||||||
|
|
||||||
--- INFO :Parse online engines config file
|
--- INFO :Parse online engines config file
|
||||||
local path = vim.fn.expand("$HOME/.vim/dict/Trans.json")
|
local function parse_engine_file()
|
||||||
local file = io.open(path, "r")
|
local path = M.conf.dir .. '/Trans.json'
|
||||||
if file then
|
local file = io.open(path, "r")
|
||||||
|
|
||||||
|
if file then
|
||||||
local content = file:read("*a")
|
local content = file:read("*a")
|
||||||
|
local status, result = pcall(vim.json.decode, content)
|
||||||
file:close()
|
file:close()
|
||||||
local status, engines = pcall(vim.json.decode, content)
|
|
||||||
assert(status, 'Unable to parse json file: ' .. path)
|
assert(status, 'Unable to parse json file: ' .. path)
|
||||||
|
return result
|
||||||
engines = engines or {}
|
|
||||||
for k, v in pairs(engines) do
|
|
||||||
if not v.enable then
|
|
||||||
engines[k] = nil
|
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
M.conf.engines = engines
|
|
||||||
else
|
|
||||||
M.conf.engines = {}
|
|
||||||
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
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
-- new_command('TranslateInput', function() M.translate { mode = 'i' } end, { desc = ' 搜索翻译', })
|
-- new_command('TranslateInput', function() M.translate { mode = 'i' } end, { desc = ' 搜索翻译', })
|
||||||
|
Loading…
x
Reference in New Issue
Block a user