util.xtemplate: Fix error on applying each() to zero stanzas

This commit is contained in:
Kim Alvefur 2024-07-11 15:04:29 +02:00
parent b522fd0e05
commit 8a96854733
3 changed files with 10 additions and 2 deletions

View file

@ -38,6 +38,10 @@ describe("util.xtemplate", function ()
x:reset();
assert.same("12345", xtemplate.render("{foo/bar|each(i){{#}}}", x));
end)
it("handles missing inputs", function ()
local x = st.stanza("root");
assert.same("", xtemplate.render("{foo/bar|each(i){{#}}}", x));
end)
end)
end)
end)

View file

@ -54,7 +54,10 @@ local function render(template : string, root : st.stanza_t, escape : escape_t,
if tmpl then tmpl = s_sub(tmpl, 2, -2); end
if args then args = s_sub(args, 2, -2); end
if func == "each" and tmpl and st.is_stanza(value) then
if func == "each" and tmpl then
if not st.is_stanza(value) then
return pre_blank..post_blank;
end
if not args then value, args = root, path; end
local ns, name = s_match(args, "^(%b{})(.*)$");
if ns then ns = s_sub(ns, 2, -2); else name, ns = args, nil; end

View file

@ -39,7 +39,8 @@ local function render(template, root, escape, filters)
if tmpl then tmpl = s_sub(tmpl, 2, -2); end
if args then args = s_sub(args, 2, -2); end
if func == "each" and tmpl and st.is_stanza(value) then
if func == "each" and tmpl then
if not st.is_stanza(value) then return pre_blank .. post_blank end
if not args then value, args = root, path; end
local ns, name = s_match(args, "^(%b{})(.*)$");
if ns then