Trans.nvim/lua/Trans/api/query.lua

58 lines
1.1 KiB
Lua
Raw Normal View History

2023-01-05 16:24:50 +08:00
local M = {}
local _, db = pcall(require, 'sqlite.db')
if not _ then
error('Please check out sqlite.lua')
end
2023-01-05 16:24:50 +08:00
-- INFO : init database
2023-01-14 01:57:12 +08:00
local path = require('Trans').conf.db_path
2023-01-05 16:24:50 +08:00
local dict = db:open(path)
2023-01-14 01:57:12 +08:00
local routes = {
offline = function(word)
local res = dict:select('stardict', {
where = {
word = word,
},
keys = {
'word',
'phonetic',
'definition',
'translation',
'pos',
'collins',
'oxford',
'tag',
'exchange',
},
2023-01-14 01:57:12 +08:00
})
return res[1]
end,
}
-- INFO :Auto Close
vim.api.nvim_create_autocmd('VimLeavePre', {
group = require("Trans").augroup,
callback = function()
if db:isopen() then
db:close()
end
end
})
2023-01-09 18:57:20 +08:00
-- NOTE : local query
2023-01-14 01:57:12 +08:00
M.query = function(engine, word)
2023-01-05 16:24:50 +08:00
-- TODO : more opts
2023-01-14 01:57:12 +08:00
vim.validate {
word = { word, 's' },
engine = { word, 's' },
}
2023-01-14 01:57:12 +08:00
return routes[engine](word)
2023-01-05 16:24:50 +08:00
end
2023-01-09 18:57:20 +08:00
2023-01-05 16:24:50 +08:00
return M