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

46 lines
950 B
Lua
Raw Normal View History

2023-03-09 19:42:41 +08:00
local M = require('Trans')
local util = M.util
local process
process = function(opts)
opts = opts or {}
local mode = opts.mode or vim.api.nvim_get_mode().mode
local str = util.get_str(mode)
if str == '' then return end
local data = {
str = str,
view = opts.view or M.conf.view[mode],
mode = mode,
}
if util.is_English(str) then
data.from = 'en'
data.to = 'zh'
else
data.from = 'zh'
data.to = 'en'
end
require('Trans.backend').baidu.query(data)
local thread = coroutine.running()
local resume = function()
coroutine.resume(thread)
end
local time = 0
while data.result == nil do
vim.defer_fn(resume, 400)
time = time + 1
print('waiting' .. ('.'):rep(time))
coroutine.yield()
end
vim.pretty_print(data)
2023-03-09 19:42:41 +08:00
M.translate = coroutine.wrap(process)
end
return coroutine.wrap(process)