util.dataforms: Exclude descriptive text fields from forms of type 'submit'

The receiving end presumably already have the original form, so these
potentially long text fields are of little value.
This commit is contained in:
Kim Alvefur 2018-08-03 21:45:55 +02:00
parent 03cb429034
commit 383dc3fbfd

View file

@ -31,19 +31,23 @@ function form_t.form(layout, data, formtype)
if formtype == "cancel" then if formtype == "cancel" then
return form; return form;
end end
if layout.title then if formtype ~= "submit" then
form:tag("title"):text(layout.title):up(); if layout.title then
end form:tag("title"):text(layout.title):up();
if layout.instructions then end
form:tag("instructions"):text(layout.instructions):up(); if layout.instructions then
form:tag("instructions"):text(layout.instructions):up();
end
end end
for _, field in ipairs(layout) do for _, field in ipairs(layout) do
local field_type = field.type or "text-single"; local field_type = field.type or "text-single";
-- Add field tag -- Add field tag
form:tag("field", { type = field_type, var = field.name, label = field.label }); form:tag("field", { type = field_type, var = field.name, label = formtype ~= "submit" and field.label or nil });
if field.desc then if formtype ~= "submit" then
form:text_tag("desc", field.desc); if field.desc then
form:text_tag("desc", field.desc);
end
end end
local value; local value;
@ -120,7 +124,7 @@ function form_t.form(layout, data, formtype)
form:up(); form:up();
end end
if field.required then if formtype == "form" and field.required then
form:tag("required"):up(); form:tag("required"):up();
end end