refactor: use install.lua instead of install.sh

This commit is contained in:
JuanZoran 2023-03-10 09:15:53 +08:00
parent da1f847bd0
commit 35807247ff
6 changed files with 212 additions and 209 deletions

View File

@ -77,7 +77,7 @@ https://user-images.githubusercontent.com/107862700/215941500-3293c571-20a1-44e2
_安装之前, 首先需要明确本插件的依赖:_
- [ECDICT](https://github.com/skywind3000/ECDICT): 插件所用的离线单词数据库
- sqlite.lua: 操作数据库所用的库
- [sqlite.lua](https://github.com/kkharji/sqlite.lua): 操作数据库所用的库
- sqlite3: 数据库
<details>
@ -86,8 +86,8 @@ _安装之前, 首先需要明确本插件的依赖:_
```lua
use {
'JuanZoran/Trans.nvim'
run = 'bash ./install.sh',
requires = 'kkharji/sqlite.lua',
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
-- 如果你不需要任何配置的话, 可以直接按照下面的方式启动
config = function ()
require'Trans'.setup{
@ -107,8 +107,8 @@ use {
{ {'n', 'x'}, 'mk' },
{ 'n', 'mi' },
},
run = 'bash ./install.sh', -- 自动下载使用的本地词库
requires = 'kkharji/sqlite.lua',
run = function() require('Trans').install() end, -- 自动下载使用的本地词库
requires = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
config = function()
require("Trans").setup {} -- 启动Trans
vim.keymap.set({"n", 'x'}, "mm", '<Cmd>Translate<CR>', { desc = ' Translate' }) -- 自动判断virtual 还是 normal 模式
@ -134,7 +134,7 @@ use {
-- 目前这个功能的视窗还没有做好可以在配置里将view.i改成hover
{ 'mi', '<Cmd>TranslateInput<CR>', desc = ' Translate From Input' },
},
dependencies = { 'kkharji/sqlite.lua', lazy = true },
dependencies = { 'kkharji/sqlite.lua', 'nvim-lua/plenary.nvim' },
opts = {
-- your configuration there
}
@ -178,9 +178,9 @@ use {
- 需要确保安装了`nodejs`
- 进入插件的`tts`目录运行`npm install`
> 如果`install.sh`运行正常则自动安装,如果安装失败,请尝试手动安装
> 如果`install`运行正常则自动安装,如果安装失败,请尝试手动安装
- `title`的配置,只对`neovim 0.9`版本有效
- `title`的配置,只对`neovim 0.9+`版本有效
<details>
<summary>Festival配置(仅针对linux用户)</summary>
@ -243,7 +243,11 @@ require'Trans'.setup {
width = 37,
height = 27,
border = 'rounded',
title = title,
title = vim.fn.has('nvim-0.9') == 1 and {
{ '', 'TransTitleRound' },
{ ' Trans', 'TransTitle' },
{ '', 'TransTitleRound' },
} or nil,
keymap = {
pageup = '[[',
pagedown = ']]',
@ -265,32 +269,10 @@ require'Trans'.setup {
'BufLeave',
},
auto_play = true,
timeout = 3000,
timeout = 2000,
spinner = 'dots', -- 查看所有样式: /lua/Trans/util/spinner
-- spinner = 'moon'
},
float = {
width = 0.8,
height = 0.8,
border = 'rounded',
title = title,
keymap = {
quit = 'q',
},
animation = {
open = 'fold',
close = 'fold',
interval = 10,
},
tag = {
wait = '#519aba',
fail = '#e46876',
success = '#10b981',
},
engine = {
'本地',
}
},
order = { -- only work on hover mode
'title',
'tag',
@ -313,29 +295,25 @@ require'Trans'.setup {
-- no = '❌'
},
theme = 'default',
-- theme = 'dracula',
-- theme = 'tokyonight',
db_path = '$HOME/.vim/dict/ultimate.db',
engine = {
-- baidu = {
-- appid = '',
-- appPasswd = '',
dir = vim.fn.expand('$HOME/.vim/dict'),
-- float = {
-- width = 0.8,
-- height = 0.8,
-- border = 'rounded',
-- keymap = {
-- quit = 'q',
-- },
-- animation = {
-- open = 'fold',
-- close = 'fold',
-- interval = 10,
-- },
-- tag = {
-- wait = '#519aba',
-- fail = '#e46876',
-- success = '#10b981',
-- },
-- -- youdao = {
-- appkey = '',
-- appPasswd = '',
-- },
},
-- TODO :
-- register word
-- history = {
-- -- TOOD
-- }
-- TODO :add online translate engine
}
```

View File

@ -1,18 +0,0 @@
#!/usr/bin/env bash
set -e
if test -e "$HOME/.vim/dict/ultimate.db"; then
exit
fi
mkdir -p "$HOME/.vim/dict"
wget https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip -O /tmp/dict.zip
unzip /tmp/dict.zip -d "$HOME/.vim/dict" && rm -rf /tmp/dict.zip
uNames=$(uname -s)
osName=${uNames:0:4}
if [ "$osName" != "Linux" ]; then
cd ./tts/ && npm install
fi

View File

@ -13,7 +13,8 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
M.query = function(data)
if data.is_word == false or data.from == 'zh' then return end
data.path = vim.fn.expand(data.path or require('Trans').conf.dir .. '/ultimate.db')
data.path = data.path or require('Trans').conf.dir .. '/ultimate.db'
data.engine = 'offline'
data.formatter = data.formatter or M.formatter
data.query_field = data.query_field or M.query_field

View File

@ -60,7 +60,7 @@ return {
-- no = '❌'
},
theme = 'default',
dir = '$HOME/.vim/dict',
dir = vim.fn.expand('$HOME/.vim/dict'),
-- float = {
-- width = 0.8,
-- height = 0.8,

View File

@ -0,0 +1,42 @@
return function()
-- INFO :Chceck ultimate.db exists
local dir = require('Trans').conf.dir
local path = dir .. '/ultimate.db'
if vim.fn.filereadable(path) == 1 then
vim.notify('Database already exists', vim.log.WARN)
return
else
vim.notify('Trying to download database', vim.log.INFO)
end
-- INFO :Download ultimate.db
local uri = 'https://github.com/skywind3000/ECDICT-ultimate/releases/download/1.0.0/ecdict-ultimate-sqlite.zip'
local loc = dir .. '/ultimate.zip'
require('plenary.curl').get(uri, {
output = loc,
callback = function(output)
if output.exsit == 0 and output.status == 200 then
if vim.fn.executable('unzip') == 0 then
vim.notify('unzip not found, Please unzip ' .. loc .. 'manually', vim.log.ERROR)
return
end
local cmd = string.format('unzip %s -d %s', path, dir)
os.execute(cmd)
os.remove(path)
vim.notify('Download database successfully', vim.log.INFO)
return
end
local debug_message = 'Download database failed:' .. vim.inspect(output)
vim.notify(debug_message, vim.log.ERROR)
end,
})
-- INFO : tts dependencies
if vim.fn.has('linux') == 0 and vim.fn.has('mac') == 0 then
os.execute('cd ./tts/ && npm install')
end
end

View File

@ -54,7 +54,7 @@ local check = function()
-- INFO :Check ultimate.db
local db_path = vim.fn.expand(require('Trans').conf.dir .. '/ultimate.db')
local db_path = require('Trans').conf.dir .. '/ultimate.db'
if vim.fn.filereadable(db_path) == 1 then
ok [[ultimate database found ]]
else