From 4a0f9b5c8538580bd426e4ee10ac503acc9dd0f2 Mon Sep 17 00:00:00 2001 From: JuanZoran <1430359574@qq.com> Date: Thu, 16 Mar 2023 19:25:08 +0800 Subject: [PATCH] fix: try to fix install.lua mistakes --- lua/Trans/core/curl.lua | 6 ------ lua/Trans/core/install.lua | 21 +++++++++++++-------- lua/Trans/frontend/hover/youdao.lua | 8 +++++++- 3 files changed, 20 insertions(+), 15 deletions(-) diff --git a/lua/Trans/core/curl.lua b/lua/Trans/core/curl.lua index 58f9534..d5a006e 100644 --- a/lua/Trans/core/curl.lua +++ b/lua/Trans/core/curl.lua @@ -62,16 +62,11 @@ function curl.get(uri, opts) end end - local error = {} - local on_stderr = function(_, stderr) - error[#error + 1] = table.concat(stderr) - end local on_exit = function(_, exit) callback { exit = exit, body = table.concat(outputs), - error = table.concat(error, '\n') } end @@ -79,7 +74,6 @@ function curl.get(uri, opts) vim.fn.jobstart(table.concat(cmd, ' '), { stdin = 'null', on_stdout = on_stdout, - on_stderr = on_stderr, on_exit = on_exit, }) end diff --git a/lua/Trans/core/install.lua b/lua/Trans/core/install.lua index ccce316..4540a4d 100644 --- a/lua/Trans/core/install.lua +++ b/lua/Trans/core/install.lua @@ -5,29 +5,34 @@ return function() -- INFO :Check ultimate.db exists local dir = Trans.conf.dir local path = dir .. '/ultimate.db' + local fn = vim.fn + if fn.isdirectory(dir) == 0 then + fn.mkdir(dir, 'p') + end if 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 + vim.notify('Trying to download database', vim.log.INFO) -- 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' + local zip = dir .. '/ultimate.zip' + if fn.filereadable(zip) then os.remove(zip) end + local handle = function(output) - if output.exit == 0 and fn.filereadable(loc) then + if output.exit == 0 and fn.filereadable(zip) then if fn.executable('unzip') == 0 then - vim.notify('unzip not found, Please unzip ' .. loc .. 'manually', vim.log.ERROR) + vim.notify('unzip not found, Please unzip ' .. zip .. 'manually', vim.log.ERROR) return end - local cmd = string.format('unzip %s -d %s', path, dir) + local cmd = string.format('unzip %s -d %s', zip, dir) local status = os.execute(cmd) - os.remove(path) + os.remove(zip) if status == 0 then vim.notify('Download database successfully', vim.log.INFO) return @@ -40,7 +45,7 @@ return function() Trans.curl.get(uri, { - output = loc, + output = zip, callback = handle, }) diff --git a/lua/Trans/frontend/hover/youdao.lua b/lua/Trans/frontend/hover/youdao.lua index b2fd283..09c9f94 100644 --- a/lua/Trans/frontend/hover/youdao.lua +++ b/lua/Trans/frontend/hover/youdao.lua @@ -1,7 +1,13 @@ +local node = require('Trans').util.node +local it, t, f, co = node.item, node.text, node.format, node.conjunction + + ---@type TransHoverRenderer local M = {} -function M.web() +function M.web(hover, result) + if not result.web then return end + end