Trans.nvim/lua/Trans/core/immersive.lua

76 lines
2.0 KiB
Lua
Raw Normal View History

2023-03-22 21:55:08 +08:00
local function trans()
local lines = vim.api.nvim_buf_get_lines(0, 0, -1, false)
local paragraphs = {}
-- TODO : trim empty lines in the beginning and the end
for index, line in ipairs(lines) do
2023-03-24 00:56:36 +08:00
if line:match '%S+' then
2023-03-22 21:55:08 +08:00
table.insert(paragraphs, { index - 1, line })
end
end
2023-03-24 00:56:36 +08:00
local Trans = require 'Trans'
2023-03-22 21:55:08 +08:00
local baidu = Trans.backend.baidu
---@cast baidu Baidu
for _, line in ipairs(paragraphs) do
2023-03-24 00:56:36 +08:00
local query = baidu.get_query {
2023-03-22 21:55:08 +08:00
str = line[2],
2023-03-24 00:56:36 +08:00
from = 'en',
to = 'zh',
}
2023-03-22 21:55:08 +08:00
Trans.curl.get(baidu.uri, {
query = query,
callback = function(output)
-- vim.print(output)
local body = output.body
local status, ret = pcall(vim.json.decode, body)
2023-03-24 00:56:36 +08:00
assert(status and ret, 'Failed to parse json:' .. vim.inspect(body))
2023-03-22 21:55:08 +08:00
local result = ret.trans_result
2023-03-24 00:56:36 +08:00
assert(result, 'Failed to get result: ' .. vim.inspect(ret))
2023-03-22 21:55:08 +08:00
result = result[1]
line.translation = result.dst
end,
})
end
2023-03-24 00:56:36 +08:00
local ns = vim.api.nvim_create_namespace 'Trans'
2023-03-22 21:55:08 +08:00
for _, line in ipairs(paragraphs) do
local index = line[1]
local co = coroutine.running()
local times = 0
while not line.translation do
vim.defer_fn(function()
coroutine.resume(co)
end, 100)
print('waitting' .. ('.'):rep(times))
times = times + 1
-- if times == 10 then break end
coroutine.yield()
end
local translation = line.translation
print(translation, index)
Trans.util.main_loop(function()
vim.api.nvim_buf_set_extmark(0, ns, index, #line[2], {
virt_lines = {
2023-03-24 00:56:36 +08:00
{ { translation, 'MoreMsg' } },
2023-03-22 21:55:08 +08:00
},
})
end)
2023-03-24 00:56:36 +08:00
print 'done'
2023-03-22 21:55:08 +08:00
end
-- TODO :双语翻译
end
return function()
coroutine.wrap(trans)()
end