liquid_feedback_frontend

annotate app/main/survey/participate.lua @ 1741:772c18d87b54

Fixed syntax error
author bsw
date Mon Oct 11 10:38:04 2021 +0200 (2021-10-11)
parents b94cf0ea5942
children 9f96b7e6e5f2
rev   line source
bsw@1735 1 local survey = Survey:get_open()
bsw@1735 2 if not survey then
bsw@1735 3 return execute.view { module = "index", view = "404" }
bsw@1735 4 end
bsw@1735 5
bsw@1735 6 local survey_member = SurveyMember:by_pk(survey.id, app.session.member_id)
bsw@1735 7 if not survey_member then
bsw@1735 8 return execute.view { module = "index", view = "404" }
bsw@1735 9 end
bsw@1735 10
bsw@1735 11 local question
bsw@1735 12
bsw@1735 13 if survey_member then
bsw@1735 14 local answer_set = survey_member.answer_set
bsw@1735 15 if answer_set then
bsw@1735 16 local answers_by_question_id = {}
bsw@1735 17 for i, answer in ipairs(answer_set.answers) do
bsw@1735 18 answers_by_question_id[answer.survey_question_id] = answer
bsw@1735 19 end
bsw@1735 20 for i, q in ipairs(survey.questions) do
bsw@1735 21 if not question and not answers_by_question_id[q.id] then
bsw@1735 22 question = q
bsw@1735 23 end
bsw@1735 24 end
bsw@1735 25 end
bsw@1735 26 end
bsw@1735 27
bsw@1735 28 ui.title(_"Survey")
bsw@1735 29 ui.grid{ content = function()
bsw@1735 30 ui.cell_main{ content = function()
bsw@1735 31
bsw@1740 32 ui.container{ attr = { class = "mdl-card mdl-card__fullwidth mdl-shadow--2dp survey" }, content = function()
bsw@1735 33 ui.container{ attr = { class = "mdl-card__title mdl-card--border" }, content = function()
bsw@1735 34 ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = survey.title }
bsw@1740 35 --[[
bsw@1735 36 ui.container{
bsw@1735 37 content = _(
bsw@1735 38 "This survey closes in #{closing}.",
bsw@1735 39 { closing = format.interval_text(survey.time_left) }
bsw@1735 40 )
bsw@1735 41 }
bsw@1741 42 --]]
bsw@1735 43 end }
bsw@1735 44 ui.container{ attr = { class = "mdl-card__content mdl-card--border" }, content = function()
bsw@1735 45 if survey_member.finished then
bsw@1735 46 ui.container{ content = function()
bsw@1735 47 slot.put(survey.finished_text)
bsw@1735 48 end }
bsw@1735 49 slot.put("<br>")
bsw@1735 50 ui.link{
bsw@1735 51 attr = { class = "mdl-button mdl-js-button mdl-button--raised mdl-button--colored" },
bsw@1735 52 module = "index", view = "index", content = _"Go to start page"
bsw@1735 53 }
bsw@1735 54 return
bsw@1735 55 else
bsw@1735 56 ui.heading{ level = 2, content = question.question }
bsw@1735 57 if question.description then
bsw@1735 58 ui.container{ content = question.description }
bsw@1735 59 end
bsw@1735 60 ui.form{
bsw@1735 61 module = "survey", action = "answer",
bsw@1735 62 routing = {
bsw@1735 63 ok = { mode = "redirect", module = "survey", view = "participate" },
bsw@1735 64 error = { mode = "forward", module = "survey", view = "participate" },
bsw@1735 65 },
bsw@1735 66 content = function()
bsw@1735 67 ui.field.hidden{ name = "question_id", value = question.id }
bsw@1735 68 if question.answer_type == "radio" then
bsw@1735 69 for i, answer_option in ipairs(question.answer_options) do
bsw@1735 70 ui.container{ content = function()
bsw@1735 71 ui.tag{ tag = "label", attr = {
bsw@1735 72 class = "mdl-radio mdl-js-radio mdl-js-ripple-effect",
bsw@1735 73 ["for"] = "answer_" .. i
bsw@1735 74 },
bsw@1735 75 content = function()
bsw@1735 76 ui.tag{
bsw@1735 77 tag = "input",
bsw@1735 78 attr = {
bsw@1735 79 id = "answer_" .. i,
bsw@1735 80 class = "mdl-radio__button",
bsw@1735 81 type = "radio",
bsw@1735 82 name = "answer",
bsw@1735 83 value = answer_option,
bsw@1735 84 checked = param.get("answer") == answer_option and "checked" or nil,
bsw@1735 85 }
bsw@1735 86 }
bsw@1735 87 ui.tag{
bsw@1735 88 attr = { class = "mdl-radio__label", ['for'] = "answer_" .. i },
bsw@1735 89 content = answer_option
bsw@1735 90 }
bsw@1735 91 end
bsw@1735 92 }
bsw@1735 93 end }
bsw@1735 94 end
bsw@1735 95 slot.put("<br>")
bsw@1735 96 ui.tag{
bsw@1735 97 tag = "input",
bsw@1735 98 attr = {
bsw@1735 99 type = "submit",
bsw@1735 100 class = "mdl-button mdl-js-button mdl-button--raised mdl-button--colored",
bsw@1735 101 value = _"Next step"
bsw@1735 102 },
bsw@1735 103 content = ""
bsw@1735 104 }
bsw@1735 105 end
bsw@1735 106 end
bsw@1735 107 }
bsw@1735 108 end
bsw@1735 109 end }
bsw@1735 110 end }
bsw@1735 111 end }
bsw@1735 112 end }

Impressum / About Us