|
| 1 | +local Render = require("lazy.view.render") |
| 2 | + |
| 3 | +local M = {} |
| 4 | + |
| 5 | +function M.setup() |
| 6 | + require("lazy.view.commands").setup() |
| 7 | + require("lazy.view.colors").setup() |
| 8 | +end |
| 9 | + |
| 10 | +function M.show() |
| 11 | + require("lazy.view.colors").setup() |
| 12 | + |
| 13 | + if M._buf and vim.api.nvim_buf_is_valid(M._buf) then |
| 14 | + return |
| 15 | + end |
| 16 | + |
| 17 | + local buf = vim.api.nvim_create_buf(false, false) |
| 18 | + M._buf = buf |
| 19 | + local vpad = 6 |
| 20 | + local hpad = 20 |
| 21 | + local opts = { |
| 22 | + relative = "editor", |
| 23 | + style = "minimal", |
| 24 | + width = math.min(vim.o.columns - hpad * 2, 150), |
| 25 | + height = math.min(vim.o.lines - vpad * 2, 50), |
| 26 | + } |
| 27 | + opts.row = (vim.o.lines - opts.height) / 2 |
| 28 | + opts.col = (vim.o.columns - opts.width) / 2 |
| 29 | + local win = vim.api.nvim_open_win(buf, true, opts) |
| 30 | + |
| 31 | + vim.api.nvim_set_current_win(win) |
| 32 | + |
| 33 | + vim.bo[buf].buftype = "nofile" |
| 34 | + vim.bo[buf].bufhidden = "wipe" |
| 35 | + vim.wo[win].conceallevel = 3 |
| 36 | + vim.wo[win].spell = false |
| 37 | + vim.wo[win].wrap = true |
| 38 | + vim.wo[win].winhighlight = "Normal:LazyNormal" |
| 39 | + |
| 40 | + local function close() |
| 41 | + M._buf = nil |
| 42 | + |
| 43 | + if vim.api.nvim_buf_is_valid(buf) then |
| 44 | + vim.api.nvim_buf_delete(buf, { |
| 45 | + force = true, |
| 46 | + }) |
| 47 | + end |
| 48 | + |
| 49 | + if vim.api.nvim_win_is_valid(win) then |
| 50 | + vim.api.nvim_win_close(win, true) |
| 51 | + end |
| 52 | + end |
| 53 | + |
| 54 | + vim.keymap.set("n", "<ESC>", close, { |
| 55 | + nowait = true, |
| 56 | + buffer = buf, |
| 57 | + }) |
| 58 | + vim.keymap.set("n", "q", close, { |
| 59 | + nowait = true, |
| 60 | + buffer = buf, |
| 61 | + }) |
| 62 | + vim.api.nvim_create_autocmd({ |
| 63 | + "BufDelete", |
| 64 | + "BufLeave", |
| 65 | + "BufHidden", |
| 66 | + }, { |
| 67 | + once = true, |
| 68 | + buffer = buf, |
| 69 | + callback = close, |
| 70 | + }) |
| 71 | + |
| 72 | + local render = Util.throttle(30, function() |
| 73 | + vim.bo[buf].modifiable = true |
| 74 | + |
| 75 | + Render.render_plugins(buf, win, 2) |
| 76 | + |
| 77 | + vim.bo[buf].modifiable = false |
| 78 | + |
| 79 | + vim.cmd.redraw() |
| 80 | + end) |
| 81 | + |
| 82 | + vim.api.nvim_create_autocmd("User", { |
| 83 | + pattern = "LazyRender", |
| 84 | + callback = function() |
| 85 | + if not vim.api.nvim_buf_is_valid(buf) then |
| 86 | + return true |
| 87 | + end |
| 88 | + |
| 89 | + render() |
| 90 | + end, |
| 91 | + }) |
| 92 | + render() |
| 93 | +end |
| 94 | + |
| 95 | +return M |
0 commit comments