Trans.nvim/lua/Trans/backend/offline.lua

62 lines
1.1 KiB
Lua
Raw Normal View History

2023-03-08 11:53:41 +08:00
local M = {}
2023-03-08 11:53:41 +08:00
local db = require 'sqlite.db'
vim.api.nvim_create_autocmd('VimLeavePre', {
once = true,
callback = function()
if db:isopen() then
db:close()
end
end
})
2023-03-08 11:53:41 +08:00
M.query = function(opts)
opts = type(opts) == 'string' and { str = opts } or opts
if opts.is_word == false then return end
2023-03-08 11:53:41 +08:00
local str = opts.str
local path = opts.path or require('Trans').conf.db_path
local formatter = opts.formatter or M.formatter
local field = M.field or M.field
local dict = db:open(path)
local db_name = opts.db_name or 'stardict'
local res = dict:select(db_name, {
where = { word = str, },
keys = field,
limit = 1,
})[1]
return res and formatter(res) or nil
end
M.nowait = true
M.field = {
'word',
'phonetic',
'definition',
'translation',
'pos',
'collins',
'oxford',
'tag',
'exchange',
}
M.formatter = function(res)
res.title = {
word = res.word,
oxford = res.oxford,
collins = res.collins,
phonetic = res.phonetic,
}
return res
end
2023-03-08 11:53:41 +08:00
return M