Skip to content

Commit 65cd28e

Browse files
committed
feat(ui): added update checker
1 parent 71e4b92 commit 65cd28e

File tree

5 files changed

+64
-1
lines changed

5 files changed

+64
-1
lines changed

lua/lazy/core/config.lua

+10
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,13 @@ M.defaults = {
5050
},
5151
throttle = 20, -- how frequently should the ui process render events
5252
},
53+
checker = {
54+
-- lazy can automatically check for updates
55+
enabled = false,
56+
concurrency = 10, -- set to 1 to very slowly check for updates
57+
notify = true, -- get a notification if new updates are found
58+
frequency = 3600, -- every hour
59+
},
5360
performance = {
5461
---@type LazyCacheConfig
5562
cache = nil,
@@ -102,6 +109,9 @@ function M.setup(spec, opts)
102109
require("lazy.core.cache").autosave()
103110
require("lazy.view").setup()
104111
require("lazy.manage.reloader").enable()
112+
if M.options.checker.enabled then
113+
require("lazy.manage.checker").start()
114+
end
105115
end,
106116
})
107117

lua/lazy/core/plugin.lua

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ local M = {}
1616
---@field dirty? boolean
1717
---@field updated? {from:string, to:string}
1818
---@field is_local boolean
19+
---@field has_updates? boolean
1920
---@field cloned? boolean
2021
---@field dep? boolean True if this plugin is only in the spec as a dependency
2122

lua/lazy/manage/checker.lua

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
local Config = require("lazy.core.config")
2+
local Manage = require("lazy.manage")
3+
local Util = require("lazy.util")
4+
local Git = require("lazy.manage.git")
5+
6+
local M = {}
7+
8+
M.running = false
9+
M.updated = {}
10+
11+
function M.start()
12+
M.fast_check()
13+
M.check()
14+
end
15+
16+
function M.fast_check()
17+
for _, plugin in pairs(Config.plugins) do
18+
local info = Git.info(plugin.dir)
19+
local target = Git.get_target(plugin)
20+
if info and target and info.commit ~= target.commit then
21+
plugin._.has_updates = true
22+
end
23+
end
24+
M.report()
25+
end
26+
27+
function M.check()
28+
Manage.check({
29+
show = false,
30+
concurrency = Config.options.checker.concurrency,
31+
}):wait(function()
32+
M.report()
33+
vim.defer_fn(M.check, Config.options.checker.frequency * 1000)
34+
end)
35+
end
36+
37+
function M.report()
38+
local lines = {}
39+
for _, plugin in pairs(Config.plugins) do
40+
if plugin._.has_updates and not vim.tbl_contains(M.updated, plugin.name) then
41+
table.insert(lines, "- **" .. plugin.name .. "**")
42+
table.insert(M.updated, plugin.name)
43+
end
44+
end
45+
if #lines > 0 and Config.options.checker.notify then
46+
table.insert(lines, 1, "# Plugin Updates")
47+
Util.info(lines)
48+
end
49+
end
50+
51+
return M

lua/lazy/manage/task/git.lua

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ M.log = {
3131
local info = assert(Git.info(self.plugin.dir))
3232
local target = assert(Git.get_target(self.plugin))
3333
assert(target.commit, self.plugin.name .. " " .. target.branch)
34+
self.plugin._.has_updates = target.commit ~= info.commit
3435
table.insert(args, info.commit .. ".." .. target.commit)
3536
else
3637
vim.list_extend(args, opts.args or Config.options.git.log)

lua/lazy/view/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function M.show(mode)
4242
require("lazy.view.colors").setup()
4343

4444
if M._buf and vim.api.nvim_buf_is_valid(M._buf) then
45-
vim.api.nvim_win_set_cursor(M._win, { 1, 0 })
45+
-- vim.api.nvim_win_set_cursor(M._win, { 1, 0 })
4646
vim.cmd([[do User LazyRender]])
4747
return
4848
end

0 commit comments

Comments
 (0)