liquid_feedback_frontend

annotate app/main/survey/participate.lua @ 1744:f5c41bffb3ff

Fixed syntax error
author bsw
date Mon Oct 11 10:48:00 2021 +0200 (2021-10-11)
parents 3d61fa0d6474
children 49cb472e12d5
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@1742 28 ui.title(survey.title)
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@1742 34 ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = question.question }
bsw@1735 35 end }
bsw@1735 36 ui.container{ attr = { class = "mdl-card__content mdl-card--border" }, content = function()
bsw@1735 37 if survey_member.finished then
bsw@1735 38 ui.container{ content = function()
bsw@1735 39 slot.put(survey.finished_text)
bsw@1735 40 end }
bsw@1735 41 slot.put("<br>")
bsw@1735 42 ui.link{
bsw@1735 43 attr = { class = "mdl-button mdl-js-button mdl-button--raised mdl-button--colored" },
bsw@1735 44 module = "index", view = "index", content = _"Go to start page"
bsw@1735 45 }
bsw@1735 46 return
bsw@1735 47 else
bsw@1735 48 if question.description then
bsw@1735 49 ui.container{ content = question.description }
bsw@1735 50 end
bsw@1735 51 ui.form{
bsw@1735 52 module = "survey", action = "answer",
bsw@1735 53 routing = {
bsw@1735 54 ok = { mode = "redirect", module = "survey", view = "participate" },
bsw@1735 55 error = { mode = "forward", module = "survey", view = "participate" },
bsw@1735 56 },
bsw@1735 57 content = function()
bsw@1735 58 ui.field.hidden{ name = "question_id", value = question.id }
bsw@1743 59
bsw@1735 60 if question.answer_type == "radio" then
bsw@1735 61 for i, answer_option in ipairs(question.answer_options) do
bsw@1735 62 ui.container{ content = function()
bsw@1735 63 ui.tag{ tag = "label", attr = {
bsw@1735 64 class = "mdl-radio mdl-js-radio mdl-js-ripple-effect",
bsw@1735 65 ["for"] = "answer_" .. i
bsw@1735 66 },
bsw@1735 67 content = function()
bsw@1735 68 ui.tag{
bsw@1735 69 tag = "input",
bsw@1735 70 attr = {
bsw@1735 71 id = "answer_" .. i,
bsw@1735 72 class = "mdl-radio__button",
bsw@1735 73 type = "radio",
bsw@1735 74 name = "answer",
bsw@1735 75 value = answer_option,
bsw@1735 76 checked = param.get("answer") == answer_option and "checked" or nil,
bsw@1735 77 }
bsw@1735 78 }
bsw@1735 79 ui.tag{
bsw@1735 80 attr = { class = "mdl-radio__label", ['for'] = "answer_" .. i },
bsw@1735 81 content = answer_option
bsw@1735 82 }
bsw@1735 83 end
bsw@1735 84 }
bsw@1735 85 end }
bsw@1743 86
bsw@1744 87 elseif question.answer_type == "checkbox" then
bsw@1743 88 for i, answer_option in ipairs(question.answer_options) do
bsw@1743 89 ui.container{ content = function()
bsw@1743 90 ui.tag{ tag = "label", attr = {
bsw@1743 91 class = "mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect",
bsw@1743 92 ["for"] = "answer_" .. i
bsw@1743 93 },
bsw@1743 94 content = function()
bsw@1743 95 ui.tag{
bsw@1743 96 tag = "input",
bsw@1743 97 attr = {
bsw@1743 98 id = "answer_" .. i,
bsw@1743 99 class = "mdl-checkbox__button",
bsw@1743 100 type = "checkbox",
bsw@1743 101 name = "answer_" .. answer_option,
bsw@1743 102 value = "1",
bsw@1743 103 checked = param.get("answer_" .. answer_option) and "checked" or nil,
bsw@1743 104 }
bsw@1743 105 }
bsw@1743 106 ui.tag{
bsw@1743 107 attr = { class = "mdl-checkbox__label", ['for'] = "answer_" .. i },
bsw@1743 108 content = answer_option
bsw@1743 109 }
bsw@1743 110 end
bsw@1743 111 }
bsw@1743 112 end }
bsw@1735 113 end
bsw@1743 114
bsw@1735 115 slot.put("<br>")
bsw@1735 116 ui.tag{
bsw@1735 117 tag = "input",
bsw@1735 118 attr = {
bsw@1735 119 type = "submit",
bsw@1735 120 class = "mdl-button mdl-js-button mdl-button--raised mdl-button--colored",
bsw@1735 121 value = _"Next step"
bsw@1735 122 },
bsw@1735 123 content = ""
bsw@1735 124 }
bsw@1735 125 end
bsw@1735 126 end
bsw@1735 127 }
bsw@1735 128 end
bsw@1735 129 end }
bsw@1735 130 end }
bsw@1735 131 end }
bsw@1735 132 end }

Impressum / About Us