refactor: remove do_query function
This commit is contained in:
parent
21351b3a26
commit
af4bb42d59
@ -6,8 +6,7 @@
|
|||||||
],
|
],
|
||||||
"Lua.diagnostics.globals": [
|
"Lua.diagnostics.globals": [
|
||||||
"vim",
|
"vim",
|
||||||
"user_conf",
|
"user_conf"
|
||||||
"default_conf"
|
|
||||||
],
|
],
|
||||||
"Lua.workspace.checkThirdParty": false
|
"Lua.workspace.checkThirdParty": false
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,6 @@ local Trans = require('Trans')
|
|||||||
|
|
||||||
---@class TransBackend
|
---@class TransBackend
|
||||||
---@field query fun(data: TransData)---@async
|
---@field query fun(data: TransData)---@async
|
||||||
---@field opts TransBackendOpts
|
|
||||||
---@field no_wait? boolean whether need to wait for the result
|
---@field no_wait? boolean whether need to wait for the result
|
||||||
---@field name string @backend name
|
---@field name string @backend name
|
||||||
|
|
||||||
@ -21,9 +20,6 @@ if file then
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local default_opts = conf.backend.default
|
|
||||||
default_opts.__index = default_opts
|
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
---@field backend table<string, TransBackend>
|
---@field backend table<string, TransBackend>
|
||||||
return setmetatable({}, {
|
return setmetatable({}, {
|
||||||
@ -36,8 +32,6 @@ return setmetatable({}, {
|
|||||||
backend = self[name]
|
backend = self[name]
|
||||||
end
|
end
|
||||||
|
|
||||||
backend.opts = setmetatable(conf.backend[name] or {}, default_opts)
|
|
||||||
|
|
||||||
local private_opts = result[name]
|
local private_opts = result[name]
|
||||||
if private_opts then
|
if private_opts then
|
||||||
for k, v in pairs(private_opts) do
|
for k, v in pairs(private_opts) do
|
||||||
|
@ -5,12 +5,13 @@ local api, fn = vim.api, vim.fn
|
|||||||
---@field [number] string buffer[line] content
|
---@field [number] string buffer[line] content
|
||||||
local buffer = {}
|
local buffer = {}
|
||||||
|
|
||||||
|
-- INFO : corountine can't invoke C function
|
||||||
---Clear all content in buffer
|
---Clear all content in buffer
|
||||||
function buffer:wipe()
|
-- function buffer:wipe()
|
||||||
print('begin')
|
-- print('begin')
|
||||||
api.nvim_buf_set_lines(self.bufnr, 0, -1, false, {})
|
-- api.nvim_buf_set_lines(self.bufnr, 0, -1, false, {})
|
||||||
print('end')
|
-- print('end')
|
||||||
end
|
-- end
|
||||||
|
|
||||||
---Delete buffer [_start, _end] line content [one index]
|
---Delete buffer [_start, _end] line content [one index]
|
||||||
---@param _start? integer start line index
|
---@param _start? integer start line index
|
||||||
|
@ -25,13 +25,6 @@ return {
|
|||||||
backend = '*',
|
backend = '*',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
---@type table<string, TransBackendOpts> fallback backend for mode
|
|
||||||
backend = {
|
|
||||||
---@class TransBackendOpts -- TODO :More core options
|
|
||||||
default = {
|
|
||||||
timeout = 2000,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
---@type table frontend options
|
---@type table frontend options
|
||||||
frontend = {
|
frontend = {
|
||||||
---@class TransFrontendOpts
|
---@class TransFrontendOpts
|
||||||
@ -47,6 +40,7 @@ return {
|
|||||||
close = 'slid',
|
close = 'slid',
|
||||||
interval = 12,
|
interval = 12,
|
||||||
},
|
},
|
||||||
|
timeout = 2000,
|
||||||
},
|
},
|
||||||
---@class TransHoverOpts : TransFrontendOpts
|
---@class TransHoverOpts : TransFrontendOpts
|
||||||
hover = {
|
hover = {
|
||||||
|
@ -7,7 +7,7 @@ local Trans = require('Trans')
|
|||||||
---@field is_word boolean @Is the str a word
|
---@field is_word boolean @Is the str a word
|
||||||
---@field str string @The original string
|
---@field str string @The original string
|
||||||
---@field mode string @The mode of the str
|
---@field mode string @The mode of the str
|
||||||
---@field result table<string, TransResult|boolean> @The result of the translation
|
---@field result table<string, TransResult|nil|false> @The result of the translation
|
||||||
---@field frontend TransFrontend
|
---@field frontend TransFrontend
|
||||||
---@field backends table<string, TransBackend>
|
---@field backends table<string, TransBackend>
|
||||||
local M = {}
|
local M = {}
|
||||||
|
@ -27,7 +27,7 @@ end
|
|||||||
---@field opts TransFrontendOpts
|
---@field opts TransFrontendOpts
|
||||||
---@field get_active_instance fun():TransFrontend?
|
---@field get_active_instance fun():TransFrontend?
|
||||||
---@field process fun(self: TransFrontend, data: TransData, result: TransResult)
|
---@field process fun(self: TransFrontend, data: TransData, result: TransResult)
|
||||||
---@field wait fun(self: TransFrontend, result: TransResult, name: string, timeout: integer)
|
---@field wait fun(self: TransFrontend): fun() Update wait status
|
||||||
---@field execute fun(action: string) @Execute action for frontend instance
|
---@field execute fun(action: string) @Execute action for frontend instance
|
||||||
|
|
||||||
---@class Trans
|
---@class Trans
|
||||||
|
@ -13,36 +13,28 @@ local function init_opts(opts)
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
---To Query All Backends
|
---@type table<string, fun(data: TransData, update: fun()): TransResult|false?>
|
||||||
---@param data TransData
|
local strategy = {
|
||||||
---@return TransResult? @return nil if no result
|
fallback = function(data, update)
|
||||||
local function do_query(data)
|
local result = data.result
|
||||||
-- HACK :Rewrite this function to support multi requests
|
for _, backend in ipairs(data.backends) do
|
||||||
|
---@cast backend TransBackend
|
||||||
---@type TransFrontend
|
local name = backend.name
|
||||||
local frontend = data.frontend
|
|
||||||
local result = data.result
|
|
||||||
|
|
||||||
|
|
||||||
for _, backend in ipairs(data.backends) do
|
|
||||||
---@cast backend TransBackend
|
|
||||||
local name = backend.name
|
|
||||||
if backend.no_wait then
|
|
||||||
backend.query(data)
|
backend.query(data)
|
||||||
else
|
|
||||||
backend.query(data)
|
|
||||||
frontend:wait(result, name, backend.opts.timeout)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
if type(result[name]) == 'table' then
|
if not backend.no_wait then
|
||||||
---@diagnostic disable-next-line: return-type-mismatch
|
while result[name] == nil do
|
||||||
return result[name]
|
update()
|
||||||
else
|
end
|
||||||
result[name] = nil
|
end
|
||||||
|
|
||||||
|
if type(result[name]) == 'table' then
|
||||||
|
return result[name]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
}
|
||||||
|
|
||||||
|
|
||||||
-- HACK : Core process logic
|
-- HACK : Core process logic
|
||||||
@ -62,13 +54,14 @@ local function process(opts)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
local data = Trans.data.new(opts)
|
local data = Trans.data.new(opts)
|
||||||
local result = do_query(data)
|
local frontend = data.frontend
|
||||||
|
|
||||||
|
local result = strategy[Trans.conf.query](data, frontend:wait())
|
||||||
if not result then return end
|
if not result then return end
|
||||||
|
|
||||||
Trans.cache[data.str] = data
|
Trans.cache[data.str] = data
|
||||||
data.frontend:process(data, result)
|
frontend:process(data, result)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -92,58 +92,56 @@ function M:init_window(opts)
|
|||||||
return self.window
|
return self.window
|
||||||
end
|
end
|
||||||
|
|
||||||
---Wait for data
|
---Get Check function for waiting
|
||||||
---@param tbl table @table to be checked
|
---@return function
|
||||||
---@param name string @key to be checked
|
function M:wait()
|
||||||
---@param timeout number @timeout for waiting
|
local cur = 0
|
||||||
function M:wait(tbl, name, timeout)
|
local opts = self.opts
|
||||||
local opts = self.opts
|
local buffer = self.buffer
|
||||||
local width = opts.width
|
local times = opts.width
|
||||||
local spinner = Trans.style.spinner[self.opts.spinner]
|
local pause = Trans.util.pause
|
||||||
local size = #spinner
|
local cell = opts.icon.cell
|
||||||
local cell = self.opts.icon.cell
|
local spinner = Trans.style.spinner[opts.spinner]
|
||||||
|
local size = #spinner
|
||||||
|
local interval = math.floor(opts.timeout / opts.width)
|
||||||
|
|
||||||
local function update_text(times)
|
self:init_window {
|
||||||
return spinner[times % size + 1] .. (cell):rep(times)
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
||||||
self:init_window({
|
|
||||||
height = 1,
|
height = 1,
|
||||||
width = width,
|
width = times,
|
||||||
})
|
}
|
||||||
|
|
||||||
|
return function()
|
||||||
local interval = math.floor(timeout / width)
|
cur = cur + 1
|
||||||
local pause = Trans.util.pause
|
buffer[1] = spinner[cur % size + 1] .. (cell):rep(cur)
|
||||||
local buffer = self.buffer
|
|
||||||
for i = 1, width do
|
|
||||||
if tbl[name] ~= nil then break end
|
|
||||||
buffer[1] = update_text(i)
|
|
||||||
buffer:add_highlight(1, 'MoreMsg')
|
buffer:add_highlight(1, 'MoreMsg')
|
||||||
pause(interval)
|
pause(interval)
|
||||||
|
return cur == times
|
||||||
end
|
end
|
||||||
|
|
||||||
-- FIXME :
|
|
||||||
-- buffer:wipe()
|
|
||||||
-- vim.api.nvim_buf_set_lines(buffer.bufnr, 1, -1, true, {})
|
|
||||||
-- print('jklajsdk')
|
|
||||||
-- print(vim.fn.deletebufline(buffer.bufnr, 1))
|
|
||||||
-- buffer:del()
|
|
||||||
buffer[1] = ''
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- -- FIXME :
|
||||||
|
-- -- buffer:wipe()
|
||||||
|
-- -- vim.api.nvim_buf_set_lines(buffer.bufnr, 1, -1, true, {})
|
||||||
|
-- -- print('jklajsdk')
|
||||||
|
-- -- print(vim.fn.deletebufline(buffer.bufnr, 1))
|
||||||
|
-- -- buffer:del()
|
||||||
|
-- buffer[1] = ''
|
||||||
|
|
||||||
---Display Result in hover window
|
---Display Result in hover window
|
||||||
---@param data TransData
|
---@param data TransData
|
||||||
---@param result TransResult
|
---@param result TransResult
|
||||||
---@overload fun(result:TransResult)
|
---@overload fun(result:TransResult)
|
||||||
function M:process(data, result)
|
function M:process(data, result)
|
||||||
if self.pin then return end
|
local buffer = self.buffer
|
||||||
|
print(vim.fn.deletebufline(buffer.bufnr, 1))
|
||||||
|
-- buffer[1] = ''
|
||||||
-- local node = Trans.util.node
|
-- local node = Trans.util.node
|
||||||
-- local it, t, f = node.item, node.text, node.format
|
-- local it, t, f = node.item, node.text, node.format
|
||||||
-- self.buffer:setline(it('hello', 'MoreMsg'))
|
-- self.buffer:setline(it('hello', 'MoreMsg'))
|
||||||
|
if self.pin then return end
|
||||||
|
|
||||||
local opts = self.opts
|
local opts = self.opts
|
||||||
if not self.buffer:is_valid() then self.buffer:init() end
|
if not buffer:is_valid() then buffer:init() end
|
||||||
|
|
||||||
if opts.auto_play then
|
if opts.auto_play then
|
||||||
(data.from == 'en' and data.str or result.definition[1]):play()
|
(data.from == 'en' and data.str or result.definition[1]):play()
|
||||||
@ -156,7 +154,7 @@ function M:process(data, result)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local window = self.window
|
local window = self.window
|
||||||
local display_size = Trans.util.display_size(self.buffer:lines(), opts.width)
|
local display_size = Trans.util.display_size(buffer:lines(), opts.width)
|
||||||
if window and window:is_valid() then
|
if window and window:is_valid() then
|
||||||
if opts.auto_resize then
|
if opts.auto_resize then
|
||||||
display_size.width = math.min(opts.width, display_size.width + opts.padding)
|
display_size.width = math.min(opts.width, display_size.width + opts.padding)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user