Skip to content

Commit a87982f

Browse files
committed
feat: lazy view
1 parent a612e6f commit a87982f

File tree

4 files changed

+322
-0
lines changed

4 files changed

+322
-0
lines changed

lua/lazy/view/colors.lua

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
local M = {}
2+
3+
M.colors = {
4+
Error = "Error",
5+
H1 = "Title",
6+
H2 = "Title",
7+
Muted = "Comment",
8+
Normal = "NormalFloat",
9+
ProgressDone = {
10+
bold = true,
11+
default = true,
12+
fg = "#ff007c",
13+
},
14+
ProgressTodo = "LineNr",
15+
Special = "@punctuation.special",
16+
}
17+
18+
M.did_setup = true
19+
20+
function M.set_hl()
21+
for hl_group, opts in pairs(M.colors) do
22+
hl_group = "Lazy" .. hl_group
23+
24+
if type(opts) == "string" then
25+
opts = {
26+
link = opts,
27+
}
28+
end
29+
30+
opts.default = true
31+
32+
vim.api.nvim_set_hl(0, hl_group, opts)
33+
end
34+
end
35+
36+
function M.setup()
37+
if M.did_setup then
38+
return
39+
end
40+
41+
M.did_setup = true
42+
43+
M.set_hl()
44+
vim.api.nvim_create_autocmd("ColorScheme", {
45+
callback = function()
46+
M.set_hl()
47+
end,
48+
})
49+
vim.api.nvim_create_autocmd("User", {
50+
pattern = "VeryLazy",
51+
callback = function()
52+
M.set_hl()
53+
end,
54+
})
55+
end
56+
57+
return M

lua/lazy/view/init.lua

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
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

lua/lazy/view/sections.lua

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---@param plugin LazyPlugin
2+
---@param filter fun(task:LazyTask):boolean?
3+
local function has_task(plugin, filter)
4+
if plugin.tasks then
5+
for _, task in ipairs(plugin.tasks) do
6+
if filter(task) then
7+
return true
8+
end
9+
end
10+
end
11+
end
12+
13+
return {
14+
{
15+
filter = function(plugin)
16+
return has_task(plugin, function(task)
17+
return task.error ~= nil
18+
end)
19+
end,
20+
title = "Failed",
21+
},
22+
{
23+
filter = function(plugin)
24+
return has_task(plugin, function(task)
25+
return task.running and task.type == "install"
26+
end)
27+
end,
28+
title = "Installing",
29+
},
30+
{
31+
filter = function(plugin)
32+
return has_task(plugin, function(task)
33+
return task.running and task.type == "update"
34+
end)
35+
end,
36+
title = "Updating",
37+
},
38+
{
39+
filter = function(plugin)
40+
return has_task(plugin, function(task)
41+
return task.running and task.type == "clean"
42+
end)
43+
end,
44+
title = "Cleaning",
45+
},
46+
{
47+
filter = function(plugin)
48+
return has_task(plugin, function(task)
49+
return task.running
50+
end)
51+
end,
52+
title = "Running",
53+
},
54+
{
55+
filter = function(plugin)
56+
return plugin.installed and not plugin.uri
57+
end,
58+
title = "Clean",
59+
},
60+
{
61+
filter = function(plugin)
62+
return not plugin.installed and not plugin.uri
63+
end,
64+
title = "Cleaned",
65+
},
66+
{
67+
filter = function(plugin)
68+
return plugin.loaded
69+
end,
70+
title = "Loaded",
71+
},
72+
{
73+
filter = function(plugin)
74+
return plugin.installed
75+
end,
76+
title = "Installed",
77+
},
78+
{
79+
filter = function()
80+
return true
81+
end,
82+
title = "Not Installed",
83+
},
84+
}

lua/lazy/view/text.lua

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
---@alias TextString {str: string, hl?:string, extmark?:table}
2+
---@alias TextLine TextString[]
3+
4+
---@class Text
5+
---@field _lines TextLine[]
6+
local Text = {}
7+
8+
function Text.new()
9+
local self = setmetatable({}, {
10+
__index = Text,
11+
})
12+
self._lines = {}
13+
14+
return self
15+
end
16+
17+
---@param str string
18+
---@param hl string|table
19+
function Text:append(str, hl)
20+
if #self._lines == 0 then
21+
self:nl()
22+
end
23+
24+
table.insert(self._lines[#self._lines], {
25+
str = str,
26+
hl = type(hl) == "string" and hl or nil,
27+
extmark = type(hl) == "table" and hl or nil,
28+
})
29+
30+
return self
31+
end
32+
33+
function Text:nl()
34+
table.insert(self._lines, {})
35+
return self
36+
end
37+
38+
function Text:render(buf, padding)
39+
padding = padding or 0
40+
local lines = {}
41+
42+
for _, line in ipairs(self._lines) do
43+
local str = (" "):rep(padding)
44+
45+
for _, segment in ipairs(line) do
46+
str = str .. segment.str
47+
end
48+
49+
table.insert(lines, str)
50+
end
51+
52+
vim.api.nvim_buf_set_lines(buf, 0, -1, false, lines)
53+
54+
for l, line in ipairs(self._lines) do
55+
local col = padding
56+
57+
for _, segment in ipairs(line) do
58+
local width = vim.fn.strlen(segment.str)
59+
60+
if segment.hl then
61+
vim.api.nvim_buf_set_extmark(buf, Config.ns, l - 1, col, {
62+
hl_group = segment.hl,
63+
end_col = col + width,
64+
})
65+
end
66+
67+
if segment.extmark then
68+
vim.api.nvim_buf_set_extmark(buf, Config.ns, l - 1, col, segment.extmark)
69+
end
70+
71+
col = col + width
72+
end
73+
end
74+
end
75+
76+
function Text:trim()
77+
while #self._lines > 0 and #self._lines[1] == 0 do
78+
table.remove(self._lines, 1)
79+
end
80+
81+
while #self._lines > 0 and #self._lines[#self._lines] == 0 do
82+
table.remove(self._lines)
83+
end
84+
end
85+
86+
return Text

0 commit comments

Comments
 (0)