feat: add some bugs
This commit is contained in:
parent
32cba43aa2
commit
fef956e36d
@ -3,5 +3,10 @@
|
|||||||
"Lua.diagnostics.disable": [
|
"Lua.diagnostics.disable": [
|
||||||
"empty-block",
|
"empty-block",
|
||||||
"trailing-space"
|
"trailing-space"
|
||||||
|
],
|
||||||
|
"Lua.diagnostics.globals": [
|
||||||
|
"vim",
|
||||||
|
"user_conf",
|
||||||
|
"default_conf"
|
||||||
]
|
]
|
||||||
}
|
}
|
7
lua/Trans/api/READMD.md
Normal file
7
lua/Trans/api/READMD.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# API说明
|
||||||
|
|
||||||
|
## 概述
|
||||||
|
- 翻译查询
|
||||||
|
- ``
|
||||||
|
- 字段处理
|
||||||
|
- 窗口显示
|
8
lua/Trans/api/init.lua
Normal file
8
lua/Trans/api/init.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
local M = {}
|
||||||
|
|
||||||
|
local query_warpper = require 'Trans.api.query'
|
||||||
|
|
||||||
|
M.query = query_warpper.query
|
||||||
|
|
||||||
|
|
||||||
|
return M
|
@ -5,18 +5,6 @@ if not _ then
|
|||||||
end
|
end
|
||||||
local type_check = require("Trans.util.debug").type_check
|
local type_check = require("Trans.util.debug").type_check
|
||||||
|
|
||||||
local query_field = {
|
|
||||||
'word',
|
|
||||||
'phonetic',
|
|
||||||
'definition',
|
|
||||||
'translation',
|
|
||||||
'pos',
|
|
||||||
'collins',
|
|
||||||
'oxford',
|
|
||||||
'tag',
|
|
||||||
'exchange',
|
|
||||||
}
|
|
||||||
|
|
||||||
-- INFO : init database
|
-- INFO : init database
|
||||||
local path = require("Trans.conf.loader").loaded_conf.base.db_path
|
local path = require("Trans.conf.loader").loaded_conf.base.db_path
|
||||||
local dict = db:open(path)
|
local dict = db:open(path)
|
||||||
@ -31,6 +19,20 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
local query_field = {
|
||||||
|
'word',
|
||||||
|
'phonetic',
|
||||||
|
'definition',
|
||||||
|
'translation',
|
||||||
|
'pos',
|
||||||
|
'collins',
|
||||||
|
'oxford',
|
||||||
|
'tag',
|
||||||
|
'exchange',
|
||||||
|
}
|
||||||
|
|
||||||
|
-- NOTE : local query
|
||||||
M.query = function(arg)
|
M.query = function(arg)
|
||||||
-- TODO : more opts
|
-- TODO : more opts
|
||||||
type_check {
|
type_check {
|
||||||
@ -45,4 +47,5 @@ M.query = function(arg)
|
|||||||
return res[1]
|
return res[1]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
@ -4,7 +4,7 @@ M.conf = {
|
|||||||
style = {
|
style = {
|
||||||
ui = {
|
ui = {
|
||||||
input = 'float',
|
input = 'float',
|
||||||
cursor = 'cursor',
|
normal = 'cursor',
|
||||||
select = 'cursor'
|
select = 'cursor'
|
||||||
},
|
},
|
||||||
window = {
|
window = {
|
||||||
@ -115,4 +115,5 @@ M.replace_rules = {
|
|||||||
'ui.highlight.*',
|
'ui.highlight.*',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -13,6 +13,7 @@ if def and usr then
|
|||||||
end
|
end
|
||||||
]]
|
]]
|
||||||
|
|
||||||
|
|
||||||
local plain_format = [[
|
local plain_format = [[
|
||||||
default_conf.%s = user_conf.%s or default_conf.%s
|
default_conf.%s = user_conf.%s or default_conf.%s
|
||||||
]]
|
]]
|
||||||
@ -36,21 +37,15 @@ local function pre_process()
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
M.load_conf = function(conf)
|
M.load_conf = function(conf)
|
||||||
if #M.loaded_conf == 0 then
|
user_conf = conf or {}
|
||||||
user_conf = conf or {}
|
default_conf = require("Trans.conf.default").conf
|
||||||
default_conf = require("Trans.conf.default").conf
|
pre_process()
|
||||||
pre_process()
|
M.loaded_conf = vim.tbl_deep_extend('force', default_conf, user_conf)
|
||||||
M.loaded_conf = vim.tbl_deep_extend('force', default_conf, user_conf)
|
user_conf = nil
|
||||||
user_conf = nil
|
default_conf = nil
|
||||||
default_conf = nil
|
|
||||||
else
|
|
||||||
vim.notify('Configuration has been loaded...')
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
M.loaded_conf = {}
|
M.loaded_conf = nil
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -79,14 +79,14 @@
|
|||||||
```lua
|
```lua
|
||||||
vim.keymap.set('n', 'mi', function ()
|
vim.keymap.set('n', 'mi', function ()
|
||||||
require('Trans').translate({
|
require('Trans').translate({
|
||||||
method = 'input',
|
method = 'input', -- 不填则自动判断mode获取查询的单词
|
||||||
engine = { -- 异步查询所有的引擎, 按照列表
|
engine = { -- 异步查询所有的引擎, 按照列表
|
||||||
'local',
|
'local',
|
||||||
'youdao',
|
'youdao',
|
||||||
'baidu'
|
'baidu'
|
||||||
},
|
},
|
||||||
-- view = 'cursor'
|
-- win = 'cursor'
|
||||||
view = {
|
win = {
|
||||||
style = 'cursor',
|
style = 'cursor',
|
||||||
height = 50,
|
height = 50,
|
||||||
width = 30,
|
width = 30,
|
||||||
|
@ -15,6 +15,27 @@ local function get_select()
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
local function get_word(method)
|
||||||
|
if not method then
|
||||||
|
local mode = vim.api.nvim_get_mode()
|
||||||
|
if mode == 'n' then
|
||||||
|
return vim.fn.expand('<cword>')
|
||||||
|
elseif mode == 'v' then
|
||||||
|
return get_select()
|
||||||
|
else
|
||||||
|
error('invalid mode')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if method == 'input' then
|
||||||
|
return vim.fn.input('请输入您要查询的单词:') -- TODO Use Telescope with fuzzy finder
|
||||||
|
|
||||||
|
-- TODO : other method
|
||||||
|
else
|
||||||
|
error('invalid method')
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
M.get_query_res = function(method)
|
M.get_query_res = function(method)
|
||||||
type_check {
|
type_check {
|
||||||
method = { method, 'string' },
|
method = { method, 'string' },
|
||||||
@ -25,7 +46,6 @@ M.get_query_res = function(method)
|
|||||||
elseif method == 'select' then
|
elseif method == 'select' then
|
||||||
word = get_select():match('%S+')
|
word = get_select():match('%S+')
|
||||||
elseif method == 'input' then
|
elseif method == 'input' then
|
||||||
word = vim.fn.input('请输入您要查询的单词:') -- TODO Use Telescope with fuzzy finder
|
|
||||||
else
|
else
|
||||||
error('unknown method')
|
error('unknown method')
|
||||||
end
|
end
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
M.conf = {}
|
|
||||||
|
|
||||||
M.setup = require('Trans.conf.loader').load_conf
|
M.setup = require('Trans.conf.loader').load_conf
|
||||||
|
|
||||||
|
M.translate = require('Tran.wrapper.translate')
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
|
|
||||||
M.test = {
|
|
||||||
'test1',
|
|
||||||
'test1',
|
|
||||||
'test1',
|
|
||||||
'test1',
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function M.tmp (start, stop)
|
|
||||||
if start > stop then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local value = M.test[start]
|
|
||||||
start = start + 1
|
|
||||||
return function ()
|
|
||||||
|
|
||||||
return start
|
|
||||||
end
|
|
||||||
end
|
|
||||||
-- function M:tmp(index)
|
|
||||||
-- end
|
|
||||||
|
|
||||||
for v in M.tmp, 1, #M.test do
|
|
||||||
print(v)
|
|
||||||
end
|
|
||||||
|
|
||||||
-- for i,n in square,3,0
|
|
||||||
-- do
|
|
||||||
-- print(i,n)
|
|
||||||
-- end
|
|
52
lua/Trans/wrapper/translate.lua
Normal file
52
lua/Trans/wrapper/translate.lua
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
local type_check = require("Trans.util.debug").type_check
|
||||||
|
|
||||||
|
local window = require("Trans.conf.window")
|
||||||
|
-- Default conf
|
||||||
|
local core = require("Trasn.core")
|
||||||
|
|
||||||
|
local function get_opts(opts)
|
||||||
|
local default_conf = {
|
||||||
|
method = vim.api.nvim_get_mode(),
|
||||||
|
engine = {
|
||||||
|
'local',
|
||||||
|
-- TODO : other engine
|
||||||
|
},
|
||||||
|
win = window.cursor_win,
|
||||||
|
}
|
||||||
|
|
||||||
|
-- TODO :process win height and width
|
||||||
|
if type(opts.engine) == 'string' then
|
||||||
|
opts.engine = { opts.engine }
|
||||||
|
end
|
||||||
|
|
||||||
|
if opts.win then
|
||||||
|
opts.win = window.process(opts.win)
|
||||||
|
end
|
||||||
|
return vim.tbl_extend('force', default_conf, opts)
|
||||||
|
end
|
||||||
|
|
||||||
|
local function translate(opts)
|
||||||
|
type_check {
|
||||||
|
opts = { opts, 'table' }
|
||||||
|
}
|
||||||
|
opts = get_opts(opts or {})
|
||||||
|
|
||||||
|
|
||||||
|
local field = core.query(opts)
|
||||||
|
|
||||||
|
opts = {
|
||||||
|
field = field,
|
||||||
|
}
|
||||||
|
|
||||||
|
local content = core.process(opts)
|
||||||
|
|
||||||
|
opts = {
|
||||||
|
style = opts.style,
|
||||||
|
height = opts.height,
|
||||||
|
width = opts.width,
|
||||||
|
content = content,
|
||||||
|
}
|
||||||
|
core.show(opts)
|
||||||
|
end
|
||||||
|
|
||||||
|
return translate
|
Loading…
x
Reference in New Issue
Block a user