Files
input-form.nvim/lua/input-form/inputs/multiline.lua
2026-04-06 00:51:27 +03:00

91 lines
2.2 KiB
Lua

--- Multi-line text input component.
local config = require("input-form.config")
local utils = require("input-form.utils")
local M = {}
M.__index = M
--- Create a new multiline input from its spec.
---@param spec table { name, label, default?, height? }
---@return table
function M.new(spec)
local h = spec.height or config.options.multiline.height
local default = spec.default or ""
return setmetatable({
type = "multiline",
name = spec.name,
label = spec.label or spec.name,
_value = default,
_height = h,
buf = nil,
win = nil,
}, M)
end
function M:height()
return self._height
end
function M:is_bordered()
return true
end
function M:mount(layout)
self.buf = vim.api.nvim_create_buf(false, true)
vim.bo[self.buf].buftype = "nofile"
vim.bo[self.buf].bufhidden = "wipe"
vim.bo[self.buf].swapfile = false
utils.mark_form_buffer(self.buf)
local lines = vim.split(self._value, "\n", { plain = true })
vim.api.nvim_buf_set_lines(self.buf, 0, -1, false, lines)
local win_cfg = {
relative = "editor",
row = layout.row,
col = layout.col,
width = layout.width,
height = self._height,
style = "minimal",
focusable = true,
zindex = 50,
}
if layout.border then
win_cfg.border = layout.border
win_cfg.title = " " .. self.label .. " "
win_cfg.title_pos = "left"
end
self.win = vim.api.nvim_open_win(self.buf, false, win_cfg)
vim.wo[self.win].winhl =
"NormalFloat:InputFormField,FloatBorder:InputFormFieldBorder,FloatTitle:InputFormFieldTitle"
vim.wo[self.win].wrap = true
end
function M:value()
if self.buf and vim.api.nvim_buf_is_valid(self.buf) then
local lines = vim.api.nvim_buf_get_lines(self.buf, 0, -1, false)
return table.concat(lines, "\n")
end
return self._value
end
function M:unmount()
self._value = self:value()
if self.win and vim.api.nvim_win_is_valid(self.win) then
vim.api.nvim_win_close(self.win, true)
end
if self.buf and vim.api.nvim_buf_is_valid(self.buf) then
vim.api.nvim_buf_delete(self.buf, { force = true })
end
self.win = nil
self.buf = nil
end
function M:focus()
if self.win and vim.api.nvim_win_is_valid(self.win) then
vim.api.nvim_set_current_win(self.win)
end
end
return M