style: use Trans.key instead of "Trans.key"

This commit is contained in:
JuanZoran 2023-03-12 11:23:29 +08:00
parent b05018e1bf
commit ded28b68bc
10 changed files with 70 additions and 68 deletions

View File

@ -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_passwd = baidu.app_passwd
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)
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 {
q = data.str,
from = data.from,
@ -51,7 +55,8 @@ function M.query(data)
data.trace = res
end
require('Trans.wrapper.curl').get(uri, {
Trans.wrapper.curl.get(uri, {
query = M.get_content(data),
callback = handle,
})

View File

@ -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
})

View File

@ -8,7 +8,7 @@ if vim.fn.has('nvim-0.9') == 1 then
end
return {
dir = '$HOME/.vim/dict',
dir = os.getenv('HOME') .. '/.vim/dict',
strategy = {
frontend = 'hover',
backend = '*',
@ -24,7 +24,7 @@ return {
close = 'slid',
interval = 12,
},
title = title, -- need nvim-0.9
title = title, -- need nvim-0.9
hover = {
width = 37,
height = 27,

View File

@ -1,7 +1,9 @@
return function()
local Trans = require('Trans')
-- INFO :Check ultimate.db exists
local dir = require('Trans').conf.dir
local dir = Trans.conf.dir
local path = dir .. '/ultimate.db'
if vim.fn.filereadable(path) == 1 then
vim.notify('Database already exists', vim.log.WARN)
return
@ -33,7 +35,8 @@ return function()
vim.notify(debug_message, vim.log.ERROR)
end
require('Trans.wrapper.curl').get(uri, {
Trans.wrapper.curl.get(uri, {
output = loc,
callback = handle,
})

View File

@ -1,9 +1,10 @@
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 Trans = require('Trans')
local function set_strategy_opts(conf)
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)
if type(backend) == 'string' then
return backend == '*' and all_backends or { backend }
@ -11,6 +12,7 @@ local function set_strategy_opts(conf)
return backend
end
local global_strategy = conf.strategy
global_strategy.backend = parse_backend(global_strategy.backend)
@ -38,7 +40,7 @@ end
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
@ -63,18 +65,17 @@ end
local function define_highlights(conf)
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
set_hl(0, hl, opt)
end
end
return function(opts)
local M = require('Trans')
if opts then
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
Trans.conf = vim.tbl_deep_extend('force', Trans.conf, opts)
end
local conf = M.conf
local conf = Trans.conf
conf.dir = vim.fn.expand(conf.dir)
set_strategy_opts(conf)

View File

@ -32,7 +32,7 @@ local function new_data(opts)
end
local function set_result(data)
-- local t_backend = require('Trans.backend')
-- local t_backend = require('Trans').backend
-- for _, name in rdata.backend do
-- local backend = t_backend[name]
-- backend.query(data)
@ -41,20 +41,20 @@ local function set_result(data)
-- end
-- end
require('Trans.backend').baidu.query(data)
local thread = coroutine.running()
local resume = function()
coroutine.resume(thread)
end
-- Trans.backend.baidu.query(data)
-- local thread = coroutine.running()
-- local resume = function()
-- coroutine.resume(thread)
-- end
local time = 0
while data.result == nil do
vim.defer_fn(resume, 400)
time = time + 1
print('waiting' .. ('.'):rep(time))
coroutine.yield()
end
vim.pretty_print(data)
-- local time = 0
-- while data.result == nil do
-- vim.defer_fn(resume, 400)
-- time = time + 1
-- print('waiting' .. ('.'):rep(time))
-- coroutine.yield()
-- end
-- vim.pretty_print(data)
end
local function render_window()

View File

@ -1,4 +1,5 @@
local M = {}
M = require('Trans').metatable('util')
local fn, api = vim.fn, vim.api
function M.get_select()

View File

@ -1,13 +1,27 @@
local M = setmetatable({}, {
__index = function(tbl, key)
local status, field = pcall(require, 'Trans.core.' .. key)
assert(status, 'Unknown field: ' .. key)
local function metatable(folder_name)
return setmetatable({}, {
__index = function(tbl, key)
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
if not status then
error('fail to load: ' .. key .. '\n' .. result)
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")
tbl[key] = field
return field
end
})
M.cache = {}
return M

View File

@ -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

View File

@ -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 path = Trans.conf.dir .. '/Trans.json'
local file = io.open(path, "r")
@ -55,8 +55,8 @@ if result then
result[name] = nil
end
end
Trans.conf.engines = result
Trans.conf.keys = result
else
Trans.conf.engines = {}
Trans.conf.keys = {}
end