Software /
code /
prosody-modules
Changeset
3558:22587eb2d87c
mod_adhoc_dataforms_demo: Add a multi-step command demo
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 06 Apr 2019 18:32:24 +0200 |
parents | 3557:54b4b020de4c |
children | 3559:d56cb74a0db8 |
files | mod_adhoc_dataforms_demo/mod_adhoc_dataforms_demo.lua |
diffstat | 1 files changed, 56 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_adhoc_dataforms_demo/mod_adhoc_dataforms_demo.lua Sat Apr 06 18:31:55 2019 +0200 +++ b/mod_adhoc_dataforms_demo/mod_adhoc_dataforms_demo.lua Sat Apr 06 18:32:24 2019 +0200 @@ -121,3 +121,59 @@ adhoc_new("Dataforms Demo", "xmpp:zash.se/mod_adhoc_dataforms_demo#form", adhoc_util.new_simple_form(form, handler))); + + +local function multi_step_command(_, data, state) + + if data.action == "cancel" then + return { status = "canceled" }; + elseif data.action == "complete" then + return { + status = "completed", + info = "State was:\n" + .. serialization.serialize(state, { fatal = false }), + }; + end + state = state or { step = 1, forms = { } }; + + if data.action == "next" then + state.step = state.step + 1; + elseif data.action == "prev" then + state.step = math.max(state.step - 1, 1); + end + + local current_form = state.forms[state.step] + if not current_form then + current_form = { + title = string.format("Step %d", state.step); + instructions = state.step == 1 and "Here's a form." or "Here's another form."; + }; + local already_selected = {}; + for _ = 1, math.random(1, 5) do + local random + repeat + random = math.random(2, #form); + until not already_selected[random] + table.insert(current_form, form[random]); + end + state.forms[state.step] = dataforms.new(current_form); + end + + local next_step = { + status = "executing", + form = current_form, + actions = { + "next", "complete" + }, + }; + if state.step > 1 then + table.insert(next_step.actions, 1, "prev"); + end + return next_step, state; +end + +module:provides("adhoc", + adhoc_new("Multi-step command demo", + "xmpp:zash.se/mod_adhoc_dataforms_demo#multi", + multi_step_command)); +