chore: sync progress

This commit is contained in:
JuanZoran 2023-03-25 09:41:06 +08:00
parent d2f00c8773
commit 529a1639c6
6 changed files with 19 additions and 15 deletions

View File

@ -8,6 +8,7 @@ local M = {
uri = 'https://fanyi-api.baidu.com/api/trans/vip/translate',
salt = tostring(math.random(bit.lshift(1, 15))),
name = 'baidu',
name_zh = '百度',
method = 'get',
}

View File

@ -13,6 +13,7 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
---@class TransOfflineBackend
local M = {
name = 'offline',
name_zh = '本地',
no_wait = true,
}

View File

@ -8,6 +8,7 @@ local M = {
uri = 'https://openapi.youdao.com/api',
salt = tostring(math.random(bit.lshift(1, 15))),
name = 'youdao',
name_zh = '有道',
method = 'get',
}

View File

@ -5,6 +5,7 @@ local Trans = require 'Trans'
---@field no_wait? boolean whether need to wait for the result
---@field all_name string[] @all backend name
---@field name string @backend name
---@field name_zh string @backend name in Chinese
---@class TransOnlineBackend: TransBackend
---@field uri string @request uri

View File

@ -2,7 +2,7 @@ local Trans = require 'Trans'
local function set_strategy_opts(conf)
local all_backends = Trans.backend.all_name
local g_strategy = conf.strategy
local function parse_backend(backend)
if type(backend) == 'string' then
@ -12,19 +12,19 @@ local function set_strategy_opts(conf)
return backend
end
local default_strategy = conf.strategy.default
local default_strategy = g_strategy.default
default_strategy.backend = parse_backend(default_strategy.backend)
default_strategy.__index = default_strategy
conf.strategy.default = nil
g_strategy.default = nil
setmetatable(conf.strategy, {
setmetatable(g_strategy, {
__index = function()
return default_strategy
end,
})
for _, strategy in pairs(conf.strategy) do
for _, strategy in pairs(g_strategy) do
strategy.backend = parse_backend(strategy.backend)
setmetatable(strategy, default_strategy)
end

View File

@ -93,7 +93,6 @@ function M:init_window(opts)
animation = m_opts.animation,
}
-- stylua: ignore start
local win_opts = {
col = opts.col or 1,
row = opts.row or 1,
@ -102,7 +101,6 @@ function M:init_window(opts)
height = opts.height or m_opts.height,
relative = opts.relative or 'cursor',
}
-- stylua: ignore end
if win_opts.title then
win_opts.title_pos = 'center'
@ -139,6 +137,8 @@ function M:wait()
width = times,
}
-- FIXME : add proper args
return function()
cur = cur + 1
buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur)