Trans.nvim/lua/Trans/util/display.lua

49 lines
1.0 KiB
Lua
Raw Normal View History

return function(opts)
local target = opts.times
opts.run = target ~= 0
2023-01-31 22:29:40 +08:00
---@type function[]
local tasks = {}
local function do_task()
for _, task in ipairs(tasks) do
task()
end
2023-01-31 23:17:03 +08:00
end
2023-01-31 22:29:40 +08:00
local frame
if target then
local times = 0
frame = function()
if opts.run and times < target then
times = times + 1
opts:frame(times)
vim.defer_fn(frame, opts.interval)
else
do_task()
2023-01-31 23:17:03 +08:00
end
end
else
frame = function()
if opts.run then
opts:frame()
vim.defer_fn(frame, opts.interval)
else
do_task()
2023-01-31 23:17:03 +08:00
end
end
end
frame()
2023-01-31 22:29:40 +08:00
---任务句柄, 如果任务结束了则立即执行, 否则立即执行
---@param task function
return function(task)
if opts.run then
tasks[#tasks + 1] = task
2023-01-31 23:17:03 +08:00
else
task()
2023-01-31 22:29:40 +08:00
end
2023-01-31 23:17:03 +08:00
end
2023-01-31 22:29:40 +08:00
end