Trans.nvim/lua/Trans/util/animation.lua

57 lines
1.2 KiB
Lua
Raw Normal View History

2023-01-31 23:17:03 +08:00
local display = function(self)
local callback = self.callback or function()
2023-01-31 22:29:40 +08:00
2023-01-31 23:17:03 +08:00
end
2023-01-31 22:29:40 +08:00
2023-01-31 23:17:03 +08:00
if self.sync then
local times = self.times
if times then
for i = 1, self.times do
if self.run then
self:frame(i)
2023-01-31 22:29:40 +08:00
end
end
2023-01-31 22:29:40 +08:00
else
2023-01-31 23:17:03 +08:00
while self.run do
self:frame()
end
end
callback()
2023-01-31 23:17:03 +08:00
else
local frame
if self.times then
local target = self.times
local times = 0
frame = function()
if self.run and times < target then
times = times + 1
self:frame(times)
vim.defer_fn(frame, self.interval)
else
callback()
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
2023-01-31 23:17:03 +08:00
else
frame = function()
if self.run then
self:frame()
vim.defer_fn(frame, self.interval)
else
callback()
2023-01-31 22:29:40 +08:00
end
end
end
2023-01-31 23:17:03 +08:00
frame()
end
end
2023-01-31 22:29:40 +08:00
return function(opts)
opts.run = true
2023-01-31 23:17:03 +08:00
opts.display = display
return opts
2023-01-31 22:29:40 +08:00
end