style: code format use lua_ls
This commit is contained in:
parent
9f5a81249c
commit
82fa2a008a
@ -5,14 +5,14 @@
|
|||||||
---@field app_passwd string
|
---@field app_passwd string
|
||||||
---@field disable boolean
|
---@field disable boolean
|
||||||
local M = {
|
local M = {
|
||||||
uri = "https://fanyi-api.baidu.com/api/trans/vip/translate",
|
uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate',
|
||||||
salt = tostring(math.random(bit.lshift(1, 15))),
|
salt = tostring(math.random(bit.lshift(1, 15))),
|
||||||
name = "baidu",
|
name = 'baidu',
|
||||||
method = 'get',
|
method = 'get',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
local Trans = require("Trans")
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
---@class BaiduQuery
|
---@class BaiduQuery
|
||||||
---@field q string
|
---@field q string
|
||||||
@ -52,7 +52,7 @@ function M.formatter(body, data)
|
|||||||
result = result[1]
|
result = result[1]
|
||||||
return {
|
return {
|
||||||
str = result.src,
|
str = result.src,
|
||||||
[data.from == "en" and "translation" or "definition"] = { result.dst },
|
[data.from == 'en' and 'translation' or 'definition'] = { result.dst },
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -20,9 +20,8 @@ function M.get_query(data)
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
function M.formatter(body, data)
|
function M.formatter(body, data)
|
||||||
print('TODO')
|
print 'TODO'
|
||||||
-- if true and not status or not body or body.errorCode ~= "0" then
|
-- if true and not status or not body or body.errorCode ~= "0" then
|
||||||
-- data.result.iciba = false
|
-- data.result.iciba = false
|
||||||
-- data[#data + 1] = res
|
-- data[#data + 1] = res
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
local Trans = require("Trans")
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
local db = require("sqlite.db")
|
local db = require 'sqlite.db'
|
||||||
local path = Trans.conf.dir .. Trans.separator .. "ultimate.db"
|
local path = Trans.conf.dir .. Trans.separator .. 'ultimate.db'
|
||||||
local dict = db:open(path)
|
local dict = db:open(path)
|
||||||
local db_name = "stardict"
|
local db_name = 'stardict'
|
||||||
vim.api.nvim_create_autocmd("VimLeavePre", {
|
vim.api.nvim_create_autocmd('VimLeavePre', {
|
||||||
callback = function()
|
callback = function()
|
||||||
if db:isopen() then db:close() end
|
if db:isopen() then db:close() end
|
||||||
end,
|
end,
|
||||||
@ -12,7 +12,7 @@ vim.api.nvim_create_autocmd("VimLeavePre", {
|
|||||||
|
|
||||||
---@class TransOfflineBackend
|
---@class TransOfflineBackend
|
||||||
local M = {
|
local M = {
|
||||||
name = "offline",
|
name = 'offline',
|
||||||
no_wait = true,
|
no_wait = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -20,7 +20,7 @@ local M = {
|
|||||||
---@return any
|
---@return any
|
||||||
---@overload fun(TransData): TransResult
|
---@overload fun(TransData): TransResult
|
||||||
function M.query(data)
|
function M.query(data)
|
||||||
if data.is_word == false or data.from == "zh" then
|
if data.is_word == false or data.from == 'zh' then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -35,19 +35,19 @@ end
|
|||||||
|
|
||||||
-- this is a awesome plugin
|
-- this is a awesome plugin
|
||||||
M.query_field = {
|
M.query_field = {
|
||||||
"word",
|
'word',
|
||||||
"phonetic",
|
'phonetic',
|
||||||
"definition",
|
'definition',
|
||||||
"translation",
|
'translation',
|
||||||
"pos",
|
'pos',
|
||||||
"collins",
|
'collins',
|
||||||
"oxford",
|
'oxford',
|
||||||
"tag",
|
'tag',
|
||||||
"exchange",
|
'exchange',
|
||||||
}
|
}
|
||||||
|
|
||||||
local function exist(str)
|
local function exist(str)
|
||||||
return str and str ~= ""
|
return str and str ~= ''
|
||||||
end
|
end
|
||||||
|
|
||||||
---@type (fun(res):any)[]
|
---@type (fun(res):any)[]
|
||||||
@ -71,18 +71,18 @@ local formatter = {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local tag_map = {
|
local tag_map = {
|
||||||
zk = "中考",
|
zk = '中考',
|
||||||
gk = "高考",
|
gk = '高考',
|
||||||
ky = "考研",
|
ky = '考研',
|
||||||
gre = "gre ",
|
gre = 'gre ',
|
||||||
cet4 = "四级",
|
cet4 = '四级',
|
||||||
cet6 = "六级",
|
cet6 = '六级',
|
||||||
ielts = "雅思",
|
ielts = '雅思',
|
||||||
toefl = "托福",
|
toefl = '托福',
|
||||||
}
|
}
|
||||||
|
|
||||||
local tag = {}
|
local tag = {}
|
||||||
for i, _tag in ipairs(vim.split(res.tag, " ", { plain = true })) do
|
for i, _tag in ipairs(vim.split(res.tag, ' ', { plain = true })) do
|
||||||
tag[i] = tag_map[_tag]
|
tag[i] = tag_map[_tag]
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -93,20 +93,20 @@ local formatter = {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local exchange_map = {
|
local exchange_map = {
|
||||||
["0"] = "原型 ",
|
['0'] = '原型 ',
|
||||||
["1"] = "类别 ",
|
['1'] = '类别 ',
|
||||||
["p"] = "过去式 ",
|
['p'] = '过去式 ',
|
||||||
["r"] = "比较级 ",
|
['r'] = '比较级 ',
|
||||||
["t"] = "最高级 ",
|
['t'] = '最高级 ',
|
||||||
["s"] = "复数 ",
|
['s'] = '复数 ',
|
||||||
["d"] = "过去分词 ",
|
['d'] = '过去分词 ',
|
||||||
["i"] = "现在分词 ",
|
['i'] = '现在分词 ',
|
||||||
["3"] = "第三人称单数",
|
['3'] = '第三人称单数',
|
||||||
["f"] = "第三人称单数",
|
['f'] = '第三人称单数',
|
||||||
}
|
}
|
||||||
|
|
||||||
local exchange = {}
|
local exchange = {}
|
||||||
for _, _exchange in ipairs(vim.split(res.exchange, "/", { plain = true })) do
|
for _, _exchange in ipairs(vim.split(res.exchange, '/', { plain = true })) do
|
||||||
exchange[exchange_map[_exchange:sub(1, 1)]] = _exchange:sub(3)
|
exchange[exchange_map[_exchange:sub(1, 1)]] = _exchange:sub(3)
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -117,24 +117,24 @@ local formatter = {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local pos_map = {
|
local pos_map = {
|
||||||
a = "代词pron ",
|
a = '代词pron ',
|
||||||
c = "连接词conj ",
|
c = '连接词conj ',
|
||||||
i = "介词prep ",
|
i = '介词prep ',
|
||||||
j = "形容词adj ",
|
j = '形容词adj ',
|
||||||
m = "数词num ",
|
m = '数词num ',
|
||||||
n = "名词n ",
|
n = '名词n ',
|
||||||
p = "代词pron ",
|
p = '代词pron ',
|
||||||
r = "副词adv ",
|
r = '副词adv ',
|
||||||
u = "感叹词int ",
|
u = '感叹词int ',
|
||||||
v = "动词v ",
|
v = '动词v ',
|
||||||
x = "否定标记not ",
|
x = '否定标记not ',
|
||||||
t = "不定式标记infm ",
|
t = '不定式标记infm ',
|
||||||
d = "限定词determiner ",
|
d = '限定词determiner ',
|
||||||
}
|
}
|
||||||
|
|
||||||
local pos = {}
|
local pos = {}
|
||||||
for _, _pos in ipairs(vim.split(res.pos, "/", { plain = true })) do
|
for _, _pos in ipairs(vim.split(res.pos, '/', { plain = true })) do
|
||||||
pos[pos_map[_pos:sub(1, 1)]] = ("%2s%%"):format(_pos:sub(3))
|
pos[pos_map[_pos:sub(1, 1)]] = ('%2s%%'):format(_pos:sub(3))
|
||||||
end
|
end
|
||||||
|
|
||||||
return pos
|
return pos
|
||||||
@ -144,7 +144,7 @@ local formatter = {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local translation = {}
|
local translation = {}
|
||||||
for i, _translation in ipairs(vim.split(res.translation, "\n", { plain = true })) do
|
for i, _translation in ipairs(vim.split(res.translation, '\n', { plain = true })) do
|
||||||
translation[i] = _translation
|
translation[i] = _translation
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -155,9 +155,9 @@ local formatter = {
|
|||||||
return
|
return
|
||||||
end
|
end
|
||||||
local definition = {}
|
local definition = {}
|
||||||
for i, _definition in ipairs(vim.split(res.definition, "\n", { plain = true })) do
|
for i, _definition in ipairs(vim.split(res.definition, '\n', { plain = true })) do
|
||||||
-- -- TODO :判断是否需要分割空格
|
-- -- TODO :判断是否需要分割空格
|
||||||
definition[i] = _definition:gsub("^%s+", "", 1)
|
definition[i] = _definition:gsub('^%s+', '', 1)
|
||||||
end
|
end
|
||||||
|
|
||||||
return definition
|
return definition
|
||||||
|
@ -55,31 +55,31 @@ end
|
|||||||
|
|
||||||
local function check_untracked_field(body)
|
local function check_untracked_field(body)
|
||||||
local field = {
|
local field = {
|
||||||
"phonetic",
|
'phonetic',
|
||||||
'usPhonetic',
|
'usPhonetic',
|
||||||
"ukPhonetic",
|
'ukPhonetic',
|
||||||
"text", -- text 短语
|
'text', -- text 短语
|
||||||
"explain", -- String Array 词义解释列表
|
'explain', -- String Array 词义解释列表
|
||||||
"wordFormats", -- Object Array 单词形式变化列表
|
'wordFormats', -- Object Array 单词形式变化列表
|
||||||
"name", -- String 形式名称,例如:复数
|
'name', -- String 形式名称,例如:复数
|
||||||
"phrase", -- String 词组
|
'phrase', -- String 词组
|
||||||
"meaning", -- String 含义
|
'meaning', -- String 含义
|
||||||
"synonyms", -- JSONObject 近义词
|
'synonyms', -- JSONObject 近义词
|
||||||
"pos", -- String 词性
|
'pos', -- String 词性
|
||||||
"words", -- String Array 近义词列表
|
'words', -- String Array 近义词列表
|
||||||
"trans", -- String 释义
|
'trans', -- String 释义
|
||||||
"antonyms", -- ObjectArray 反义词
|
'antonyms', -- ObjectArray 反义词
|
||||||
"relatedWords", -- JSONArray 相关词
|
'relatedWords', -- JSONArray 相关词
|
||||||
"wordNet", -- JSONObject 汉语词典网络释义
|
'wordNet', -- JSONObject 汉语词典网络释义
|
||||||
"phonetic", -- String 发音
|
'phonetic', -- String 发音
|
||||||
"meanings", -- ObjectArray 释义
|
'meanings', -- ObjectArray 释义
|
||||||
"meaning", -- String 释义
|
'meaning', -- String 释义
|
||||||
"example", -- array 示例
|
'example', -- array 示例
|
||||||
"sentenceSample", -- text 例句
|
'sentenceSample', -- text 例句
|
||||||
"sentence", -- text 例句
|
'sentence', -- text 例句
|
||||||
"sentenceBold", -- text 将查询内容加粗的例句
|
'sentenceBold', -- text 将查询内容加粗的例句
|
||||||
"wfs", -- text 单词形式变化
|
'wfs', -- text 单词形式变化
|
||||||
"exam_type", -- text 考试类型
|
'exam_type', -- text 考试类型
|
||||||
}
|
}
|
||||||
for _, f in ipairs(field) do
|
for _, f in ipairs(field) do
|
||||||
if body[f] then
|
if body[f] then
|
||||||
@ -96,33 +96,33 @@ function M.debug(body)
|
|||||||
vim.notify('Unknown errors, nil body', vim.log.levels.ERROR)
|
vim.notify('Unknown errors, nil body', vim.log.levels.ERROR)
|
||||||
end
|
end
|
||||||
local debug_msg = ({
|
local debug_msg = ({
|
||||||
[101] = "缺少必填的参数,首先确保必填参数齐全,然后确认参数书写是否正确。",
|
[101] = '缺少必填的参数,首先确保必填参数齐全,然后确认参数书写是否正确。',
|
||||||
[102] = "不支持的语言类型",
|
[102] = '不支持的语言类型',
|
||||||
[103] = "翻译文本过长",
|
[103] = '翻译文本过长',
|
||||||
[104] = "不支持的API类型",
|
[104] = '不支持的API类型',
|
||||||
[105] = "不支持的签名类型",
|
[105] = '不支持的签名类型',
|
||||||
[106] = "不支持的响应类型",
|
[106] = '不支持的响应类型',
|
||||||
[107] = "不支持的传输加密类型",
|
[107] = '不支持的传输加密类型',
|
||||||
[108] = "应用ID无效,注册账号,登录后台创建应用和实例并完成绑定,可获得应用ID和应用密钥等信息",
|
[108] = '应用ID无效,注册账号,登录后台创建应用和实例并完成绑定,可获得应用ID和应用密钥等信息',
|
||||||
[109] = "batchLog格式不正确",
|
[109] = 'batchLog格式不正确',
|
||||||
[110] = "无相关服务的有效实例,应用没有绑定服务实例,可以新建服务实例,绑定服务实例。注:某些服务的翻译结果发音需要tts实例,需要在控制台创建语音合成实例绑定应用后方能使用。",
|
[110] = '无相关服务的有效实例,应用没有绑定服务实例,可以新建服务实例,绑定服务实例。注:某些服务的翻译结果发音需要tts实例,需要在控制台创建语音合成实例绑定应用后方能使用。',
|
||||||
[111] = "开发者账号无效",
|
[111] = '开发者账号无效',
|
||||||
[113] = "q不能为空",
|
[113] = 'q不能为空',
|
||||||
[120] = "不是词,或未收录",
|
[120] = '不是词,或未收录',
|
||||||
[201] = "解密失败,可能为DES,BASE64,URLDecode的错误",
|
[201] = '解密失败,可能为DES,BASE64,URLDecode的错误',
|
||||||
[202] = "签名检验失败",
|
[202] = '签名检验失败',
|
||||||
[203] = "访问IP地址不在可访问IP列表",
|
[203] = '访问IP地址不在可访问IP列表',
|
||||||
[205] = "请求的接口与应用的平台类型不一致,确保接入方式(Android SDK、IOS SDK、API)与创建的应用平台类型一致。如有疑问请参考入门指南",
|
[205] = '请求的接口与应用的平台类型不一致,确保接入方式(Android SDK、IOS SDK、API)与创建的应用平台类型一致。如有疑问请参考入门指南',
|
||||||
[206] = "因为时间戳无效导致签名校验失败",
|
[206] = '因为时间戳无效导致签名校验失败',
|
||||||
[207] = "重放请求",
|
[207] = '重放请求',
|
||||||
[301] = "辞典查询失败",
|
[301] = '辞典查询失败',
|
||||||
[302] = "翻译查询失败",
|
[302] = '翻译查询失败',
|
||||||
[303] = "服务端的其它异常",
|
[303] = '服务端的其它异常',
|
||||||
[305] = "批量翻译部分成功",
|
[305] = '批量翻译部分成功',
|
||||||
[401] = "账户已经欠费,请进行账户充值",
|
[401] = '账户已经欠费,请进行账户充值',
|
||||||
[411] = "访问频率受限,请稍后访问",
|
[411] = '访问频率受限,请稍后访问',
|
||||||
[412] = "长请求过于频繁,请稍后访问",
|
[412] = '长请求过于频繁,请稍后访问',
|
||||||
[390001] = "词典名称不正确",
|
[390001] = '词典名称不正确',
|
||||||
})[tonumber(body.errorCode)]
|
})[tonumber(body.errorCode)]
|
||||||
|
|
||||||
vim.notify('Youdao API Error: ' .. (debug_msg or vim.inspect(body)), vim.log.levels.ERROR)
|
vim.notify('Youdao API Error: ' .. (debug_msg or vim.inspect(body)), vim.log.levels.ERROR)
|
||||||
@ -134,7 +134,7 @@ end
|
|||||||
---@param data TransData Data obj
|
---@param data TransData Data obj
|
||||||
---@return table|false?
|
---@return table|false?
|
||||||
function M.formatter(body, data)
|
function M.formatter(body, data)
|
||||||
if body.errorCode ~= "0" then return false end
|
if body.errorCode ~= '0' then return false end
|
||||||
check_untracked_field(body)
|
check_untracked_field(body)
|
||||||
|
|
||||||
if not body.isWord then
|
if not body.isWord then
|
||||||
@ -146,15 +146,14 @@ function M.formatter(body, data)
|
|||||||
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
title = {
|
title = {
|
||||||
word = body.query,
|
word = body.query,
|
||||||
phonetic = body.basic.phonetic,
|
phonetic = body.basic.phonetic,
|
||||||
},
|
},
|
||||||
web = body.web,
|
web = body.web,
|
||||||
explains = body.basic.explains,
|
explains = body.basic.explains,
|
||||||
[data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
[data.from == 'en' and 'translation' or 'definition'] = body.translation,
|
||||||
}
|
}
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---@class TransBackend
|
---@class TransBackend
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
|
|
||||||
---@class TransBackend
|
---@class TransBackend
|
||||||
@ -18,12 +18,12 @@ local Trans = require('Trans')
|
|||||||
local conf = Trans.conf
|
local conf = Trans.conf
|
||||||
--- INFO :Parse online engine keys config file
|
--- INFO :Parse online engine keys config file
|
||||||
local path = conf.dir .. '/Trans.json'
|
local path = conf.dir .. '/Trans.json'
|
||||||
local file = io.open(path, "r")
|
local file = io.open(path, 'r')
|
||||||
|
|
||||||
|
|
||||||
local user_conf = {}
|
local user_conf = {}
|
||||||
if file then
|
if file then
|
||||||
local content = file:read("*a")
|
local content = file:read '*a'
|
||||||
user_conf = vim.json.decode(content) or user_conf
|
user_conf = vim.json.decode(content) or user_conf
|
||||||
file:close()
|
file:close()
|
||||||
end
|
end
|
||||||
@ -56,5 +56,5 @@ return setmetatable({
|
|||||||
|
|
||||||
self[name] = backend
|
self[name] = backend
|
||||||
return backend
|
return backend
|
||||||
end
|
end,
|
||||||
})
|
})
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
---@class TransConf
|
---@class TransConf
|
||||||
return {
|
return {
|
||||||
---@type string the directory for database file and password file
|
---@type string the directory for database file and password file
|
||||||
dir = require('Trans').relative_path({ 'extra' }, true),
|
dir = require 'Trans'.relative_path({ 'extra' }, true),
|
||||||
debug = true,
|
debug = true,
|
||||||
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
---@type 'default' | 'dracula' | 'tokyonight' global Trans theme [see lua/Trans/style/theme.lua]
|
||||||
theme = 'default', -- default | tokyonight | dracula
|
theme = 'default', -- default | tokyonight | dracula
|
||||||
@ -23,7 +23,7 @@ return {
|
|||||||
default = {
|
default = {
|
||||||
query = 'fallback',
|
query = 'fallback',
|
||||||
border = 'rounded',
|
border = 'rounded',
|
||||||
title = vim.fn.has('nvim-0.9') == 1 and {
|
title = vim.fn.has 'nvim-0.9' == 1 and {
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
{ ' Trans', 'TransTitle' },
|
{ ' Trans', 'TransTitle' },
|
||||||
{ '', 'TransTitleRound' },
|
{ '', 'TransTitleRound' },
|
||||||
@ -49,7 +49,7 @@ return {
|
|||||||
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
fallback_message = '{{notfound}} 翻译超时或没有找到相关的翻译',
|
||||||
auto_resize = true,
|
auto_resize = true,
|
||||||
split_width = 60,
|
split_width = 60,
|
||||||
padding = 10, -- padding for hover window width
|
padding = 10, -- padding for hover window width
|
||||||
keymaps = {
|
keymaps = {
|
||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
@ -84,9 +84,8 @@ return {
|
|||||||
'translation',
|
'translation',
|
||||||
'definition',
|
'definition',
|
||||||
'web',
|
'web',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
---@type table<string, string>
|
|
||||||
icon = {
|
icon = {
|
||||||
-- or use emoji
|
-- or use emoji
|
||||||
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
list = '●', -- ● | ○ | ◉ | ◯ | ◇ | ◆ | ▪ | ▫ | ⬤ | 🟢 | 🟡 | 🟣 | 🟤 | 🟠| 🟦 | 🟨 | 🟧 | 🟥 | 🟪 | 🟫 | 🟩 | 🟦
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
|
|
||||||
---@class TransData
|
---@class TransData
|
||||||
@ -21,8 +21,8 @@ function M.new(opts)
|
|||||||
local mode = opts.mode
|
local mode = opts.mode
|
||||||
local str = opts.str
|
local str = opts.str
|
||||||
|
|
||||||
local strategy = Trans.conf.strategy[mode]
|
|
||||||
|
|
||||||
|
local strategy = Trans.conf.strategy[mode]
|
||||||
local data = setmetatable({
|
local data = setmetatable({
|
||||||
str = str,
|
str = str,
|
||||||
mode = mode,
|
mode = mode,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
local conf = Trans.conf
|
local conf = Trans.conf
|
||||||
local frontend_opts = conf.frontend
|
local frontend_opts = conf.frontend
|
||||||
|
|
||||||
@ -50,5 +50,5 @@ return setmetatable({}, {
|
|||||||
set_frontend_keymap(frontend)
|
set_frontend_keymap(frontend)
|
||||||
|
|
||||||
return frontend
|
return frontend
|
||||||
end
|
end,
|
||||||
})
|
})
|
||||||
|
@ -4,22 +4,22 @@ local function trans()
|
|||||||
|
|
||||||
-- TODO : trim empty lines in the beginning and the end
|
-- TODO : trim empty lines in the beginning and the end
|
||||||
for index, line in ipairs(lines) do
|
for index, line in ipairs(lines) do
|
||||||
if line:match('%S+') then
|
if line:match '%S+' then
|
||||||
table.insert(paragraphs, { index - 1, line })
|
table.insert(paragraphs, { index - 1, line })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
local baidu = Trans.backend.baidu
|
local baidu = Trans.backend.baidu
|
||||||
---@cast baidu Baidu
|
---@cast baidu Baidu
|
||||||
|
|
||||||
for _, line in ipairs(paragraphs) do
|
for _, line in ipairs(paragraphs) do
|
||||||
local query = baidu.get_query({
|
local query = baidu.get_query {
|
||||||
str = line[2],
|
str = line[2],
|
||||||
from = "en",
|
from = 'en',
|
||||||
to = "zh",
|
to = 'zh',
|
||||||
})
|
}
|
||||||
|
|
||||||
Trans.curl.get(baidu.uri, {
|
Trans.curl.get(baidu.uri, {
|
||||||
query = query,
|
query = query,
|
||||||
@ -27,9 +27,9 @@ local function trans()
|
|||||||
-- vim.print(output)
|
-- vim.print(output)
|
||||||
local body = output.body
|
local body = output.body
|
||||||
local status, ret = pcall(vim.json.decode, body)
|
local status, ret = pcall(vim.json.decode, body)
|
||||||
assert(status and ret, "Failed to parse json:" .. vim.inspect(body))
|
assert(status and ret, 'Failed to parse json:' .. vim.inspect(body))
|
||||||
local result = ret.trans_result
|
local result = ret.trans_result
|
||||||
assert(result, "Failed to get result: " .. vim.inspect(ret))
|
assert(result, 'Failed to get result: ' .. vim.inspect(ret))
|
||||||
|
|
||||||
|
|
||||||
result = result[1]
|
result = result[1]
|
||||||
@ -38,7 +38,7 @@ local function trans()
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
local ns = vim.api.nvim_create_namespace("Trans")
|
local ns = vim.api.nvim_create_namespace 'Trans'
|
||||||
for _, line in ipairs(paragraphs) do
|
for _, line in ipairs(paragraphs) do
|
||||||
local index = line[1]
|
local index = line[1]
|
||||||
local co = coroutine.running()
|
local co = coroutine.running()
|
||||||
@ -60,12 +60,12 @@ local function trans()
|
|||||||
Trans.util.main_loop(function()
|
Trans.util.main_loop(function()
|
||||||
vim.api.nvim_buf_set_extmark(0, ns, index, #line[2], {
|
vim.api.nvim_buf_set_extmark(0, ns, index, #line[2], {
|
||||||
virt_lines = {
|
virt_lines = {
|
||||||
{ { translation, "MoreMsg" } }
|
{ { translation, 'MoreMsg' } },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end)
|
end)
|
||||||
|
|
||||||
print('done')
|
print 'done'
|
||||||
end
|
end
|
||||||
-- TODO :双语翻译
|
-- TODO :双语翻译
|
||||||
end
|
end
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
---@class Trans
|
---@class Trans
|
||||||
---@field install fun() Download database and tts dependencies
|
---@field install fun() Download database and tts dependencies
|
||||||
return function()
|
return function()
|
||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
-- INFO :Check ultimate.db exists
|
-- INFO :Check ultimate.db exists
|
||||||
local dir = Trans.conf.dir
|
local dir = Trans.conf.dir
|
||||||
local path = dir .. 'ultimate.db'
|
local path = dir .. 'ultimate.db'
|
||||||
@ -26,7 +26,7 @@ return function()
|
|||||||
|
|
||||||
local handle = function(output)
|
local handle = function(output)
|
||||||
if output.exit == 0 and fn.filereadable(zip) then
|
if output.exit == 0 and fn.filereadable(zip) then
|
||||||
if fn.executable('unzip') == 0 then
|
if fn.executable 'unzip' == 0 then
|
||||||
vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR)
|
vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
@ -50,7 +50,7 @@ return function()
|
|||||||
})
|
})
|
||||||
|
|
||||||
-- INFO : Install tts dependencies
|
-- INFO : Install tts dependencies
|
||||||
if fn.has('linux') == 0 and fn.has('mac') == 0 then
|
if fn.has 'linux' == 0 and fn.has 'mac' == 0 then
|
||||||
os.execute('cd ./tts && npm install')
|
os.execute 'cd ./tts && npm install'
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
local function set_strategy_opts(conf)
|
local function set_strategy_opts(conf)
|
||||||
local all_backends = Trans.backend.all_name
|
local all_backends = Trans.backend.all_name
|
||||||
@ -21,7 +21,7 @@ local function set_strategy_opts(conf)
|
|||||||
setmetatable(conf.strategy, {
|
setmetatable(conf.strategy, {
|
||||||
__index = function()
|
__index = function()
|
||||||
return default_strategy
|
return default_strategy
|
||||||
end
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
for _, strategy in pairs(conf.strategy) do
|
for _, strategy in pairs(conf.strategy) do
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
local util = Trans.util
|
local util = Trans.util
|
||||||
|
|
||||||
local function init_opts(opts)
|
local function init_opts(opts)
|
||||||
@ -19,7 +19,7 @@ local function do_query(data, backend)
|
|||||||
local method = backend.method
|
local method = backend.method
|
||||||
local formatter = backend.formatter
|
local formatter = backend.formatter
|
||||||
local query = backend.get_query(data)
|
local query = backend.get_query(data)
|
||||||
local header = type(backend.header) == "function" and backend.header(data) or backend.header
|
local header = type(backend.header) == 'function' and backend.header(data) or backend.header
|
||||||
|
|
||||||
local function handle(output)
|
local function handle(output)
|
||||||
local status, body = pcall(vim.json.decode, output.body)
|
local status, body = pcall(vim.json.decode, output.body)
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
local fn, api = vim.fn, vim.api
|
local fn, api = vim.fn, vim.api
|
||||||
|
|
||||||
---@class TransUtil
|
---@class TransUtil
|
||||||
local M = require('Trans').metatable('util')
|
local M = require 'Trans'.metatable 'util'
|
||||||
|
|
||||||
|
|
||||||
---Get selected text
|
---Get selected text
|
||||||
---@return string
|
---@return string
|
||||||
function M.get_select()
|
function M.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
|
||||||
@ -42,19 +42,19 @@ end
|
|||||||
function M.get_str(mode)
|
function M.get_str(mode)
|
||||||
return ({
|
return ({
|
||||||
n = function()
|
n = function()
|
||||||
return fn.expand('<cword>')
|
return fn.expand '<cword>'
|
||||||
end,
|
end,
|
||||||
v = function()
|
v = function()
|
||||||
api.nvim_input('<Esc>')
|
api.nvim_input '<Esc>'
|
||||||
return M.get_select()
|
return M.get_select()
|
||||||
end,
|
end,
|
||||||
i = function()
|
i = function()
|
||||||
return fn.input('需要翻译的字符串: ')
|
return fn.input '需要翻译的字符串: '
|
||||||
end,
|
end,
|
||||||
V = function()
|
V = function()
|
||||||
print('TODO')
|
print 'TODO'
|
||||||
end
|
end,
|
||||||
})[mode]():match('^%s*(.-)%s*$')
|
})[mode]():match '^%s*(.-)%s*$'
|
||||||
end
|
end
|
||||||
|
|
||||||
---Puase coroutine for {ms} milliseconds
|
---Puase coroutine for {ms} milliseconds
|
||||||
@ -103,7 +103,6 @@ function M.display_width(lines)
|
|||||||
return width
|
return width
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---Center node utility function
|
---Center node utility function
|
||||||
---@param node string -- TODO :Node
|
---@param node string -- TODO :Node
|
||||||
---@param win_width integer window width
|
---@param win_width integer window width
|
||||||
@ -175,7 +174,7 @@ end
|
|||||||
---@param str string
|
---@param str string
|
||||||
---@return boolean
|
---@return boolean
|
||||||
function M.is_word(str)
|
function M.is_word(str)
|
||||||
return str:match('%w+') == str
|
return str:match '%w+' == str
|
||||||
end
|
end
|
||||||
|
|
||||||
---@param list any[]
|
---@param list any[]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
local api = vim.api
|
local api = vim.api
|
||||||
---@class Trans
|
---@class Trans
|
||||||
local Trans = require("Trans")
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
---@class TransWindow
|
---@class TransWindow
|
||||||
local window = {}
|
local window = {}
|
||||||
@ -61,10 +61,10 @@ function window:adjust_height(height)
|
|||||||
local display_height = Trans.util.display_height(self.buffer:lines(), self:width())
|
local display_height = Trans.util.display_height(self.buffer:lines(), self:width())
|
||||||
height = height and math.min(display_height, height) or display_height
|
height = height and math.min(display_height, height) or display_height
|
||||||
|
|
||||||
self:smooth_expand({
|
self:smooth_expand {
|
||||||
field = 'height',
|
field = 'height',
|
||||||
to = height
|
to = height,
|
||||||
})
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
---Expand window [width | height] value
|
---Expand window [width | height] value
|
||||||
@ -82,7 +82,7 @@ function window:smooth_expand(opts)
|
|||||||
local method = api['nvim_win_set_' .. field]
|
local method = api['nvim_win_set_' .. field]
|
||||||
|
|
||||||
|
|
||||||
local wrap = self:option('wrap')
|
local wrap = self:option 'wrap'
|
||||||
local interval = self.animation.interval
|
local interval = self.animation.interval
|
||||||
for i = from + 1, to, (from < to and 1 or -1) do
|
for i = from + 1, to, (from < to and 1 or -1) do
|
||||||
self:set('wrap', false)
|
self:set('wrap', false)
|
||||||
@ -99,14 +99,14 @@ function window:resize(opts)
|
|||||||
if opts.height and self:height() ~= opts.height then
|
if opts.height and self:height() ~= opts.height then
|
||||||
self:smooth_expand {
|
self:smooth_expand {
|
||||||
field = 'height',
|
field = 'height',
|
||||||
to = opts.height
|
to = opts.height,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
if opts.width and self:width() ~= opts.width then
|
if opts.width and self:width() ~= opts.width then
|
||||||
self:smooth_expand {
|
self:smooth_expand {
|
||||||
field = 'width',
|
field = 'width',
|
||||||
to = opts.width
|
to = opts.width,
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
@ -120,10 +120,10 @@ function window:try_close()
|
|||||||
fold = 'height',
|
fold = 'height',
|
||||||
})[close_animation]
|
})[close_animation]
|
||||||
|
|
||||||
self:smooth_expand({
|
self:smooth_expand {
|
||||||
field = field,
|
field = field,
|
||||||
to = 1,
|
to = 1,
|
||||||
})
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
api.nvim_win_close(self.winid, true)
|
api.nvim_win_close(self.winid, true)
|
||||||
@ -150,10 +150,10 @@ function window:open()
|
|||||||
local to = win_opts[field]
|
local to = win_opts[field]
|
||||||
win_opts[field] = 1
|
win_opts[field] = 1
|
||||||
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
|
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
|
||||||
self:smooth_expand({
|
self:smooth_expand {
|
||||||
field = field,
|
field = field,
|
||||||
to = to,
|
to = to,
|
||||||
})
|
}
|
||||||
else
|
else
|
||||||
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
|
self.winid = api.nvim_open_win(self.buffer.bufnr, self.enter, win_opts)
|
||||||
end
|
end
|
||||||
|
@ -3,10 +3,10 @@ local api = vim.api
|
|||||||
---@type table<string, fun(hover: TransHover)>
|
---@type table<string, fun(hover: TransHover)>
|
||||||
local strategy = {
|
local strategy = {
|
||||||
pageup = function(hover)
|
pageup = function(hover)
|
||||||
hover.buffer:normal("gg")
|
hover.buffer:normal 'gg'
|
||||||
end,
|
end,
|
||||||
pagedown = function(hover)
|
pagedown = function(hover)
|
||||||
hover.buffer:normal("G")
|
hover.buffer:normal 'G'
|
||||||
end,
|
end,
|
||||||
pin = function(hover)
|
pin = function(hover)
|
||||||
if hover.pin then
|
if hover.pin then
|
||||||
@ -22,10 +22,10 @@ local strategy = {
|
|||||||
col = col,
|
col = col,
|
||||||
width = width,
|
width = width,
|
||||||
height = height,
|
height = height,
|
||||||
relative = "editor",
|
relative = 'editor',
|
||||||
}
|
}
|
||||||
|
|
||||||
window:set("wrap", true)
|
window:set('wrap', true)
|
||||||
end,
|
end,
|
||||||
close = function(hover)
|
close = function(hover)
|
||||||
hover:destroy()
|
hover:destroy()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
---@type Trans
|
---@type Trans
|
||||||
local Trans = require("Trans")
|
local Trans = require 'Trans'
|
||||||
|
|
||||||
-- FIXME :Adjust Window Size
|
-- FIXME :Adjust Window Size
|
||||||
|
|
||||||
@ -11,8 +11,8 @@ local Trans = require("Trans")
|
|||||||
---@field destroy_funcs fun(hover:TransHover)[] @functions to be executed when hover window is closed
|
---@field destroy_funcs fun(hover:TransHover)[] @functions to be executed when hover window is closed
|
||||||
---@field opts TransHoverOpts @options for hover window
|
---@field opts TransHoverOpts @options for hover window
|
||||||
---@field pin boolean @whether hover window is pinned
|
---@field pin boolean @whether hover window is pinned
|
||||||
local M = Trans.metatable("frontend.hover", {
|
local M = Trans.metatable('frontend.hover', {
|
||||||
ns = vim.api.nvim_create_namespace("TransHoverWin"),
|
ns = vim.api.nvim_create_namespace 'TransHoverWin',
|
||||||
queue = {},
|
queue = {},
|
||||||
})
|
})
|
||||||
M.__index = M
|
M.__index = M
|
||||||
@ -85,12 +85,12 @@ function M:init_window(opts)
|
|||||||
title = m_opts.title,
|
title = m_opts.title,
|
||||||
width = opts.width or m_opts.width,
|
width = opts.width or m_opts.width,
|
||||||
height = opts.height or m_opts.height,
|
height = opts.height or m_opts.height,
|
||||||
relative = opts.relative or "cursor",
|
relative = opts.relative or 'cursor',
|
||||||
}
|
}
|
||||||
-- stylua: ignore end
|
-- stylua: ignore end
|
||||||
|
|
||||||
if win_opts.title then
|
if win_opts.title then
|
||||||
win_opts.title_pos = "center"
|
win_opts.title_pos = 'center'
|
||||||
end
|
end
|
||||||
|
|
||||||
option.win_opts = win_opts
|
option.win_opts = win_opts
|
||||||
@ -103,7 +103,7 @@ end
|
|||||||
---@return string formatted text
|
---@return string formatted text
|
||||||
---@return integer _ replaced count
|
---@return integer _ replaced count
|
||||||
function M:icon_format(format)
|
function M:icon_format(format)
|
||||||
return format:gsub("{{(%w+)}}", self.opts.icon)
|
return format:gsub('{{(%w+)}}', self.opts.icon)
|
||||||
end
|
end
|
||||||
|
|
||||||
---Get Check function for waiting
|
---Get Check function for waiting
|
||||||
@ -127,7 +127,7 @@ function M:wait()
|
|||||||
return function()
|
return function()
|
||||||
cur = cur + 1
|
cur = cur + 1
|
||||||
buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur)
|
buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur)
|
||||||
buffer:add_highlight(1, "TransWaitting")
|
buffer:add_highlight(1, 'TransWaitting')
|
||||||
pause(interval)
|
pause(interval)
|
||||||
return cur < times
|
return cur < times
|
||||||
end
|
end
|
||||||
@ -150,14 +150,14 @@ function M:fallback()
|
|||||||
|
|
||||||
-- TODO :Center
|
-- TODO :Center
|
||||||
buffer[1] = Trans.util.center(fallback_msg, opts.width)
|
buffer[1] = Trans.util.center(fallback_msg, opts.width)
|
||||||
buffer:add_highlight(1, "TransFailed")
|
buffer:add_highlight(1, 'TransFailed')
|
||||||
self:defer()
|
self:defer()
|
||||||
end
|
end
|
||||||
|
|
||||||
---Defer function when process done
|
---Defer function when process done
|
||||||
function M:defer()
|
function M:defer()
|
||||||
self.window:set("wrap", true)
|
self.window:set('wrap', true)
|
||||||
self.buffer:set("modifiable", false)
|
self.buffer:set('modifiable', false)
|
||||||
|
|
||||||
local auto_close_events = self.opts.auto_close_events
|
local auto_close_events = self.opts.auto_close_events
|
||||||
if not auto_close_events then return end
|
if not auto_close_events then return end
|
||||||
@ -191,7 +191,7 @@ function M:process(data)
|
|||||||
local buffer = self.buffer
|
local buffer = self.buffer
|
||||||
|
|
||||||
if opts.auto_play then
|
if opts.auto_play then
|
||||||
(data.from == "en" and data.str or result.definition[1]):play()
|
(data.from == 'en' and data.str or result.definition[1]):play()
|
||||||
end
|
end
|
||||||
|
|
||||||
-- vim.pretty_print(result)
|
-- vim.pretty_print(result)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local node = require('Trans').util.node
|
local node = require 'Trans'.util.node
|
||||||
local it, conjunction = node.item, node.conjunction
|
local it, conjunction = node.item, node.conjunction
|
||||||
local interval = (' '):rep(4)
|
local interval = (' '):rep(4)
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ local default = {
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer:setline('')
|
buffer:setline ''
|
||||||
end,
|
end,
|
||||||
definition = function(hover, result)
|
definition = function(hover, result)
|
||||||
local definition = result.definition
|
local definition = result.definition
|
||||||
@ -50,7 +50,7 @@ local default = {
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer:setline('')
|
buffer:setline ''
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local node = require('Trans').util.node
|
local node = require 'Trans'.util.node
|
||||||
local it, t, f, co = node.item, node.text, node.format, node.conjunction
|
local it, t, f, co = node.item, node.text, node.format, node.conjunction
|
||||||
local interval = (' '):rep(4)
|
local interval = (' '):rep(4)
|
||||||
|
|
||||||
@ -26,7 +26,7 @@ function M.title(hover, result)
|
|||||||
t {
|
t {
|
||||||
it { '[' },
|
it { '[' },
|
||||||
it { (phonetic and phonetic ~= '') and phonetic or icon.notfound, 'TransPhonetic' },
|
it { (phonetic and phonetic ~= '') and phonetic or icon.notfound, 'TransPhonetic' },
|
||||||
it { ']' }
|
it { ']' },
|
||||||
},
|
},
|
||||||
|
|
||||||
it { collins and icon.star:rep(collins) or icon.notfound, 'TransCollins' },
|
it { collins and icon.star:rep(collins) or icon.notfound, 'TransCollins' },
|
||||||
@ -54,7 +54,7 @@ function M.tag(hover, result)
|
|||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer:setline('')
|
buffer:setline ''
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.exchange(hover, result)
|
function M.exchange(hover, result)
|
||||||
@ -70,7 +70,7 @@ function M.exchange(hover, result)
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer:setline('')
|
buffer:setline ''
|
||||||
end
|
end
|
||||||
|
|
||||||
function M.pos(hover, result)
|
function M.pos(hover, result)
|
||||||
@ -86,7 +86,7 @@ function M.pos(hover, result)
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer:setline('')
|
buffer:setline ''
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
local Trans = require('Trans')
|
local Trans = require 'Trans'
|
||||||
local health, fn = vim.health, vim.fn
|
local health, fn = vim.health, vim.fn
|
||||||
|
|
||||||
local ok = health.report_ok
|
local ok = health.report_ok
|
||||||
@ -8,73 +8,73 @@ local has = fn.has
|
|||||||
local executable = fn.executable
|
local executable = fn.executable
|
||||||
|
|
||||||
local function check_neovim_version()
|
local function check_neovim_version()
|
||||||
if has("nvim-0.9") == 1 then
|
if has 'nvim-0.9' == 1 then
|
||||||
ok([[You have [neovim-nightly] ]])
|
ok [[You have [neovim-nightly] ]]
|
||||||
else
|
else
|
||||||
warn([[Trans Title requires Neovim 0.9 or newer
|
warn [[Trans Title requires Neovim 0.9 or newer
|
||||||
See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly]
|
See neovim-nightly: [https://github.com/neovim/neovim/releases/tag/nightly]
|
||||||
]])
|
]]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function check_plugin_dependencies()
|
local function check_plugin_dependencies()
|
||||||
local plugin_dependencies = {
|
local plugin_dependencies = {
|
||||||
-- 'plenary',
|
-- 'plenary',
|
||||||
"sqlite",
|
'sqlite',
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, dep in ipairs(plugin_dependencies) do
|
for _, dep in ipairs(plugin_dependencies) do
|
||||||
if pcall(require, dep) then
|
if pcall(require, dep) then
|
||||||
ok(string.format("Dependency [%s] is installed", dep))
|
ok(string.format('Dependency [%s] is installed', dep))
|
||||||
else
|
else
|
||||||
error(string.format("Dependency [%s] is not installed", dep))
|
error(string.format('Dependency [%s] is not installed', dep))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function check_binary_dependencies()
|
local function check_binary_dependencies()
|
||||||
local binary_dependencies = {
|
local binary_dependencies = {
|
||||||
"curl",
|
'curl',
|
||||||
"sqlite3",
|
'sqlite3',
|
||||||
}
|
}
|
||||||
|
|
||||||
if has("linux") == 1 then
|
if has 'linux' == 1 then
|
||||||
binary_dependencies[3] = "festival"
|
binary_dependencies[3] = 'festival'
|
||||||
elseif has("mac") == 1 then
|
elseif has 'mac' == 1 then
|
||||||
binary_dependencies[3] = "say"
|
binary_dependencies[3] = 'say'
|
||||||
else
|
else
|
||||||
binary_dependencies[3] = "node"
|
binary_dependencies[3] = 'node'
|
||||||
end
|
end
|
||||||
|
|
||||||
for _, dep in ipairs(binary_dependencies) do
|
for _, dep in ipairs(binary_dependencies) do
|
||||||
if executable(dep) == 1 then
|
if executable(dep) == 1 then
|
||||||
ok(string.format("Binary dependency [%s] is installed", dep))
|
ok(string.format('Binary dependency [%s] is installed', dep))
|
||||||
else
|
else
|
||||||
error(string.format("Binary dependency [%s] is not installed", dep))
|
error(string.format('Binary dependency [%s] is not installed', dep))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function check_database()
|
local function check_database()
|
||||||
local db_path = Trans.conf.dir .. Trans.separator .. "ultimate.db"
|
local db_path = Trans.conf.dir .. Trans.separator .. 'ultimate.db'
|
||||||
if fn.filereadable(db_path) == 1 then
|
if fn.filereadable(db_path) == 1 then
|
||||||
ok([[ultimate database found ]])
|
ok [[ultimate database found ]]
|
||||||
else
|
else
|
||||||
error([[Stardict database not found
|
error [[Stardict database not found
|
||||||
[Manually]: Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
|
[Manually]: Please check the doc in github: [https://github.com/JuanZoran/Trans.nvim]
|
||||||
[Automatically]: Try to run `:lua require "Trans".install()`
|
[Automatically]: Try to run `:lua require "Trans".install()`
|
||||||
]])
|
]]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
local function check_configure_file()
|
local function check_configure_file()
|
||||||
local path = fn.expand(Trans.conf.dir .. Trans.separator .. "Trans.json")
|
local path = fn.expand(Trans.conf.dir .. Trans.separator .. 'Trans.json')
|
||||||
if not fn.filereadable(path) then
|
if not fn.filereadable(path) then
|
||||||
warn("Backend configuration file[%s] not found")
|
warn 'Backend configuration file[%s] not found'
|
||||||
end
|
end
|
||||||
|
|
||||||
local file = io.open(path, "r")
|
local file = io.open(path, 'r')
|
||||||
local valid = file and pcall(vim.json.decode, file:read("*a"))
|
local valid = file and pcall(vim.json.decode, file:read '*a')
|
||||||
|
|
||||||
if valid then
|
if valid then
|
||||||
ok(string.format([[Backend configuration file [%s] found and valid ]], path))
|
ok(string.format([[Backend configuration file [%s] found and valid ]], path))
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
local function metatable(folder_name, origin)
|
local function metatable(folder_name, origin)
|
||||||
return setmetatable(origin or {}, {
|
return setmetatable(origin or {}, {
|
||||||
__index = function(tbl, key)
|
__index = function(tbl, key)
|
||||||
local status, result = pcall(require, ("Trans.%s.%s"):format(folder_name, key))
|
local status, result = pcall(require, ('Trans.%s.%s'):format(folder_name, key))
|
||||||
if status then
|
if status then
|
||||||
tbl[key] = result
|
tbl[key] = result
|
||||||
return result
|
return result
|
||||||
@ -19,16 +19,16 @@ end
|
|||||||
---@field play function @Use tts to play string
|
---@field play function @Use tts to play string
|
||||||
|
|
||||||
|
|
||||||
local separator = vim.loop.os_uname().sysname == "Windows" and "\\" or "/"
|
local separator = vim.loop.os_uname().sysname == 'Windows' and '\\' or '/'
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field style table @Style module
|
---@field style table @Style module
|
||||||
---@field cache table<string, TransData> @Cache for translated data object
|
---@field cache table<string, TransData> @Cache for translated data object
|
||||||
---@field plugin_dir string @Plugin directory
|
---@field plugin_dir string @Plugin directory
|
||||||
---@field separator string @Path separator
|
---@field separator string @Path separator
|
||||||
local M = metatable("core", {
|
local M = metatable('core', {
|
||||||
cache = {},
|
cache = {},
|
||||||
style = metatable("style"),
|
style = metatable 'style',
|
||||||
plugin_dir = debug.getinfo(1, "S").source:sub(2):match("(.-)lua" .. separator .. "Trans"),
|
plugin_dir = debug.getinfo(1, 'S').source:sub(2):match('(.-)lua' .. separator .. 'Trans'),
|
||||||
separator = separator,
|
separator = separator,
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -39,7 +39,7 @@ M.metatable = metatable
|
|||||||
---@param is_dir boolean?
|
---@param is_dir boolean?
|
||||||
---@return string
|
---@return string
|
||||||
function M.relative_path(path, is_dir)
|
function M.relative_path(path, is_dir)
|
||||||
return M.plugin_dir .. table.concat(path, separator) .. (is_dir and separator or "")
|
return M.plugin_dir .. table.concat(path, separator) .. (is_dir and separator or '')
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
local M = {}
|
|
||||||
M.test_api_latency = function(urls)
|
|
||||||
urls = type(urls) == 'string' and { urls } or urls
|
|
||||||
|
|
||||||
local f = [[curl -s -o /dev/null -w '[%s]延迟: %%{time_total}s %s']]
|
|
||||||
local result = {}
|
|
||||||
for _, url in ipairs(urls) do
|
|
||||||
local cmd = string.format(f, url, url)
|
|
||||||
local res = vim.fn.system(cmd)
|
|
||||||
result[#result + 1] = res
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.pretty_print(result)
|
|
||||||
end
|
|
||||||
|
|
||||||
return M
|
|
@ -1,4 +1,4 @@
|
|||||||
local util = require('Trans').util
|
local util = require 'Trans'.util
|
||||||
|
|
||||||
---@class TransNode
|
---@class TransNode
|
||||||
---@field [1] string text to be rendered
|
---@field [1] string text to be rendered
|
||||||
@ -29,7 +29,7 @@ local text_meta = {
|
|||||||
render = function(self, buffer, line, col)
|
render = function(self, buffer, line, col)
|
||||||
local nodes = self.nodes
|
local nodes = self.nodes
|
||||||
local step = self.step
|
local step = self.step
|
||||||
local len = step and #step or 0
|
local len = step and #step or 0
|
||||||
|
|
||||||
for _, node in ipairs(nodes) do
|
for _, node in ipairs(nodes) do
|
||||||
node:render(buffer, line, col)
|
node:render(buffer, line, col)
|
||||||
@ -66,7 +66,7 @@ end
|
|||||||
---@return TransText
|
---@return TransText
|
||||||
local function format(args)
|
local function format(args)
|
||||||
local width = args.width
|
local width = args.width
|
||||||
local spin = args.spin or " "
|
local spin = args.spin or ' '
|
||||||
local size = #args
|
local size = #args
|
||||||
local wid = 0
|
local wid = 0
|
||||||
for i = 1, size do
|
for i = 1, size do
|
||||||
@ -93,9 +93,9 @@ return {
|
|||||||
format = format,
|
format = format,
|
||||||
conjunction = function(str)
|
conjunction = function(str)
|
||||||
return {
|
return {
|
||||||
item { "", "TransTitleRound" },
|
item { '', 'TransTitleRound' },
|
||||||
item { str, "TransTitle" },
|
item { str, 'TransTitle' },
|
||||||
item { "", "TransTitleRound" },
|
item { '', 'TransTitleRound' },
|
||||||
}
|
}
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user