refactor: add warning message

This commit is contained in:
JuanZoran 2023-04-07 19:54:42 +08:00
parent 4d547a0397
commit 6a9d887db7

View File

@ -1,11 +1,11 @@
local M = {} local M = {}
local api, fn = vim.api, vim.fn local api, fn = vim.api, vim.fn
if fn.executable('sqlite3') ~= 1 then if fn.executable 'sqlite3' ~= 1 then
error('Please check out sqlite3') error 'Please check out sqlite3'
end end
local win_title = fn.has('nvim-0.9') == 1 and { local win_title = fn.has 'nvim-0.9' == 1 and {
{ '', 'TransTitleRound' }, { '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' }, { ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' }, { '', 'TransTitleRound' },
@ -31,19 +31,20 @@ string.isEn = function(self)
return true return true
end end
string.play = fn.has('linux') == 1 and function(self) string.play = fn.has 'linux' == 1 and function(self)
local cmd = ([[echo "%s" | festival --tts]]):format(self) local cmd = ([[echo "%s" | festival --tts]]):format(self)
fn.jobstart(cmd) fn.jobstart(cmd)
end or fn.has('mac') == 1 and function(self) end or fn.has 'mac' == 1 and function(self)
local cmd = ([[say "%s"]]):format(self) local cmd = ([[say "%s"]]):format(self)
fn.jobstart(cmd) fn.jobstart(cmd)
end or function(self) end or function(self)
local seperator = fn.has('unix') and '/' or '\\' local seperator = fn.has 'unix' and '/' or '\\'
local file = debug.getinfo(1, "S").source:sub(2):match('(.*)lua') .. seperator .. 'tts' .. seperator .. 'say.js' local file = debug.getinfo(1, 'S').source:sub(2):match '(.*)lua' .. seperator .. 'tts' .. seperator .. 'say.js'
fn.jobstart('node ' .. file .. ' ' .. self) fn.jobstart('node ' .. file .. ' ' .. self)
end end
M.conf = { M.conf = {
warning = true,
view = { view = {
i = 'float', i = 'float',
n = 'hover', n = 'hover',
@ -160,15 +161,24 @@ M.setup = function(opts)
conf.engines = engines conf.engines = engines
local set_hl = api.nvim_set_hl local set_hl = api.nvim_set_hl
local hls = require('Trans.ui.theme')[conf.theme] local hls = require 'Trans.ui.theme'[conf.theme]
for hl, opt in pairs(hls) do for hl, opt in pairs(hls) do
set_hl(0, hl, opt) set_hl(0, hl, opt)
end end
if M.conf.warning then
vim.notify([[
v2已经发布, :
https://github.com/JuanZoran/Trans.nvim
,
]], vim.log.levels.WARN)
end
end end
local function get_select() local function get_select()
local _start = fn.getpos("v") local _start = fn.getpos 'v'
local _end = fn.getpos('.') local _end = fn.getpos '.'
if _start[2] > _end[2] or (_start[3] > _end[3] and _start[2] == _end[2]) then if _start[2] > _end[2] or (_start[3] > _end[3] and _start[2] == _end[2]) then
_start, _end = _end, _start _start, _end = _end, _start
@ -197,14 +207,14 @@ end
M.get_word = function(mode) M.get_word = function(mode)
local word local word
if mode == 'n' then if mode == 'n' then
word = fn.expand('<cword>') word = fn.expand '<cword>'
elseif mode == 'v' then elseif mode == 'v' then
api.nvim_input('<ESC>') api.nvim_input '<ESC>'
word = get_select() word = get_select()
elseif mode == 'i' then elseif mode == 'i' then
-- TODO Use Telescope with fuzzy finder -- TODO Use Telescope with fuzzy finder
---@diagnostic disable-next-line: param-type-mismatch ---@diagnostic disable-next-line: param-type-mismatch
word = fn.input('请输入需要查询的单词:') word = fn.input '请输入需要查询的单词:'
else else
error('invalid mode: ' .. mode) error('invalid mode: ' .. mode)
end end
@ -213,9 +223,17 @@ end
M.translate = function(mode, view) M.translate = function(mode, view)
if M.conf.warning then
vim.notify([[
, :
https://github.com/JuanZoran/Trans.nvim
,
]], vim.log.levels.WARN)
end
vim.validate { vim.validate {
mode = { mode, 's', true }, mode = { mode, 's', true },
view = { view, 's', true } view = { view, 's', true },
} }
mode = mode or api.nvim_get_mode().mode mode = mode or api.nvim_get_mode().mode
@ -229,6 +247,6 @@ M.translate = function(mode, view)
end end
end end
M.ns = api.nvim_create_namespace('Trans') M.ns = api.nvim_create_namespace 'Trans'
return M return M