2023-03-11 00:24:48 +08:00
|
|
|
local Trans = require('Trans')
|
|
|
|
local util = Trans.util
|
2023-03-09 19:42:41 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
|
|
|
|
local function init_opts(opts)
|
2023-03-09 19:42:41 +08:00
|
|
|
opts = opts or {}
|
2023-03-12 21:33:00 +08:00
|
|
|
opts.mode = opts.mode or ({
|
2023-03-11 00:24:48 +08:00
|
|
|
n = 'normal',
|
|
|
|
v = 'visual',
|
2023-03-11 11:32:13 +08:00
|
|
|
})[vim.api.nvim_get_mode().mode]
|
2023-03-11 00:24:48 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
opts.str = util.get_str(opts.mode)
|
|
|
|
return opts
|
|
|
|
end
|
|
|
|
|
2023-03-11 00:24:48 +08:00
|
|
|
local function set_result(data)
|
2023-03-12 21:33:00 +08:00
|
|
|
-- HACK :Rewrite this function to support multi requests
|
|
|
|
local frontend = data.frontend
|
|
|
|
for _, backend in ipairs(data.backend) do
|
|
|
|
local name = backend.name
|
2023-03-12 15:18:27 +08:00
|
|
|
if backend.no_wait then
|
|
|
|
backend.query(data)
|
|
|
|
else
|
|
|
|
backend.query(data)
|
2023-03-12 21:33:00 +08:00
|
|
|
frontend:wait(data.result, name, backend.timeout)
|
2023-03-12 15:18:27 +08:00
|
|
|
end
|
2023-03-12 16:14:03 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
if type(data.result[name]) == 'table' then break end
|
2023-03-12 15:18:27 +08:00
|
|
|
end
|
|
|
|
end
|
2023-03-11 11:32:13 +08:00
|
|
|
|
2023-03-12 21:33:00 +08:00
|
|
|
|
2023-03-11 11:32:13 +08:00
|
|
|
-- HACK : Core process logic
|
2023-03-11 00:24:48 +08:00
|
|
|
local function process(opts)
|
|
|
|
Trans.translate = coroutine.wrap(process)
|
2023-03-12 21:33:00 +08:00
|
|
|
opts = init_opts(opts)
|
|
|
|
local str = opts.str
|
|
|
|
if not str or str == '' then return end
|
|
|
|
|
|
|
|
-- Find in cache
|
|
|
|
if Trans.cache[str] then
|
2023-03-12 22:12:33 +08:00
|
|
|
local data = Trans.cache[str]
|
|
|
|
data.frontend:process(data)
|
2023-03-12 21:33:00 +08:00
|
|
|
return
|
|
|
|
end
|
2023-03-11 00:24:48 +08:00
|
|
|
|
|
|
|
|
2023-03-13 19:50:28 +08:00
|
|
|
local data = Trans.data.new(opts)
|
2023-03-11 00:24:48 +08:00
|
|
|
set_result(data)
|
2023-03-13 19:50:28 +08:00
|
|
|
|
|
|
|
|
2023-03-12 16:14:03 +08:00
|
|
|
local success = false
|
|
|
|
for _, v in pairs(data.result) do
|
|
|
|
if type(v) == "table" then
|
|
|
|
success = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if success == false then return end
|
2023-03-12 21:33:00 +08:00
|
|
|
|
|
|
|
Trans.cache[data.str] = data
|
2023-03-12 22:12:33 +08:00
|
|
|
data.frontend:process(data)
|
2023-03-09 19:42:41 +08:00
|
|
|
end
|
|
|
|
|
2023-03-09 22:55:04 +08:00
|
|
|
return coroutine.wrap(process)
|