fix: fix backend order mistake

This commit is contained in:
JuanZoran 2023-03-18 21:56:12 +08:00
parent 52d2741804
commit 3eae6a40e9
3 changed files with 13 additions and 10 deletions

View File

@ -27,12 +27,11 @@ if file then
file:close() file:close()
end end
local all_name = {} local all_name = {}
local backend_order = conf.backend_order or vim.tbl_keys(result) local backend_order = conf.backend_order or vim.tbl_keys(result)
for name, opts in pairs(backend_order) do for _, name in ipairs(backend_order) do
if opts.disable then if not result[name].disable then
result[name] = nil
else
all_name[#all_name + 1] = name all_name[#all_name + 1] = name
end end
end end
@ -54,8 +53,8 @@ return setmetatable({
local private_opts = result[name] local private_opts = result[name]
if private_opts then if private_opts then
for k, v in pairs(private_opts) do for field, value in pairs(private_opts) do
backend[k] = v backend[field] = value
end end
end end

View File

@ -4,6 +4,7 @@ local function set_strategy_opts(conf)
local all_modes = Trans.modes local all_modes = Trans.modes
local all_backends = Trans.backend.all_name local all_backends = Trans.backend.all_name
local function parse_backend(backend) local function parse_backend(backend)
if type(backend) == 'string' then if type(backend) == 'string' then
return backend == '*' and all_backends or { backend } return backend == '*' and all_backends or { backend }

View File

@ -49,24 +49,27 @@ local function do_query(data, backend)
-- Hook ? -- Hook ?
end end
---@type table<string, fun(data: TransData): true | nil> ---@type table<string, fun(data: TransData):boolean>
local strategy = { local strategy = {
fallback = function(data) fallback = function(data)
local result = data.result local result = data.result
Trans.backend.offline.query(data) Trans.backend.offline.query(data)
if result.offline then return true end
if result.offline then return true end
local update = data.frontend:wait() local update = data.frontend:wait()
for _, backend in ipairs(data.backends) do for _, backend in ipairs(data.backends) do
do_query(data, backend) do_query(data, backend)
local name = backend.name
---@cast backend TransBackend ---@cast backend TransBackend
while result[backend.name] == nil do while result[name] == nil do
if not update() then break end if not update() then break end
end end
if result[backend.name] then return true end if result[name] then return true end
end end
return false
end, end,
--- TODO :More Strategys --- TODO :More Strategys
} }