Trans.nvim/lua/Trans/window.lua

248 lines
6.5 KiB
Lua
Raw Normal View History

local api = vim.api
2023-01-31 11:45:45 +08:00
local new_content = require('Trans.content')
2023-01-31 22:29:40 +08:00
local new_animation = require('Trans.util.animation')
local busy = false
2023-01-31 22:29:40 +08:00
local function lock()
while busy do
vim.wait(50)
end
2023-01-31 22:29:40 +08:00
busy = true
end
2023-01-31 11:45:45 +08:00
---@class window
---@field winid integer 窗口的handle
---@field bufnr integer 窗口对应buffer的handle
---@field width integer 窗口当前的宽度
---@field height integer 窗口当前的高度
---@field hl integer 窗口highlight的namespace
---@field contents table[] 窗口内容的对象数组
---@type window
local window = {
set = function(self, option, value)
api.nvim_win_set_option(self.winid, option, value)
end,
set_height = function(self, height)
api.nvim_win_set_height(self.winid, height)
self.height = height
end,
set_width = function(self, width)
api.nvim_win_set_width(self.winid, width)
self.width = width
end,
bufset = function(self, option, value)
api.nvim_buf_set_option(self.bufnr, option, value)
end,
---@nodiscard
option = function(self, name)
return api.nvim_win_get_option(self.winid, name)
end,
map = function(self, key, operation)
vim.keymap.set('n', key, operation, {
buffer = self.bufnr,
silent = true,
})
end,
---@nodiscard
is_open = function(self)
2023-01-31 23:17:03 +08:00
return api.nvim_win_is_valid(self.winid)
end,
normal = function(self, key)
api.nvim_buf_call(self.bufnr, function()
vim.cmd([[normal! ]] .. key)
end)
end,
2023-01-21 14:02:38 +08:00
draw = function(self)
local offset = 0
for _, content in ipairs(self.contents) do
content:attach(offset)
offset = offset + content.size
end
end,
2023-01-30 20:09:57 +08:00
open = function(self, opts)
self:draw()
2023-01-31 22:29:40 +08:00
local wrap = self:option('wrap')
self:set('wrap', false)
2023-01-31 11:45:45 +08:00
opts = opts or {}
2023-01-30 20:09:57 +08:00
local animation = opts.animation or self.animation.open
2023-01-31 22:29:40 +08:00
local callback = function()
busy = false
self:set('wrap', wrap)
if opts.callback then
opts.callback()
end
2023-01-31 22:29:40 +08:00
end
2023-01-31 22:29:40 +08:00
lock()
if animation then
local interval = self.animation.interval
local field = ({
fold = 'height',
slid = 'width',
})[animation]
2023-01-31 23:17:03 +08:00
local method = api['nvim_win_set_' .. field]
local winid = self.winid
2023-01-31 22:29:40 +08:00
new_animation({
interval = interval,
times = self[field],
frame = function(_, times)
2023-01-31 23:17:03 +08:00
method(winid, times)
2023-01-31 22:29:40 +08:00
end,
callback = callback,
}):display()
else
2023-01-31 11:45:45 +08:00
callback()
end
end,
---安全的关闭窗口
2023-01-31 11:45:45 +08:00
try_close = function(self, opts)
opts = opts or {}
2023-01-31 22:29:40 +08:00
self:set('wrap', false)
if self:is_open() then
2023-01-31 22:29:40 +08:00
local callback = function()
api.nvim_win_close(self.winid, true)
self.winid = -1
busy = false
if opts.callback then
opts.callback()
end
2023-01-31 22:29:40 +08:00
if api.nvim_buf_is_valid(self.bufnr) and opts.wipeout then
api.nvim_buf_delete(self.bufnr, { force = true })
self.bufnr = -1
end
end
2023-01-31 22:29:40 +08:00
lock()
self.config = api.nvim_win_get_config(self.winid)
local animation = self.animation.close
if animation then
local interval = self.animation.interval
local field = ({
fold = 'height',
slid = 'width',
})[animation]
local target = self[field]
2023-01-31 23:17:03 +08:00
local method = api['nvim_win_set_' .. field]
local winid = self.winid
2023-01-31 22:29:40 +08:00
new_animation({
times = target,
frame = function(_, times)
2023-01-31 23:17:03 +08:00
method(winid, target - times)
2023-01-31 22:29:40 +08:00
end,
callback = callback,
interval = interval,
}):display()
else
2023-01-31 22:29:40 +08:00
callback()
end
end
2023-01-25 11:04:18 +08:00
end,
2023-01-31 11:45:45 +08:00
reopen = function(self, opts)
2023-01-31 22:29:40 +08:00
assert(self.bufnr ~= -1)
local entry = opts.entry or false
local win_opt = opts.win_opt or {}
local opt = opts.opt
2023-01-31 11:45:45 +08:00
self.config.win = nil
2023-01-31 22:29:40 +08:00
for k, v in pairs(win_opt) do
self.config[k] = v
end
self.winid = api.nvim_open_win(self.bufnr, entry, self.config)
2023-01-31 11:45:45 +08:00
self:open(opt)
2023-01-22 22:01:47 +08:00
end,
2023-01-31 23:17:03 +08:00
set_hl = function(self, name, opts)
api.nvim_set_hl(self.hl, name, opts)
2023-01-31 11:45:45 +08:00
end,
new_content = function(self)
local index = self.size + 1
2023-01-31 23:17:03 +08:00
self.size = index
2023-01-31 11:45:45 +08:00
self.contents[index] = new_content(self)
return self.contents[index]
end,
}
2023-01-31 11:45:45 +08:00
window.__index = window
---窗口对象的构造器
---@param entry boolean 光标初始化时是否应该进入窗口
---@param option table 需要设置的选项
---@return window win
---@nodiscard
return function(entry, option)
vim.validate {
entry = { entry, 'b' },
option = { option, 't' },
}
local opt = {
2023-01-31 11:45:45 +08:00
relative = option.relative,
width = option.width,
height = option.height,
border = option.border,
title = option.title,
col = option.col,
row = option.row,
2023-01-30 20:24:29 +08:00
title_pos = nil,
focusable = false,
2023-01-30 20:09:57 +08:00
zindex = option.zindex or 100,
style = 'minimal',
}
if opt.title then
opt.title_pos = 'center'
end
local bufnr = api.nvim_create_buf(false, true)
2023-01-26 23:40:18 +08:00
local ok, winid = pcall(api.nvim_open_win, bufnr, entry, opt)
if not ok then
error('open window faild: ' .. vim.inspect(opt))
end
local win
win = {
2023-01-30 20:09:57 +08:00
winid = winid,
bufnr = bufnr,
width = opt.width,
height = opt.height,
animation = option.animation,
hl = api.nvim_create_namespace('TransWinHl'),
2023-01-31 11:45:45 +08:00
size = 0,
contents = {}
}
2023-01-31 11:45:45 +08:00
---@diagnostic disable-next-line: param-type-mismatch
setmetatable(win, window)
win:bufset('filetype', 'Trans')
2023-01-21 00:24:58 +08:00
win:bufset('buftype', 'nofile')
2023-01-22 22:01:47 +08:00
api.nvim_win_set_hl_ns(win.winid, win.hl)
2023-01-25 14:56:52 +08:00
win:set_hl('Normal', { link = 'TransWin' })
win:set_hl('FloatBorder', { link = 'TransBorder' })
---@diagnostic disable-next-line: return-type-mismatch
return win
end