feat: add slid and fold window animation style!
This commit is contained in:
parent
daad638c03
commit
54f8869a70
@ -21,7 +21,11 @@ M.conf = {
|
|||||||
pageup = '[[',
|
pageup = '[[',
|
||||||
pagedown = ']]',
|
pagedown = ']]',
|
||||||
},
|
},
|
||||||
animation = 13,
|
animation = {
|
||||||
|
open = 'slid',
|
||||||
|
close = 'slid',
|
||||||
|
interval = 12,
|
||||||
|
}
|
||||||
},
|
},
|
||||||
float = {
|
float = {
|
||||||
width = 0.8,
|
width = 0.8,
|
||||||
@ -35,7 +39,11 @@ M.conf = {
|
|||||||
keymap = {
|
keymap = {
|
||||||
quit = 'q',
|
quit = 'q',
|
||||||
},
|
},
|
||||||
animation = 9,
|
animation = {
|
||||||
|
open = 'slid',
|
||||||
|
close = 'slid',
|
||||||
|
interval = 8,
|
||||||
|
}
|
||||||
},
|
},
|
||||||
order = {
|
order = {
|
||||||
-- offline = {
|
-- offline = {
|
||||||
|
@ -204,6 +204,7 @@ return function(word)
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_window = require("Trans.window")(false, opt)
|
m_window = require("Trans.window")(false, opt)
|
||||||
|
m_window.animation = hover.animation
|
||||||
m_content = m_window.content
|
m_content = m_window.content
|
||||||
|
|
||||||
if m_result then
|
if m_result then
|
||||||
@ -231,6 +232,6 @@ return function(word)
|
|||||||
if m_window:is_open() then
|
if m_window:is_open() then
|
||||||
action[act]()
|
action[act]()
|
||||||
end
|
end
|
||||||
end)
|
end, { buffer = true, silent = true })
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
local api = vim.api
|
local api = vim.api
|
||||||
|
|
||||||
|
|
||||||
---@diagnostic disable-next-line: duplicate-set-field
|
---@diagnostic disable-next-line: duplicate-set-field
|
||||||
function string:width()
|
function string:width()
|
||||||
---@diagnostic disable-next-line: param-type-mismatch
|
---@diagnostic disable-next-line: param-type-mismatch
|
||||||
return vim.fn.strwidth(self)
|
return vim.fn.strwidth(self)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@type window
|
||||||
local window = {
|
local window = {
|
||||||
---设置窗口的选项
|
---设置窗口的选项
|
||||||
---@param self table 需要设置的window
|
---@param self table 需要设置的window
|
||||||
@ -93,6 +95,37 @@ local window = {
|
|||||||
self:set_width(self.content.lines[1]:width())
|
self:set_width(self.content.lines[1]:width())
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
self:open(10)
|
||||||
|
end,
|
||||||
|
|
||||||
|
open = function(self)
|
||||||
|
local animation = self.animation
|
||||||
|
if animation.open then
|
||||||
|
local status = self:option('wrap')
|
||||||
|
self:set('wrap', false)
|
||||||
|
|
||||||
|
local handler
|
||||||
|
local function wrap(name, target)
|
||||||
|
local count = 0
|
||||||
|
return function()
|
||||||
|
if count < self[target] then
|
||||||
|
count = count + 1
|
||||||
|
api['nvim_win_set_' .. target](self.winid, count)
|
||||||
|
vim.defer_fn(handler[name], animation.interval)
|
||||||
|
else
|
||||||
|
self:set('wrap', status)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
handler = {
|
||||||
|
slid = wrap('slid', 'width'),
|
||||||
|
fold = wrap('fold', 'height'),
|
||||||
|
}
|
||||||
|
|
||||||
|
handler[animation.open]()
|
||||||
|
end
|
||||||
end,
|
end,
|
||||||
|
|
||||||
---**重新绘制内容**(标题不变)
|
---**重新绘制内容**(标题不变)
|
||||||
@ -102,37 +135,57 @@ local window = {
|
|||||||
end,
|
end,
|
||||||
|
|
||||||
---安全的关闭窗口
|
---安全的关闭窗口
|
||||||
---@param self table 窗口对象
|
try_close = function(self)
|
||||||
---@param interval integer 动画的间隔
|
|
||||||
try_close = function(self, interval)
|
|
||||||
vim.validate {
|
|
||||||
interval = { interval, 'n' }
|
|
||||||
}
|
|
||||||
|
|
||||||
if self:is_open() then
|
if self:is_open() then
|
||||||
local function narrow()
|
if self.animation.close then
|
||||||
if self.height > 1 then
|
local animation = self.animation
|
||||||
self.height = self.height - 1
|
self:set('wrap', false)
|
||||||
api.nvim_win_set_height(self.winid, self.height)
|
|
||||||
vim.defer_fn(narrow, interval)
|
local handler
|
||||||
|
local function wrap(name, target)
|
||||||
|
return function()
|
||||||
|
if self[target] > 1 then
|
||||||
|
self[target] = self[target] - 1
|
||||||
|
api['nvim_win_set_' .. target](self.winid, self[target])
|
||||||
|
vim.defer_fn(handler[name], animation.interval)
|
||||||
else
|
else
|
||||||
-- Wait animation done
|
|
||||||
vim.defer_fn(function()
|
vim.defer_fn(function()
|
||||||
api.nvim_win_close(self.winid, true)
|
api.nvim_win_close(self.winid, true)
|
||||||
self.winid = -1
|
self.winid = -1
|
||||||
end, interval + 2)
|
end, animation.interval + 2)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
narrow()
|
handler = {
|
||||||
|
slid = wrap('slid', 'width'),
|
||||||
|
fold = wrap('fold', 'height'),
|
||||||
|
}
|
||||||
|
|
||||||
|
handler[animation.close]()
|
||||||
|
|
||||||
|
else
|
||||||
|
api.nvim_win_close(self.winid, true)
|
||||||
|
self.winid = -1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
---@class window
|
||||||
|
---@field title table 窗口不变的title对象,载入后不可修改
|
||||||
|
---@field winid integer 窗口的handle
|
||||||
|
---@field bufnr integer 窗口对应buffer的handle
|
||||||
|
---@field content table 窗口内容的对象, 和title一样是content类
|
||||||
|
---@field width integer 窗口当前的宽度
|
||||||
|
---@field height integer 窗口当前的高度
|
||||||
|
---@field hl integer 窗口highlight的namespace
|
||||||
|
|
||||||
|
|
||||||
---窗口对象的构造器
|
---窗口对象的构造器
|
||||||
---@param entry boolean 光标初始化时是否应该进入窗口
|
---@param entry boolean 光标初始化时是否应该进入窗口
|
||||||
---@param option table 需要设置的选项
|
---@param option table 需要设置的选项
|
||||||
---@return table
|
---@return window
|
||||||
---@nodiscard
|
---@nodiscard
|
||||||
return function(entry, option)
|
return function(entry, option)
|
||||||
vim.validate {
|
vim.validate {
|
||||||
@ -161,10 +214,10 @@ return function(entry, option)
|
|||||||
local winid = api.nvim_open_win(bufnr, entry, opt)
|
local winid = api.nvim_open_win(bufnr, entry, opt)
|
||||||
|
|
||||||
local win = setmetatable({
|
local win = setmetatable({
|
||||||
title = nil,
|
|
||||||
content = nil,
|
|
||||||
winid = winid,
|
winid = winid,
|
||||||
bufnr = bufnr,
|
bufnr = bufnr,
|
||||||
|
title = nil,
|
||||||
|
content = nil,
|
||||||
width = opt.width,
|
width = opt.width,
|
||||||
height = opt.height,
|
height = opt.height,
|
||||||
hl = api.nvim_create_namespace('TransWinHl'),
|
hl = api.nvim_create_namespace('TransWinHl'),
|
||||||
@ -191,5 +244,7 @@ return function(entry, option)
|
|||||||
win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder')
|
win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder')
|
||||||
win:bufset('bufhidden', 'wipe')
|
win:bufset('bufhidden', 'wipe')
|
||||||
win:bufset('filetype', 'Trans')
|
win:bufset('filetype', 'Trans')
|
||||||
|
|
||||||
|
---@diagnostic disable-next-line: return-type-mismatch
|
||||||
return win
|
return win
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user