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

35 lines
815 B
Lua
Raw Normal View History

2023-03-24 00:56:36 +08:00
local Trans = require 'Trans'
2023-03-09 19:42:41 +08:00
2023-05-06 11:38:37 +08:00
-- HACK : Core process logic
local function process(opts)
2023-03-09 19:42:41 +08:00
opts = opts or {}
opts.mode = opts.mode or vim.fn.mode()
2023-05-06 11:38:37 +08:00
local str = Trans.util.get_str(opts.mode)
opts.str = str
2023-03-12 21:33:00 +08:00
if not str or str == '' then return end
2023-03-12 21:33:00 +08:00
-- 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)
2023-05-06 11:38:37 +08:00
if Trans.strategy[data.frontend.opts.query](data) then
Trans.cache[data.str] = data
data.frontend:process(data)
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-05-06 11:38:37 +08:00
2023-03-14 18:17:07 +08:00
return function(opts)
coroutine.wrap(process)(opts)
end