refactor: implement waitting window animation

This commit is contained in:
JuanZoran 2023-03-12 23:17:36 +08:00
parent 3c28af5314
commit 9d0aca954d
3 changed files with 42 additions and 13 deletions

View File

@ -1,5 +1,4 @@
local Trans = require('Trans') local Trans = require('Trans')
local style = Trans.conf.style
local M = Trans.metatable('frontend.hover') local M = Trans.metatable('frontend.hover')
@ -25,13 +24,38 @@ end
function M.clear_dead_instance() function M.clear_dead_instance()
for i = #M.queue, 1, -1 do for i = #M.queue, 1, -1 do
if not M.queue[i]:is_available() then if not M.queue[i]:is_available() then
--- FIXME :Del Buffer or ... ?
table.remove(M.queue, i) table.remove(M.queue, i)
end end
end end
end end
function M.new_window() ---Init hover window
---@param opts table @window options: width, height
---@return unknown
function M:init_window(opts)
opts = opts or {}
local win_opts = opts.win_opts or {}
opts.win_opts = win_opts
local m_opts = self.opts
opts.buffer = self.buffer
win_opts.col = 1
win_opts.row = 1
win_opts.relative = 'cursor'
win_opts.title = m_opts.title
if win_opts.title then
win_opts.title_pos = 'center'
end
win_opts.width = win_opts.width or m_opts.width
win_opts.height = win_opts.height or m_opts.height
opts.animation = m_opts.animation
self.window = Trans.wrapper.window.new(opts)
return self.window
end end
function M:wait(tbl, name, timeout) function M:wait(tbl, name, timeout)
@ -44,12 +68,19 @@ function M:wait(tbl, name, timeout)
return spinner[times % size + 1] .. ('.'):rep(times) return spinner[times % size + 1] .. ('.'):rep(times)
end end
self:init_window({
win_opts = {
height = 1,
width = wid,
}
})
local interval = math.floor(timeout / wid) local interval = math.floor(timeout / wid)
local pause = Trans.util.pause
for i = 1, wid do for i = 1, wid do
if tbl[name] ~= nil then break end if tbl[name] ~= nil then break end
print(update_text(i)) self.buffer[1] = update_text(i)
Trans.util.pause(interval) pause(interval)
end end
-- TODO : End waitting animation -- TODO : End waitting animation

View File

@ -130,13 +130,6 @@ function buffer:addline(nodes, index)
end end
end end
function buffer:init()
self.bufnr = api.nvim_create_buf(false, false)
self:set('filetype', 'Trans')
self:set('buftype', 'nofile')
self.size = 0
end
---@private ---@private
buffer.__index = function(self, key) buffer.__index = function(self, key)
local res = buffer[key] local res = buffer[key]
@ -158,10 +151,16 @@ end
---buffer constructor ---buffer constructor
---@return buf ---@return buf
function buffer.new() function buffer.new()
return setmetatable({ local new_buf = setmetatable({
bufnr = -1, bufnr = -1,
size = 0, size = 0,
}, buffer) }, buffer)
new_buf.bufnr = api.nvim_create_buf(false, false)
new_buf:set('filetype', 'Trans')
new_buf:set('buftype', 'nofile')
return new_buf
end end
return buffer return buffer

View File

@ -113,7 +113,6 @@ function window:set_hl(name, opts)
end end
function window:open() function window:open()
assert(self.winid == nil, 'window already opened')
local win_opts = self.win_opts local win_opts = self.win_opts
local open_animation = self.animation.open local open_animation = self.animation.open
if open_animation then if open_animation then