refactor: remove useless code

This commit is contained in:
JuanZoran 2023-03-08 11:53:41 +08:00
parent 831108a316
commit 8f6b1d4069
7 changed files with 122 additions and 117 deletions

View File

@ -4,9 +4,7 @@ local appPasswd = baidu.appPasswd
local salt = tostring(math.random(bit.lshift(1, 15)))
local uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate'
if appid == '' or appPasswd == '' then
error('请查看README, 实现在线翻译或者设置将在线翻译设置为false')
end
-- error('请查看README, 实现在线翻译或者设置将在线翻译设置为false')
local post = require('Trans.util.curl').POST

View File

@ -1,13 +1,10 @@
local M = {}
M.__index = function(tbl, k)
local res, engine = pcall(require, 'Trans.backend.' .. k)
assert(res, [[Can't Found Engine:]] .. k)
tbl[k] = engine
M.__index = function(t, k)
local res, engine = pcall(require, [[Trans.backend.]] .. k)
assert(res, [[No such Backend: ]] .. k)
t[k] = engine
return engine
end
return setmetatable(M, M)

View File

@ -1,12 +1,6 @@
local _, db = pcall(require, 'sqlite.db')
if not _ then
error('Please check out sqlite.lua')
end
-- INFO : init database
local path = require('Trans').conf.db_path
local dict = db:open(path)
local M = {}
local db = require 'sqlite.db'
vim.api.nvim_create_autocmd('VimLeavePre', {
once = true,
callback = function()
@ -16,11 +10,31 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
end
})
M.query = function(opts)
opts = type(opts) == 'string' and { str = opts } or opts
if opts.is_word == false then return end
return function(word)
local res = (dict:select('stardict', {
where = { word = word, },
keys = {
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',
@ -30,18 +44,18 @@ return function(word)
'oxford',
'tag',
'exchange',
},
limit = 1,
}))[1]
}
if res then
M.formatter = function(res)
res.title = {
word = res.word,
oxford = res.oxford,
collins = res.collins,
phonetic = res.phonetic,
}
end
return res
end
return M

View File

@ -0,0 +1,16 @@
local M = {}
M.is_English = function(str)
local char = { str:byte(1, -1) }
for i = 1, #str do
if char[i] > 128 then
return false
end
end
return true
end
return M

View File

@ -315,7 +315,7 @@ local function online_query(win, word)
end
local cell = icon.cell
local timeout = hover.timeout
local spinner = require('Trans.ui.spinner')[hover.spinner]
local spinner = require('Trans.style.spinner')[hover.spinner]
local range = #spinner
local interval = math.floor(timeout / (win.width - spinner[1]:width()))
local win_width = win.width

View File

@ -1,46 +1,12 @@
local M = {}
local api, fn = vim.api, vim.fn
if fn.executable('sqlite3') ~= 1 then
error('Please check out sqlite3')
end
local win_title = fn.has('nvim-0.9') == 1 and {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil
-- local title = {
-- "████████╗██████╗ █████╗ ███╗ ██╗███████╗",
-- "╚══██╔══╝██╔══██╗██╔══██╗████╗ ██║██╔════╝",
-- " ██║ ██████╔╝███████║██╔██╗ ██║███████╗",
-- " ██║ ██╔══██╗██╔══██║██║╚██╗██║╚════██║",
-- " ██║ ██║ ██║██║ ██║██║ ╚████║███████║",
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
--}
string.width = api.nvim_strwidth
string.isEn = function(self)
local char = { self:byte(1, -1) }
for i = 1, #self do
if char[i] > 128 then
return false
end
end
return true
end
string.play = fn.has('linux') == 1 and function(self)
local cmd = ([[echo "%s" | festival --tts]]):format(self)
fn.jobstart(cmd)
end or function(self)
local seperator = fn.has('unix') and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
fn.jobstart('node ' .. file .. ' ' .. self)
end
M.conf = {
view = {
i = 'float',
@ -127,25 +93,8 @@ M.setup = function(opts)
end
local conf = M.conf
local float = conf.float
if 0 < float.height and float.height <= 1 then
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
end
if 0 < float.width and float.width <= 1 then
float.width = math.floor(vim.o.columns * float.width)
end
local engines = {}
local i = 1
for k, _ in pairs(conf.engine) do
engines[i] = k
i = i + 1
end
conf.engines = engines
local set_hl = api.nvim_set_hl
local hls = require('Trans.ui.theme')[conf.theme]
local hls = require('Trans.style.theme')[conf.theme]
for hl, opt in pairs(hls) do
set_hl(0, hl, opt)
end
@ -168,18 +117,19 @@ local function get_select()
local uidx = vim.str_utfindex(line, math.min(#line, e_col))
e_col = vim.str_byteindex(line, uidx)
if s_row == e_row then
return line:sub(s_col, e_col)
else
local lines = fn.getline(s_row, e_row)
local i = #lines
local e = #lines
lines[1] = lines[1]:sub(s_col)
lines[i] = line:sub(1, e_col)
lines[e] = line:sub(1, e_col)
return table.concat(lines)
end
end
M.get_word = function(mode)
M.get_str = function(mode)
local word
if mode == 'n' then
word = fn.expand('<cword>')
@ -197,18 +147,47 @@ M.get_word = function(mode)
end
M.translate = function(mode, view)
local function demo()
local frame = 1000
for i = 1, 10 do
print('now is ' .. i)
vim.wait(frame)
end
end
M.translate = function(opts)
opts = opts or {}
local mode = opts.mode or vim.api.nvim_get_mode().mode
local str = M.get_str(mode)
local view = opts.view or M.conf.view[mode]
vim.defer_fn(demo, 10)
if str == '' then return end
local res = require('Trans.backend').offline.query(str)
vim.pretty_print(res)
end
-- local title = {
-- "████████╗██████╗ █████╗ ███╗ ██╗███████╗",
-- "╚══██╔══╝██╔══██╗██╔══██╗████╗ ██║██╔════╝",
-- " ██║ ██████╔╝███████║██╔██╗ ██║███████╗",
-- " ██║ ██╔══██╗██╔══██║██║╚██╗██║╚════██║",
-- " ██║ ██║ ██║██║ ██║██║ ╚████║███████║",
-- " ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝",
--}
-- string.width = api.nvim_strwidth
-- string.isEn = function(self)
-- local char = { self:byte(1, -1) }
-- for i = 1, #self do
-- if char[i] > 128 then
-- return false
-- end
-- end
-- return true
-- end
-- string.play = fn.has('linux') == 1 and function(self)
-- local cmd = ([[echo "%s" | festival --tts]]):format(self)
-- fn.jobstart(cmd)
-- end or function(self)
-- local seperator = fn.has('unix') and '/' or '\\'
-- local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
-- fn.jobstart('node ' .. file .. ' ' .. self)
-- end
M.ns = api.nvim_create_namespace('Trans')
return M

View File

@ -4,10 +4,11 @@ local api = vim.api
local M = require('Trans')
local new_command = api.nvim_create_user_command
new_command('Translate', function() M.translate() end, { desc = ' 单词翻译', })
new_command('TranslateInput', function() M.translate('i') end, { desc = ' 搜索翻译', })
new_command('TransPlay', function()
local word = M.get_word(api.nvim_get_mode().mode)
if word ~= '' and word:isEn() then
word:play()
end
end, { desc = ' 自动发音' })
-- new_command('TranslateInput', function() M.translate { mode = 'i' } end, { desc = ' 搜索翻译', })
-- new_command('TransPlay', function()
-- local word = M.get_word(api.nvim_get_mode().mode)
-- if word ~= '' and word:isEn() then
-- word:play()
-- end
-- end, { desc = ' 自动发音' })