refactor: init the repo and decide to add more feature

This commit is contained in:
JuanZoran 2023-01-05 21:15:01 +08:00
parent 033622ed85
commit a1488b2d9b
17 changed files with 178 additions and 46 deletions

6
lua/.luarc.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/sumneko/vscode-lua/master/setting/schema.json",
"Lua.diagnostics.disable": [
"unused-local"
]
}

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -0,0 +1,7 @@
local M = {}
M.to_lines = function (field)
-- TODO
end
return M

View File

@ -6,7 +6,7 @@ local buf_opts = {
local buf = vim.api.nvim_create_buf(false, true)
for k, v in pairs(buf_opts) do
vim.api.nvim_buf_set_options(buf, k, v)
vim.api.nvim_buf_set_option(buf, k, v)
end
M.buf = buf

View File

@ -1,27 +1,21 @@
local M = {}
-- INFO :加载的规则 [LuaRule]
M.replace_rules = {
'order',
'Trans.+',
}
M.conf = {
style = {
window = {
ui = {
input = 'float',
cursor = 'cursor',
select = 'cursor'
},
order = {
'title',
'tag',
'pos',
'exchange',
'zh',
'en',
'Title',
'Tag',
'Pos',
'Exchange',
'Translation',
'Definition',
},
conf = {
window = {
-- NOTE :可选的风格:['fixed', 'relative', .. TODO]
-- width 和 height说明
-- 大于1
@ -44,6 +38,12 @@ M.conf = {
width = 0.8,
height = 0.9,
},
-- NOTE :如果你想限制某个组件的行数,可以设置 (名称与order相同)
-- Example:
-- limit = {
-- En = 1, -- 只显示第一行,(一般为最广泛的释义)
-- },
limit = nil,
},
},
ui = {
@ -107,4 +107,10 @@ M.conf = {
-- TODO register word
}
-- INFO :加载的规则 [LuaRule]
M.replace_rules = {
'order',
'Trans.+',
}
return M

View File

@ -1,7 +1,13 @@
local M = {}
local conf = require("Trans").conf.view
local conf = require("Trans.conf").style.window
local type_check = require("Trans.util.debug").type_check
-- FIXME
local get_float_opts = function(float_conf)
type_check {
float_conf = { float_conf, 'table' },
}
local columns = vim.o.columns
local height = vim.o.lines - vim.o.cmdheight - float_conf.top_offset
local width = math.floor(columns * float_conf.relative_width)
@ -21,6 +27,9 @@ local get_float_opts = function(float_conf)
end
local get_cursor_opts = function(cursor_conf)
type_check {
cursor_conf = { cursor_conf, 'table' },
}
local opts = {
relative = 'cursor',
col = 2,

View File

@ -0,0 +1,19 @@
local M = {}
local type_check = require("Trans.util.debug").type_check
local offline_dir = debug.getinfo(1, "S").source:sub(2):match('.*Trans') .. '/component/offline'
M.to_content = function(query_res)
type_check {
query_res = { query_res, 'table' }
}
local content = {}
for file in vim.fs.dir(offline_dir) do
local res = require("Trans.component.offline." .. file:gsub('.lua', '')).to_content(query_res)
assert(res)
table.insert(content, res)
end
return content
end
return M

View File

@ -1,4 +1,3 @@
---@diagnostic disable: unused-local
local M = {}
local api = vim.api
local conf = require("Trans").conf
@ -21,31 +20,7 @@ local highlight = {
}
local function get_select()
local s_start = vim.fn.getpos("'<")
local s_end = vim.fn.getpos("'>")
if s_start[2] ~= s_start[2] then
error('TODO: multiline translate')
end
local lin = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)[1]
local word = string.sub(lin, s_start[3], s_end[3])
return word
end
local function get_query_res(method)
-- NOTE : get query word
local word = ''
if method == 'cursor' then
word = vim.fn.expand('<cword>')
elseif method == 'select' then
word = get_select():match('%s+')
elseif method == 'input' then
word = vim.fn.input('请输入您要查询的单词:') -- TODO Use Telescope with fuzzy finder
else
error('unknown method')
end
-- FIXME
end
M.TransLate = function(opts)
local res = get_query_res(opts.method)

37
lua/Trans/core/query.lua Normal file
View File

@ -0,0 +1,37 @@
local M = {}
local type_check = require("Trans.util.debug").type_check
local query = require("Trans.database").query
local function get_select()
local s_start = vim.fn.getpos("'<")
local s_end = vim.fn.getpos("'>")
if s_start[2] ~= s_start[2] then
error('TODO: multiline translate')
end
local lin = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)[1]
local word = string.sub(lin, s_start[3], s_end[3])
return word
end
M.get_query_res = function(method)
type_check {
method = { method, 'string' },
}
-- NOTE : get query word
local word = ''
if method == 'cursor' then
word = vim.fn.expand('<cword>')
elseif method == 'select' then
word = get_select():match('%s+')
elseif method == 'input' then
word = vim.fn.input('请输入您要查询的单词:') -- TODO Use Telescope with fuzzy finder
else
error('unknown method')
end
-- FIXME
return query(word)
end
return M

View File

@ -3,25 +3,44 @@ local _, db = pcall(require, 'sqlite.db')
if not _ then
error('Please check out sqlite.lua')
end
local type_check = require("Trans.util.debug").type_check
local query_field = {
'word',
'phonetic',
'definition',
'translation',
'pos',
'collins',
'oxford',
'tag',
'exchange',
}
-- INFO : init database
local path = require("Trans").conf.db_path
local path = require("Trans.conf").base.db_path
local dict = db:open(path)
-- INFO :Auto Close
vim.api.nvim_create_autocmd('VimLeavePre', {
group = require("Trans.conf.base").autogroup,
callback = function ()
callback = function()
if db:isopen() then
db:close()
end
end
})
M.query = function (arg)
M.query = function(arg)
-- TODO : more opts
type_check {
arg = { arg, 'string' },
}
local res = dict:select('stardict', {
where = { word = arg },
where = {
word = arg,
},
keys = query_field,
})
return res[1]
end

View File

@ -7,7 +7,7 @@ function M.setup(conf)
if conf.base and not conf.base.lazy_load then
require("Trans.conf.loader").load_conf()
end
require("Trans.setup")
-- require("Trans.setup")
end
return M

19
lua/Trans/util/parser.lua Normal file
View File

@ -0,0 +1,19 @@
---@diagnostic disable: missing-return, unused-local
local M = {}
local type_check = require("Trans.util.debug").type_check
---解析宽度
---@param width integer
---@return integer
M.width = function (width)
-- TODO
end
---解析宽度
---@param height integer
---@return integer
M.height = function (height)
-- TODO
end
return M