Trans.nvim/lua/Trans/init.lua

247 lines
6.1 KiB
Lua
Raw Normal View History

2022-12-17 20:51:22 +08:00
local M = {}
2022-12-17 16:07:27 +08:00
local title = vim.fn.has('nvim-0.9') == 1 and {
2023-01-26 23:40:18 +08:00
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil
2023-01-26 22:40:23 +08:00
string.width = vim.fn.strwidth
string.isEn = function(self)
local char = { self:byte(1, -1) }
for i = 1, #self do
if char[i] > 127 then
return false
end
end
return true
end
string.play = vim.fn.has('linux') == 1 and function(self)
local cmd = ([[echo "%s" | festival --tts]]):format(self)
vim.fn.jobstart(cmd)
end or function(self)
local seperator = vim.fn.has('unix') and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js'
vim.fn.jobstart('node ' .. file .. ' ' .. self)
end
2023-01-14 01:57:12 +08:00
M.conf = {
view = {
i = 'float',
2023-01-14 01:57:12 +08:00
n = 'hover',
v = 'hover',
},
hover = {
width = 37,
height = 27,
border = 'rounded',
2023-01-26 22:40:23 +08:00
title = title,
keymap = {
pageup = '[[',
pagedown = ']]',
2023-01-21 14:02:38 +08:00
pin = '<leader>[',
close = '<leader>]',
toggle_entry = '<leader>;',
2023-01-21 21:13:51 +08:00
play = '_',
2023-01-14 01:57:12 +08:00
},
animation = {
2023-01-21 00:24:58 +08:00
-- open = 'fold',
-- close = 'fold',
open = 'slid',
close = 'slid',
interval = 12,
},
auto_close_events = {
'InsertEnter',
'CursorMoved',
'BufLeave',
},
2023-01-21 21:13:51 +08:00
auto_play = true,
2023-01-31 22:29:40 +08:00
timeout = 2000,
2023-01-31 11:45:45 +08:00
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
-- spinner = 'moon'
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
2023-01-26 23:40:18 +08:00
title = title,
keymap = {
quit = 'q',
},
animation = {
2023-01-21 00:24:58 +08:00
open = 'fold',
close = 'fold',
interval = 10,
2023-01-22 22:01:47 +08:00
},
tag = {
wait = '#519aba',
fail = '#e46876',
success = '#10b981',
},
2023-01-14 01:57:12 +08:00
},
2023-01-22 22:01:47 +08:00
order = { -- only work on hover mode
2023-01-14 01:57:12 +08:00
'title',
'tag',
'pos',
'exchange',
2023-01-14 10:29:01 +08:00
'translation',
'definition',
2023-01-14 01:57:12 +08:00
},
icon = {
2023-01-14 10:29:01 +08:00
star = '',
2023-01-21 21:13:51 +08:00
notfound = '',
2023-01-31 11:45:45 +08:00
yes = '',
no = '',
2023-01-31 23:17:03 +08:00
-- --- char: ■ | □ | ▇ | ▏ ▎ ▍ ▌ ▋ ▊ ▉ █
-- --- ◖■■■■■■■◗▫◻ ▆ ▆ ▇⃞ ▉⃞
2023-01-31 11:45:45 +08:00
cell = '',
2023-01-22 11:15:48 +08:00
-- star = '⭐',
-- notfound = '❔',
2023-01-21 21:13:51 +08:00
-- yes = '✔️',
-- no = '❌'
2023-01-14 01:57:12 +08:00
},
2023-01-25 11:04:18 +08:00
theme = 'default',
2023-01-25 11:18:30 +08:00
-- theme = 'dracula',
-- theme = 'tokyonight',
2023-01-14 01:57:12 +08:00
db_path = '$HOME/.vim/dict/ultimate.db',
engine = {
2023-01-30 20:09:57 +08:00
-- baidu = {
-- appid = '',
-- appPasswd = '',
-- },
-- -- youdao = {
-- appkey = '',
-- appPasswd = '',
-- },
},
-- TODO :
2023-01-25 11:18:30 +08:00
-- register word
2023-01-14 01:57:12 +08:00
-- history = {
-- -- TOOD
-- }
2023-01-25 11:18:30 +08:00
-- TODO :add online translate engine
2023-01-14 01:57:12 +08:00
}
2023-01-31 11:45:45 +08:00
local times = 0
2023-01-09 23:20:56 +08:00
M.setup = function(opts)
2023-01-14 01:57:12 +08:00
if opts then
M.conf = vim.tbl_deep_extend('force', M.conf, opts)
end
2023-01-31 23:17:03 +08:00
local conf = M.conf
2023-01-26 23:40:18 +08:00
2023-01-31 23:17:03 +08:00
local float = conf.float
if 0 < float.height and float.height <= 1 then
2023-01-26 23:40:18 +08:00
float.height = math.floor((vim.o.lines - vim.o.cmdheight - 1) * float.height)
end
if 0 < float.width and float.width <= 1 then
2023-01-26 23:40:18 +08:00
float.width = math.floor(vim.o.columns * float.width)
end
2023-01-31 23:17:03 +08:00
local engines = {}
for k, _ in pairs(conf.engine) do
table.insert(engines, k)
end
conf.engines = engines
2023-01-31 11:45:45 +08:00
times = times + 1
if times == 1 then
local api = vim.api
local get_mode = api.nvim_get_mode
local set_hl = api.nvim_set_hl
local new_command = api.nvim_create_user_command
2023-01-25 11:04:18 +08:00
2023-01-31 11:45:45 +08:00
if vim.fn.executable('sqlite3') ~= 1 then
error('Please check out sqlite3')
end
2023-01-25 11:04:18 +08:00
new_command('Translate', function()
2023-01-31 11:45:45 +08:00
M.translate()
end, { desc = ' 单词翻译', })
2023-01-25 11:04:18 +08:00
new_command('TranslateInput', function()
2023-01-31 11:45:45 +08:00
M.translate('i')
end, { desc = ' 搜索翻译' })
2023-01-25 11:04:18 +08:00
new_command('TransPlay', function()
local word = M.get_word(get_mode().mode)
if word ~= '' and word:isEn() then
word:play()
end
end, { desc = ' 自动发音' })
2023-01-25 11:04:18 +08:00
2023-01-31 23:17:03 +08:00
local hls = require('Trans.ui.theme')[conf.theme]
2023-01-31 11:45:45 +08:00
for hl, opt in pairs(hls) do
set_hl(0, hl, opt)
2023-01-31 11:45:45 +08:00
end
2023-01-25 11:04:18 +08:00
end
2023-01-09 23:20:56 +08:00
end
2022-12-17 20:51:22 +08:00
local function get_select()
local s_start = vim.fn.getpos("v")
local s_end = vim.fn.getpos(".")
if s_start[2] > s_end[2] or s_start[3] > s_end[3] then
s_start, s_end = s_end, s_start
end
local n_lines = math.abs(s_end[2] - s_start[2]) + 1
local lines = vim.api.nvim_buf_get_lines(0, s_start[2] - 1, s_end[2], false)
lines[1] = string.sub(lines[1], s_start[3], -1)
if n_lines == 1 then
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3] - s_start[3] + 1)
else
lines[n_lines] = string.sub(lines[n_lines], 1, s_end[3])
end
return table.concat(lines, '')
end
M.get_word = function(mode)
local word
if mode == 'n' then
word = vim.fn.expand('<cword>')
elseif mode == 'v' then
vim.api.nvim_input('<ESC>')
word = get_select()
elseif mode == 'i' then
-- TODO Use Telescope with fuzzy finder
vim.ui.input({ prompt = '请输入需要查询的单词: ' }, function(input)
word = input
end)
else
error('invalid mode: ' .. mode)
end
return word
end
M.translate = function(mode, view)
vim.validate {
mode = { mode, 's', true },
view = { view, 's', true }
}
mode = mode or vim.api.nvim_get_mode().mode
view = view or M.conf.view[mode]
assert(mode and view)
local word = M.get_word(mode)
if word == nil or word == '' then
return
else
require('Trans.view.' .. view)(word:gsub('^%s+', '', 1))
end
end
2023-01-14 01:57:12 +08:00
M.augroup = vim.api.nvim_create_augroup('Trans', { clear = true })
2023-01-09 18:57:20 +08:00
2022-12-17 16:07:27 +08:00
return M