Merge remote-tracking branch 'origin/main' into docs/sync-s3-auto-auth
This commit is contained in:
commit
8abb7393fc
5 changed files with 127 additions and 2 deletions
|
|
@ -1501,6 +1501,7 @@ Configuration: ~
|
||||||
vim.g.pending = {
|
vim.g.pending = {
|
||||||
forge = {
|
forge = {
|
||||||
close = false,
|
close = false,
|
||||||
|
validate = false,
|
||||||
warn_missing_cli = true,
|
warn_missing_cli = true,
|
||||||
github = {
|
github = {
|
||||||
icon = '',
|
icon = '',
|
||||||
|
|
@ -1527,6 +1528,10 @@ Top-level fields: ~
|
||||||
done on buffer open. Only forges with an explicit
|
done on buffer open. Only forges with an explicit
|
||||||
per-forge key (e.g. `github = {}`) are checked;
|
per-forge key (e.g. `github = {}`) are checked;
|
||||||
unconfigured forges are skipped entirely.
|
unconfigured forges are skipped entirely.
|
||||||
|
{validate} (boolean, default: false) When true, new or changed
|
||||||
|
forge refs are validated on `:w` by fetching metadata.
|
||||||
|
Logs a warning if the ref is not found, auth fails, or
|
||||||
|
the CLI is missing.
|
||||||
{warn_missing_cli} (boolean, default: true) When true, warns once per
|
{warn_missing_cli} (boolean, default: true) When true, warns once per
|
||||||
forge per session if the CLI is missing or fails.
|
forge per session if the CLI is missing or fails.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -41,6 +41,7 @@
|
||||||
|
|
||||||
---@class pending.ForgeConfig
|
---@class pending.ForgeConfig
|
||||||
---@field close? boolean
|
---@field close? boolean
|
||||||
|
---@field validate? boolean
|
||||||
---@field warn_missing_cli? boolean
|
---@field warn_missing_cli? boolean
|
||||||
---@field [string] pending.ForgeInstanceConfig
|
---@field [string] pending.ForgeInstanceConfig
|
||||||
|
|
||||||
|
|
@ -155,6 +156,7 @@ local defaults = {
|
||||||
sync = {},
|
sync = {},
|
||||||
forge = {
|
forge = {
|
||||||
close = false,
|
close = false,
|
||||||
|
validate = false,
|
||||||
warn_missing_cli = true,
|
warn_missing_cli = true,
|
||||||
github = {
|
github = {
|
||||||
icon = '',
|
icon = '',
|
||||||
|
|
|
||||||
|
|
@ -82,14 +82,25 @@ function M.parse_buffer(lines)
|
||||||
return result
|
return result
|
||||||
end
|
end
|
||||||
|
|
||||||
|
---@param a? pending.ForgeRef
|
||||||
|
---@param b? pending.ForgeRef
|
||||||
|
---@return boolean
|
||||||
|
local function refs_equal(a, b)
|
||||||
|
if not a or not b then
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
return a.forge == b.forge and a.owner == b.owner and a.repo == b.repo and a.number == b.number
|
||||||
|
end
|
||||||
|
|
||||||
---@param lines string[]
|
---@param lines string[]
|
||||||
---@param s pending.Store
|
---@param s pending.Store
|
||||||
---@param hidden_ids? table<integer, true>
|
---@param hidden_ids? table<integer, true>
|
||||||
---@return nil
|
---@return pending.ForgeRef[]
|
||||||
function M.apply(lines, s, hidden_ids)
|
function M.apply(lines, s, hidden_ids)
|
||||||
local parsed = M.parse_buffer(lines)
|
local parsed = M.parse_buffer(lines)
|
||||||
local now = timestamp()
|
local now = timestamp()
|
||||||
local data = s:data()
|
local data = s:data()
|
||||||
|
local new_refs = {} ---@type pending.ForgeRef[]
|
||||||
|
|
||||||
local old_by_id = {}
|
local old_by_id = {}
|
||||||
for _, task in ipairs(data.tasks) do
|
for _, task in ipairs(data.tasks) do
|
||||||
|
|
@ -120,6 +131,9 @@ function M.apply(lines, s, hidden_ids)
|
||||||
order = order_counter,
|
order = order_counter,
|
||||||
_extra = entry.forge_ref and { _forge_ref = entry.forge_ref } or nil,
|
_extra = entry.forge_ref and { _forge_ref = entry.forge_ref } or nil,
|
||||||
})
|
})
|
||||||
|
if entry.forge_ref then
|
||||||
|
table.insert(new_refs, entry.forge_ref)
|
||||||
|
end
|
||||||
else
|
else
|
||||||
seen_ids[entry.id] = true
|
seen_ids[entry.id] = true
|
||||||
local task = old_by_id[entry.id]
|
local task = old_by_id[entry.id]
|
||||||
|
|
@ -154,6 +168,10 @@ function M.apply(lines, s, hidden_ids)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if entry.forge_ref ~= nil then
|
if entry.forge_ref ~= nil then
|
||||||
|
local old_ref = task._extra and task._extra._forge_ref or nil
|
||||||
|
if not refs_equal(old_ref, entry.forge_ref) then
|
||||||
|
table.insert(new_refs, entry.forge_ref)
|
||||||
|
end
|
||||||
if not task._extra then
|
if not task._extra then
|
||||||
task._extra = {}
|
task._extra = {}
|
||||||
end
|
end
|
||||||
|
|
@ -188,6 +206,9 @@ function M.apply(lines, s, hidden_ids)
|
||||||
order = order_counter,
|
order = order_counter,
|
||||||
_extra = entry.forge_ref and { _forge_ref = entry.forge_ref } or nil,
|
_extra = entry.forge_ref and { _forge_ref = entry.forge_ref } or nil,
|
||||||
})
|
})
|
||||||
|
if entry.forge_ref then
|
||||||
|
table.insert(new_refs, entry.forge_ref)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
::continue::
|
::continue::
|
||||||
|
|
@ -202,6 +223,7 @@ function M.apply(lines, s, hidden_ids)
|
||||||
end
|
end
|
||||||
|
|
||||||
s:save()
|
s:save()
|
||||||
|
return new_refs
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
|
|
@ -489,9 +489,13 @@ function M._on_write(bufnr)
|
||||||
if #stack > UNDO_MAX then
|
if #stack > UNDO_MAX then
|
||||||
table.remove(stack, 1)
|
table.remove(stack, 1)
|
||||||
end
|
end
|
||||||
diff.apply(lines, s, hidden)
|
local new_refs = diff.apply(lines, s, hidden)
|
||||||
M._recompute_counts()
|
M._recompute_counts()
|
||||||
buffer.render(bufnr)
|
buffer.render(bufnr)
|
||||||
|
if new_refs and #new_refs > 0 then
|
||||||
|
local forge = require('pending.forge')
|
||||||
|
forge.validate_refs(new_refs)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
---@return nil
|
---@return nil
|
||||||
|
|
|
||||||
|
|
@ -275,6 +275,98 @@ describe('diff', function()
|
||||||
assert.are.equal('completion', tasks[1].recur_mode)
|
assert.are.equal('completion', tasks[1].recur_mode)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it('returns forge refs for new tasks', function()
|
||||||
|
local lines = {
|
||||||
|
'# Inbox',
|
||||||
|
'- [ ] Fix bug gh:user/repo#42',
|
||||||
|
}
|
||||||
|
local refs = diff.apply(lines, s)
|
||||||
|
assert.are.equal(1, #refs)
|
||||||
|
assert.are.equal('github', refs[1].forge)
|
||||||
|
assert.are.equal(42, refs[1].number)
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('returns forge refs for changed refs on existing tasks', function()
|
||||||
|
s:add({
|
||||||
|
description = 'Fix bug gh:user/repo#1',
|
||||||
|
_extra = {
|
||||||
|
_forge_ref = {
|
||||||
|
forge = 'github',
|
||||||
|
owner = 'user',
|
||||||
|
repo = 'repo',
|
||||||
|
type = 'issue',
|
||||||
|
number = 1,
|
||||||
|
url = '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
s:save()
|
||||||
|
local lines = {
|
||||||
|
'# Todo',
|
||||||
|
'/1/- [ ] Fix bug gh:user/repo#99',
|
||||||
|
}
|
||||||
|
local refs = diff.apply(lines, s)
|
||||||
|
assert.are.equal(1, #refs)
|
||||||
|
assert.are.equal(99, refs[1].number)
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('returns empty when forge ref is unchanged', function()
|
||||||
|
s:add({
|
||||||
|
description = 'Fix bug gh:user/repo#42',
|
||||||
|
_extra = {
|
||||||
|
_forge_ref = {
|
||||||
|
forge = 'github',
|
||||||
|
owner = 'user',
|
||||||
|
repo = 'repo',
|
||||||
|
type = 'issue',
|
||||||
|
number = 42,
|
||||||
|
url = '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
s:save()
|
||||||
|
local lines = {
|
||||||
|
'# Todo',
|
||||||
|
'/1/- [ ] Fix bug gh:user/repo#42',
|
||||||
|
}
|
||||||
|
local refs = diff.apply(lines, s)
|
||||||
|
assert.are.equal(0, #refs)
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('returns empty for tasks without forge refs', function()
|
||||||
|
local lines = {
|
||||||
|
'# Inbox',
|
||||||
|
'- [ ] Plain task',
|
||||||
|
}
|
||||||
|
local refs = diff.apply(lines, s)
|
||||||
|
assert.are.equal(0, #refs)
|
||||||
|
end)
|
||||||
|
|
||||||
|
it('returns forge refs for duplicated tasks', function()
|
||||||
|
s:add({
|
||||||
|
description = 'Fix bug gh:user/repo#42',
|
||||||
|
_extra = {
|
||||||
|
_forge_ref = {
|
||||||
|
forge = 'github',
|
||||||
|
owner = 'user',
|
||||||
|
repo = 'repo',
|
||||||
|
type = 'issue',
|
||||||
|
number = 42,
|
||||||
|
url = '',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
s:save()
|
||||||
|
local lines = {
|
||||||
|
'# Todo',
|
||||||
|
'/1/- [ ] Fix bug gh:user/repo#42',
|
||||||
|
'/1/- [ ] Fix bug gh:user/repo#42',
|
||||||
|
}
|
||||||
|
local refs = diff.apply(lines, s)
|
||||||
|
assert.are.equal(1, #refs)
|
||||||
|
assert.are.equal(42, refs[1].number)
|
||||||
|
end)
|
||||||
|
|
||||||
it('clears priority when [N] is removed from buffer line', function()
|
it('clears priority when [N] is removed from buffer line', function()
|
||||||
s:add({ description = 'Task name', priority = 1 })
|
s:add({ description = 'Task name', priority = 1 })
|
||||||
s:save()
|
s:save()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue