refactor: 将title和content的字变成了contents的数组,同时不再自动设置modifiable

This commit is contained in:
JuanZoran 2023-01-21 14:26:33 +08:00
parent e058985bf3
commit eb10830eb5
4 changed files with 38 additions and 42 deletions

View File

@ -41,15 +41,16 @@ local content = {
self.size = 0 self.size = 0
end, end,
attach = function(self) ---将内容连接上对应的窗口
---@param self table content对象
---@param offset integer 起始行
attach = function(self, offset)
if self.size == 0 then if self.size == 0 then
return return
end end
self.window:bufset('modifiable', true) self.window:bufset('modifiable', true)
local window = self.window local window = self.window
local offset = self.offset
api.nvim_buf_set_lines(window.bufnr, offset, offset + 1, true, self.lines) api.nvim_buf_set_lines(window.bufnr, offset, offset + 1, true, self.lines)
for _, hl in ipairs(self.highlights) do for _, hl in ipairs(self.highlights) do
@ -153,13 +154,12 @@ local content = {
---content的构造函数 ---content的构造函数
---@param window table 链接的窗口 ---@param window table 链接的窗口
---@return table 构造好的content ---@return table 构造好的content
return function(window, offset) return function(window)
vim.validate { vim.validate {
window = { window, 't' }, window = { window, 't' },
} }
return setmetatable({ return setmetatable({
modifiable = true, modifiable = true,
offset = offset or 0,
window = window, window = window,
size = 0, size = 0,
hl_size = 0, hl_size = 0,

View File

@ -2,7 +2,7 @@ local m_window
local m_result local m_result
local function set_title() local function set_title()
local title = m_window.title local title = m_window.contents[1]
local github = 'https://github.com/JuanZoran/Trans.nvim' local github = 'https://github.com/JuanZoran/Trans.nvim'
-- TODO :config this -- TODO :config this
@ -10,7 +10,7 @@ local function set_title()
end end
local action = { local action = {
quit = function () quit = function()
m_window:try_close() m_window:try_close()
end, end,
} }

View File

@ -275,7 +275,7 @@ return function(word)
m_window = require("Trans.window")(false, opt) m_window = require("Trans.window")(false, opt)
m_window.animation = hover.animation m_window.animation = hover.animation
m_content = m_window.content m_content = m_window.contents[1]
if m_result then if m_result then
for _, field in ipairs(conf.order) do for _, field in ipairs(conf.order) do
@ -287,7 +287,12 @@ return function(word)
end end
m_window:draw() m_window:draw()
m_window.height = m_content:actual_height(true)
local height = m_content:actual_height(true)
if height < m_window.height then
m_window:set_height(height)
end
m_window:open(function() m_window:open(function()
m_window:set('wrap', true) m_window:set('wrap', true)
end) end)

View File

@ -85,8 +85,11 @@ local window = {
---@param self table 窗口的对象 ---@param self table 窗口的对象
draw = function(self) draw = function(self)
-- TODO : -- TODO :
self.title:attach() local offset = 0
self.content:attach() for _, content in ipairs(self.contents) do
content:attach(offset)
offset = offset + content.size
end
end, end,
open = function(self, callback) open = function(self, callback)
@ -193,20 +196,18 @@ local window = {
} }
---@class window ---@class window
---@field title table 窗口不变的title对象,载入后不可修改
---@field winid integer 窗口的handle ---@field winid integer 窗口的handle
---@field bufnr integer 窗口对应buffer的handle ---@field bufnr integer 窗口对应buffer的handle
---@field content table 窗口内容的对象, 和title一样是content类
---@field width integer 窗口当前的宽度 ---@field width integer 窗口当前的宽度
---@field height integer 窗口当前的高度 ---@field height integer 窗口当前的高度
---@field hl integer 窗口highlight的namespace ---@field hl integer 窗口highlight的namespace
---@field contents table[] 窗口内容的对象数组
---窗口对象的构造器 ---窗口对象的构造器
---@param entry boolean 光标初始化时是否应该进入窗口 ---@param entry boolean 光标初始化时是否应该进入窗口
---@param option table 需要设置的选项 ---@param option table 需要设置的选项
---@return window ---@return window win
---@nodiscard ---@nodiscard
return function(entry, option) return function(entry, option)
vim.validate { vim.validate {
@ -235,34 +236,24 @@ return function(entry, option)
local bufnr = api.nvim_create_buf(false, true) local bufnr = api.nvim_create_buf(false, true)
local winid = api.nvim_open_win(bufnr, entry, opt) local winid = api.nvim_open_win(bufnr, entry, opt)
local win = setmetatable({
local win
win = {
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'),
}, contents = setmetatable({}, {
{ __index = function(tbl, key) __index = function(self, key)
if key == 'content' then assert(type(key) == 'number')
if tbl.title then self[key] = require('Trans.content')(win)
tbl.content = require('Trans.content')(tbl, tbl.title.size) return self[key]
tbl.title.modifiable = false
else
tbl.content = require('Trans.content')(tbl)
end end
return tbl.content })
}
elseif key == 'title' then
tbl.title = require('Trans.content')(tbl, 0)
return tbl.title
else
return window[key]
end
end })
setmetatable(win, { __index = window })
win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder') win:set('winhl', 'Normal:TransWin,FloatBorder:TransBorder')
win:bufset('filetype', 'Trans') win:bufset('filetype', 'Trans')
win:bufset('buftype', 'nofile') win:bufset('buftype', 'nofile')