Trans.nvim/lua/Trans/init.lua

209 lines
5.8 KiB
Lua
Raw Normal View History

2023-02-04 15:03:02 +08:00
local M = {}
local api, fn = vim.api, vim.fn
local win_title = fn.has('nvim-0.9') == 1 and {
2023-03-07 21:52:29 +08:00
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil
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',
title = win_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',
title = win_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-14 01:57:12 +08:00
db_path = '$HOME/.vim/dict/ultimate.db',
}
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-03-08 11:53:41 +08:00
local conf = M.conf
2023-01-25 11:04:18 +08:00
2023-03-07 21:52:29 +08:00
local set_hl = api.nvim_set_hl
2023-03-08 11:53:41 +08:00
local hls = require('Trans.style.theme')[conf.theme]
2023-03-07 21:52:29 +08:00
for hl, opt in pairs(hls) do
set_hl(0, hl, opt)
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 _start = fn.getpos("v")
local _end = fn.getpos('.')
if _start[2] > _end[2] or (_start[3] > _end[3] and _start[2] == _end[2]) then
_start, _end = _end, _start
end
2023-02-04 15:03:02 +08:00
local s_row, s_col = _start[2], _start[3]
local e_row, e_col = _end[2], _end[3]
-- print(s_row, e_row, s_col, e_col)
---@type string
---@diagnostic disable-next-line: assign-type-mismatch
local line = fn.getline(e_row)
local uidx = vim.str_utfindex(line, math.min(#line, e_col))
e_col = vim.str_byteindex(line, uidx)
2023-03-08 11:53:41 +08:00
if s_row == e_row then
return line:sub(s_col, e_col)
else
local lines = fn.getline(s_row, e_row)
2023-03-08 11:53:41 +08:00
local e = #lines
lines[1] = lines[1]:sub(s_col)
2023-03-08 11:53:41 +08:00
lines[e] = line:sub(1, e_col)
return table.concat(lines)
end
end
2023-03-08 11:53:41 +08:00
M.get_str = function(mode)
local word
if mode == 'n' then
word = fn.expand('<cword>')
elseif mode == 'v' then
api.nvim_input('<ESC>')
word = get_select()
elseif mode == 'i' then
-- TODO Use Telescope with fuzzy finder
2023-02-04 15:03:02 +08:00
---@diagnostic disable-next-line: param-type-mismatch
word = fn.input('请输入需要查询的单词:')
else
error('invalid mode: ' .. mode)
end
return word
end
local process
process = function(opts)
2023-03-08 11:53:41 +08:00
opts = opts or {}
local mode = opts.mode or vim.api.nvim_get_mode().mode
local str = M.get_str(mode)
if str == '' then return end
local view = opts.view or M.conf.view[mode]
2023-03-08 11:53:41 +08:00
local res = require('Trans.backend').offline.query(str)
vim.pretty_print(res)
M.translate = coroutine.wrap(process)
end
M.translate = coroutine.wrap(process)
---Pasue Handler for {ms} milliseconds
---@param ms number @milliseconds
M.pause = function(ms)
local co = coroutine.running()
vim.defer_fn(function()
coroutine.resume(co)
end, ms)
coroutine.yield()
end
2023-03-08 11:53:41 +08:00
-- 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')
2022-12-17 16:07:27 +08:00
return M