Trans.nvim/lua/Trans/core/window.lua

120 lines
3.0 KiB
Lua
Raw Normal View History

local M = {}
local api = vim.api
local conf = require('Trans').conf
local util = require('Trans.util')
2023-01-14 10:29:01 +08:00
2023-01-14 14:22:25 +08:00
M.id = 0
M.ns = api.nvim_create_namespace('Trans')
M.bufnr = api.nvim_create_buf(false, true)
2023-01-14 01:57:12 +08:00
function M.init(view)
vim.validate {
view = { view, 's' }
}
M.view = view
local is_float = view == 'float'
2023-01-14 01:57:12 +08:00
M.height = conf.window[view].height
M.width = conf.window[view].width
local opts = {
relative = is_float and 'editor' or 'cursor',
2023-01-14 01:57:12 +08:00
width = M.width,
height = M.height,
style = 'minimal',
border = conf.window.border,
2023-01-14 10:29:01 +08:00
title = {
2023-01-14 14:22:25 +08:00
{ '', 'TransTitleRound' },
{ conf.icon.title .. ' Trans', 'TransTitle' },
2023-01-14 14:22:25 +08:00
{ '', 'TransTitleRound' },
2023-01-14 10:29:01 +08:00
},
2023-01-14 01:57:12 +08:00
title_pos = 'center',
focusable = true,
zindex = 100,
}
if is_float then
2023-01-14 01:57:12 +08:00
opts.row = math.floor((vim.o.lines - M.height) / 2)
opts.col = math.floor((vim.o.columns - M.width) / 2)
else
opts.row = 2
opts.col = 2
end
2023-01-14 19:35:13 +08:00
M.id = api.nvim_open_win(M.bufnr, is_float, opts)
2023-01-14 01:57:12 +08:00
end
M.draw = function(content)
api.nvim_buf_set_option(M.bufnr, 'modifiable', true)
2023-01-14 01:57:12 +08:00
api.nvim_buf_set_lines(M.bufnr, 0, -1, false, content.lines)
2023-01-14 01:57:12 +08:00
if content.highlights then
for l, _hl in pairs(content.highlights) do
for _, hl in ipairs(_hl) do
api.nvim_buf_add_highlight(M.bufnr, M.ns, hl.name, l - 1, hl._start, hl._end) -- zero index
end
end
end
M.load_opts()
end
2023-01-14 01:57:12 +08:00
M.load_opts = function()
2023-01-14 01:57:12 +08:00
api.nvim_buf_set_option(M.bufnr, 'modifiable', false)
api.nvim_buf_set_option(M.bufnr, 'filetype', 'Trans')
2023-01-14 19:35:13 +08:00
api.nvim_win_set_option(M.id, 'winhl', 'Normal:TransWin,FloatBorder:TransBorder')
M['load_' .. M.view .. '_opts']()
end
2023-01-14 14:22:25 +08:00
M.load_hover_opts = function()
local keymap = conf.keymap[M.view]
local action = require('Trans.core.action')
2023-01-14 01:57:12 +08:00
for act, key in pairs(keymap) do
vim.keymap.set('n', key, action[act])
2023-01-14 01:57:12 +08:00
end
2023-01-14 14:22:25 +08:00
2023-01-14 01:57:12 +08:00
api.nvim_create_autocmd(
{ 'InsertEnter', 'CursorMoved', 'BufLeave', }, {
buffer = 0,
once = true,
callback = function()
if api.nvim_win_is_valid(M.id) then
api.nvim_win_close(M.id, true)
end
end,
})
2023-01-14 19:35:13 +08:00
api.nvim_win_set_option(M.id, 'wrap', M.view ~= 'float')
local height = util.get_height(M.bufnr, M.id)
if M.height > height then
api.nvim_win_set_height(M.id, height)
end
end
M.load_float_opts = function()
vim.keymap.set('n', 'q', function()
if api.nvim_win_is_valid(M.id) then
api.nvim_win_close(M.id, true)
end
end, { buffer = M.bufnr, silent = true })
2023-01-14 01:57:12 +08:00
vim.keymap.set('n', '<Esc>', function()
if api.nvim_win_is_valid(M.id) then
api.nvim_win_close(M.id, true)
end
end, { buffer = M.bufnr, silent = true })
2023-01-14 01:57:12 +08:00
end
M.show = function()
M.init(M.view or 'float')
M.load_opts()
2023-01-14 14:22:25 +08:00
end
2023-01-14 10:29:01 +08:00
2023-01-14 01:57:12 +08:00
return M