style: use Trans.key instead of "Trans.key"
This commit is contained in:
parent
b05018e1bf
commit
ded28b68bc
@ -1,6 +1,9 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
local baidu = require('Trans').conf.engines.baidu
|
local Trans = require('Trans')
|
||||||
|
|
||||||
|
|
||||||
|
local baidu = Trans.conf.keys.baidu
|
||||||
local app_id = baidu.app_id
|
local app_id = baidu.app_id
|
||||||
local app_passwd = baidu.app_passwd
|
local app_passwd = baidu.app_passwd
|
||||||
local salt = tostring(math.random(bit.lshift(1, 15)))
|
local salt = tostring(math.random(bit.lshift(1, 15)))
|
||||||
@ -9,7 +12,8 @@ local uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate'
|
|||||||
|
|
||||||
function M.get_content(data)
|
function M.get_content(data)
|
||||||
local tmp = app_id .. data.str .. salt .. app_passwd
|
local tmp = app_id .. data.str .. salt .. app_passwd
|
||||||
local sign = require('Trans.util.md5').sumhexa(tmp)
|
local sign = Trans.util.md5.sumhexa(tmp)
|
||||||
|
|
||||||
return {
|
return {
|
||||||
q = data.str,
|
q = data.str,
|
||||||
from = data.from,
|
from = data.from,
|
||||||
@ -51,7 +55,8 @@ function M.query(data)
|
|||||||
data.trace = res
|
data.trace = res
|
||||||
end
|
end
|
||||||
|
|
||||||
require('Trans.wrapper.curl').get(uri, {
|
|
||||||
|
Trans.wrapper.curl.get(uri, {
|
||||||
query = M.get_content(data),
|
query = M.get_content(data),
|
||||||
callback = handle,
|
callback = handle,
|
||||||
})
|
})
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
return setmetatable({}, {
|
|
||||||
__index = function(t, k)
|
|
||||||
local res, engine = pcall(require, [[Trans.backend.]] .. k)
|
|
||||||
if not res then
|
|
||||||
error([[Fail to load backend: ]] .. k .. '\n ' .. engine)
|
|
||||||
end
|
|
||||||
t[k] = engine
|
|
||||||
return engine
|
|
||||||
end
|
|
||||||
})
|
|
@ -8,7 +8,7 @@ if vim.fn.has('nvim-0.9') == 1 then
|
|||||||
end
|
end
|
||||||
|
|
||||||
return {
|
return {
|
||||||
dir = '$HOME/.vim/dict',
|
dir = os.getenv('HOME') .. '/.vim/dict',
|
||||||
strategy = {
|
strategy = {
|
||||||
frontend = 'hover',
|
frontend = 'hover',
|
||||||
backend = '*',
|
backend = '*',
|
||||||
@ -24,7 +24,7 @@ return {
|
|||||||
close = 'slid',
|
close = 'slid',
|
||||||
interval = 12,
|
interval = 12,
|
||||||
},
|
},
|
||||||
title = title, -- need nvim-0.9
|
title = title, -- need nvim-0.9
|
||||||
hover = {
|
hover = {
|
||||||
width = 37,
|
width = 37,
|
||||||
height = 27,
|
height = 27,
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
return function()
|
return function()
|
||||||
|
local Trans = require('Trans')
|
||||||
-- INFO :Check ultimate.db exists
|
-- INFO :Check ultimate.db exists
|
||||||
local dir = require('Trans').conf.dir
|
local dir = Trans.conf.dir
|
||||||
local path = dir .. '/ultimate.db'
|
local path = dir .. '/ultimate.db'
|
||||||
|
|
||||||
if vim.fn.filereadable(path) == 1 then
|
if vim.fn.filereadable(path) == 1 then
|
||||||
vim.notify('Database already exists', vim.log.WARN)
|
vim.notify('Database already exists', vim.log.WARN)
|
||||||
return
|
return
|
||||||
@ -33,7 +35,8 @@ return function()
|
|||||||
vim.notify(debug_message, vim.log.ERROR)
|
vim.notify(debug_message, vim.log.ERROR)
|
||||||
end
|
end
|
||||||
|
|
||||||
require('Trans.wrapper.curl').get(uri, {
|
|
||||||
|
Trans.wrapper.curl.get(uri, {
|
||||||
output = loc,
|
output = loc,
|
||||||
callback = handle,
|
callback = handle,
|
||||||
})
|
})
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
local function set_strategy_opts(conf)
|
local Trans = require('Trans')
|
||||||
local define = require('Trans').define
|
|
||||||
local all_modes = define.modes
|
local function set_strategy_opts(conf)
|
||||||
local all_backends = vim.tbl_keys(conf.engines)
|
local define = Trans.define
|
||||||
|
local all_modes = define.modes
|
||||||
|
local all_backends = vim.tbl_keys(conf.keys)
|
||||||
|
|
||||||
-- FIXME : Wrong backend baidu
|
|
||||||
local function parse_backend(backend)
|
local function parse_backend(backend)
|
||||||
if type(backend) == 'string' then
|
if type(backend) == 'string' then
|
||||||
return backend == '*' and all_backends or { backend }
|
return backend == '*' and all_backends or { backend }
|
||||||
@ -11,6 +12,7 @@ local function set_strategy_opts(conf)
|
|||||||
|
|
||||||
return backend
|
return backend
|
||||||
end
|
end
|
||||||
|
|
||||||
local global_strategy = conf.strategy
|
local global_strategy = conf.strategy
|
||||||
global_strategy.backend = parse_backend(global_strategy.backend)
|
global_strategy.backend = parse_backend(global_strategy.backend)
|
||||||
|
|
||||||
@ -38,7 +40,7 @@ end
|
|||||||
|
|
||||||
|
|
||||||
local function set_frontend_opts(conf)
|
local function set_frontend_opts(conf)
|
||||||
local all_frontends = require('Trans').define.frontends
|
local all_frontends = Trans.define.frontends
|
||||||
|
|
||||||
|
|
||||||
local global_frontend_opts = conf.frontend
|
local global_frontend_opts = conf.frontend
|
||||||
@ -63,18 +65,17 @@ end
|
|||||||
|
|
||||||
local function define_highlights(conf)
|
local function define_highlights(conf)
|
||||||
local set_hl = vim.api.nvim_set_hl
|
local set_hl = vim.api.nvim_set_hl
|
||||||
local highlights = require('Trans.style.theme')[conf.style.theme]
|
local highlights = Trans.style.theme[conf.style.theme]
|
||||||
for hl, opt in pairs(highlights) do
|
for hl, opt in pairs(highlights) do
|
||||||
set_hl(0, hl, opt)
|
set_hl(0, hl, opt)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return function(opts)
|
return function(opts)
|
||||||
local M = require('Trans')
|
|
||||||
if opts then
|
if opts then
|
||||||
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
|
Trans.conf = vim.tbl_deep_extend('force', Trans.conf, opts)
|
||||||
end
|
end
|
||||||
local conf = M.conf
|
local conf = Trans.conf
|
||||||
conf.dir = vim.fn.expand(conf.dir)
|
conf.dir = vim.fn.expand(conf.dir)
|
||||||
|
|
||||||
set_strategy_opts(conf)
|
set_strategy_opts(conf)
|
||||||
|
@ -32,7 +32,7 @@ local function new_data(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function set_result(data)
|
local function set_result(data)
|
||||||
-- local t_backend = require('Trans.backend')
|
-- local t_backend = require('Trans').backend
|
||||||
-- for _, name in rdata.backend do
|
-- for _, name in rdata.backend do
|
||||||
-- local backend = t_backend[name]
|
-- local backend = t_backend[name]
|
||||||
-- backend.query(data)
|
-- backend.query(data)
|
||||||
@ -41,20 +41,20 @@ local function set_result(data)
|
|||||||
-- end
|
-- end
|
||||||
-- end
|
-- end
|
||||||
|
|
||||||
require('Trans.backend').baidu.query(data)
|
-- Trans.backend.baidu.query(data)
|
||||||
local thread = coroutine.running()
|
-- local thread = coroutine.running()
|
||||||
local resume = function()
|
-- local resume = function()
|
||||||
coroutine.resume(thread)
|
-- coroutine.resume(thread)
|
||||||
end
|
-- end
|
||||||
|
|
||||||
local time = 0
|
-- local time = 0
|
||||||
while data.result == nil do
|
-- while data.result == nil do
|
||||||
vim.defer_fn(resume, 400)
|
-- vim.defer_fn(resume, 400)
|
||||||
time = time + 1
|
-- time = time + 1
|
||||||
print('waiting' .. ('.'):rep(time))
|
-- print('waiting' .. ('.'):rep(time))
|
||||||
coroutine.yield()
|
-- coroutine.yield()
|
||||||
end
|
-- end
|
||||||
vim.pretty_print(data)
|
-- vim.pretty_print(data)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function render_window()
|
local function render_window()
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
local M = {}
|
M = require('Trans').metatable('util')
|
||||||
|
|
||||||
local fn, api = vim.fn, vim.api
|
local fn, api = vim.fn, vim.api
|
||||||
|
|
||||||
function M.get_select()
|
function M.get_select()
|
||||||
|
@ -1,13 +1,27 @@
|
|||||||
local M = setmetatable({}, {
|
local function metatable(folder_name)
|
||||||
__index = function(tbl, key)
|
return setmetatable({}, {
|
||||||
local status, field = pcall(require, 'Trans.core.' .. key)
|
__index = function(tbl, key)
|
||||||
assert(status, 'Unknown field: ' .. key)
|
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
||||||
|
|
||||||
tbl[key] = field
|
if not status then
|
||||||
return field
|
error('fail to load: ' .. key .. '\n' .. result)
|
||||||
end
|
end
|
||||||
})
|
|
||||||
|
tbl[key] = result
|
||||||
|
return result
|
||||||
|
end
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
local M = metatable('core')
|
||||||
|
|
||||||
|
|
||||||
|
M.metatable = metatable
|
||||||
|
M.style = metatable("style")
|
||||||
|
M.wrapper = metatable("wrapper")
|
||||||
|
M.backend = metatable("backend")
|
||||||
|
M.frontend = metatable("frontend")
|
||||||
|
|
||||||
|
|
||||||
M.cache = {}
|
M.cache = {}
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
local function read_json()
|
|
||||||
local path = vim.fn.expand("$HOME/.config/Trans.json")
|
|
||||||
local file = io.open(path, "r")
|
|
||||||
if file then
|
|
||||||
local content = file:read("*a")
|
|
||||||
file:close()
|
|
||||||
local data = vim.json.decode(content)
|
|
||||||
print(data.api_key, data.api_id)
|
|
||||||
else
|
|
||||||
print("File not found: " .. path)
|
|
||||||
end
|
|
||||||
end
|
|
@ -34,7 +34,7 @@ end, { desc = ' 自动发音' })
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
--- INFO :Parse online engines config file
|
--- INFO :Parse online engine keys config file
|
||||||
local function parse_engine_file()
|
local function parse_engine_file()
|
||||||
local path = Trans.conf.dir .. '/Trans.json'
|
local path = Trans.conf.dir .. '/Trans.json'
|
||||||
local file = io.open(path, "r")
|
local file = io.open(path, "r")
|
||||||
@ -55,8 +55,8 @@ if result then
|
|||||||
result[name] = nil
|
result[name] = nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
Trans.conf.engines = result
|
|
||||||
|
|
||||||
|
Trans.conf.keys = result
|
||||||
else
|
else
|
||||||
Trans.conf.engines = {}
|
Trans.conf.keys = {}
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user