Trans.nvim/lua/Trans/core/translate.lua

70 lines
1.6 KiB
Lua
Raw Normal View History

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 ({
n = 'normal',
v = 'visual',
2023-03-11 11:32:13 +08:00
})[vim.api.nvim_get_mode().mode]
2023-03-12 21:33:00 +08:00
opts.str = util.get_str(opts.mode)
return opts
end
---@type table<string, fun(data: TransData): true | nil>
2023-03-15 20:57:28 +08:00
local strategy = {
fallback = function(data)
2023-03-15 20:57:28 +08:00
local result = data.result
Trans.backend.offline.query(data)
if result.offline then return true end
local update = data.frontend:wait()
2023-03-15 20:57:28 +08:00
for _, backend in ipairs(data.backends) do
---@cast backend TransBackend
backend.query(data)
local name = backend.name
while result[name] == nil do
if not update() then return end
2023-03-15 20:57:28 +08:00
end
if result[name] then return true end
end
2023-03-16 00:03:13 +08:00
end,
--- TODO :More Strategys
2023-03-15 20:57:28 +08:00
}
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
local function process(opts)
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
local data = Trans.cache[str]
data.frontend:process(data)
return
2023-03-12 21:33:00 +08:00
end
2023-03-13 19:50:28 +08:00
local data = Trans.data.new(opts)
if strategy[Trans.conf.query](data) then
Trans.cache[data.str] = data
data.frontend:process(data)
2023-03-12 21:33:00 +08:00
else
data.frontend:fallback()
end
2023-03-09 19:42:41 +08:00
end
2023-03-14 18:17:07 +08:00
---@class Trans
2023-03-15 11:34:50 +08:00
---@field translate fun(opts: { frontend: string?, mode: string?}?) Translate string core function
2023-03-14 18:17:07 +08:00
return function(opts)
coroutine.wrap(process)(opts)
end