chore: sync progress
This commit is contained in:
parent
d2f00c8773
commit
529a1639c6
@ -8,6 +8,7 @@ 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',
|
||||||
|
name_zh = '百度',
|
||||||
method = 'get',
|
method = 'get',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@ vim.api.nvim_create_autocmd('VimLeavePre', {
|
|||||||
---@class TransOfflineBackend
|
---@class TransOfflineBackend
|
||||||
local M = {
|
local M = {
|
||||||
name = 'offline',
|
name = 'offline',
|
||||||
|
name_zh = '本地',
|
||||||
no_wait = true,
|
no_wait = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@ local M = {
|
|||||||
uri = 'https://openapi.youdao.com/api',
|
uri = 'https://openapi.youdao.com/api',
|
||||||
salt = tostring(math.random(bit.lshift(1, 15))),
|
salt = tostring(math.random(bit.lshift(1, 15))),
|
||||||
name = 'youdao',
|
name = 'youdao',
|
||||||
|
name_zh = '有道',
|
||||||
method = 'get',
|
method = 'get',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ local Trans = require 'Trans'
|
|||||||
---@field no_wait? boolean whether need to wait for the result
|
---@field no_wait? boolean whether need to wait for the result
|
||||||
---@field all_name string[] @all backend name
|
---@field all_name string[] @all backend name
|
||||||
---@field name string @backend name
|
---@field name string @backend name
|
||||||
|
---@field name_zh string @backend name in Chinese
|
||||||
|
|
||||||
---@class TransOnlineBackend: TransBackend
|
---@class TransOnlineBackend: TransBackend
|
||||||
---@field uri string @request uri
|
---@field uri string @request uri
|
||||||
|
@ -2,7 +2,7 @@ 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
|
||||||
|
local g_strategy = conf.strategy
|
||||||
|
|
||||||
local function parse_backend(backend)
|
local function parse_backend(backend)
|
||||||
if type(backend) == 'string' then
|
if type(backend) == 'string' then
|
||||||
@ -12,19 +12,19 @@ local function set_strategy_opts(conf)
|
|||||||
return backend
|
return backend
|
||||||
end
|
end
|
||||||
|
|
||||||
local default_strategy = conf.strategy.default
|
local default_strategy = g_strategy.default
|
||||||
default_strategy.backend = parse_backend(default_strategy.backend)
|
default_strategy.backend = parse_backend(default_strategy.backend)
|
||||||
default_strategy.__index = default_strategy
|
default_strategy.__index = default_strategy
|
||||||
|
|
||||||
conf.strategy.default = nil
|
g_strategy.default = nil
|
||||||
|
|
||||||
setmetatable(conf.strategy, {
|
setmetatable(g_strategy, {
|
||||||
__index = function()
|
__index = function()
|
||||||
return default_strategy
|
return default_strategy
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
for _, strategy in pairs(conf.strategy) do
|
for _, strategy in pairs(g_strategy) do
|
||||||
strategy.backend = parse_backend(strategy.backend)
|
strategy.backend = parse_backend(strategy.backend)
|
||||||
setmetatable(strategy, default_strategy)
|
setmetatable(strategy, default_strategy)
|
||||||
end
|
end
|
||||||
|
@ -93,7 +93,6 @@ function M:init_window(opts)
|
|||||||
animation = m_opts.animation,
|
animation = m_opts.animation,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- stylua: ignore start
|
|
||||||
local win_opts = {
|
local win_opts = {
|
||||||
col = opts.col or 1,
|
col = opts.col or 1,
|
||||||
row = opts.row or 1,
|
row = opts.row or 1,
|
||||||
@ -102,7 +101,6 @@ function M:init_window(opts)
|
|||||||
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
|
|
||||||
|
|
||||||
if win_opts.title then
|
if win_opts.title then
|
||||||
win_opts.title_pos = 'center'
|
win_opts.title_pos = 'center'
|
||||||
@ -139,6 +137,8 @@ function M:wait()
|
|||||||
width = times,
|
width = times,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
-- FIXME : add proper args
|
||||||
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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user