| 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@1735
|
59 if question.answer_type == "radio" then
|
|
bsw@1735
|
60 for i, answer_option in ipairs(question.answer_options) do
|
|
bsw@1735
|
61 ui.container{ content = function()
|
|
bsw@1735
|
62 ui.tag{ tag = "label", attr = {
|
|
bsw@1735
|
63 class = "mdl-radio mdl-js-radio mdl-js-ripple-effect",
|
|
bsw@1735
|
64 ["for"] = "answer_" .. i
|
|
bsw@1735
|
65 },
|
|
bsw@1735
|
66 content = function()
|
|
bsw@1735
|
67 ui.tag{
|
|
bsw@1735
|
68 tag = "input",
|
|
bsw@1735
|
69 attr = {
|
|
bsw@1735
|
70 id = "answer_" .. i,
|
|
bsw@1735
|
71 class = "mdl-radio__button",
|
|
bsw@1735
|
72 type = "radio",
|
|
bsw@1735
|
73 name = "answer",
|
|
bsw@1735
|
74 value = answer_option,
|
|
bsw@1735
|
75 checked = param.get("answer") == answer_option and "checked" or nil,
|
|
bsw@1735
|
76 }
|
|
bsw@1735
|
77 }
|
|
bsw@1735
|
78 ui.tag{
|
|
bsw@1735
|
79 attr = { class = "mdl-radio__label", ['for'] = "answer_" .. i },
|
|
bsw@1735
|
80 content = answer_option
|
|
bsw@1735
|
81 }
|
|
bsw@1735
|
82 end
|
|
bsw@1735
|
83 }
|
|
bsw@1735
|
84 end }
|
|
bsw@1735
|
85 end
|
|
bsw@1735
|
86 slot.put("<br>")
|
|
bsw@1735
|
87 ui.tag{
|
|
bsw@1735
|
88 tag = "input",
|
|
bsw@1735
|
89 attr = {
|
|
bsw@1735
|
90 type = "submit",
|
|
bsw@1735
|
91 class = "mdl-button mdl-js-button mdl-button--raised mdl-button--colored",
|
|
bsw@1735
|
92 value = _"Next step"
|
|
bsw@1735
|
93 },
|
|
bsw@1735
|
94 content = ""
|
|
bsw@1735
|
95 }
|
|
bsw@1735
|
96 end
|
|
bsw@1735
|
97 end
|
|
bsw@1735
|
98 }
|
|
bsw@1735
|
99 end
|
|
bsw@1735
|
100 end }
|
|
bsw@1735
|
101 end }
|
|
bsw@1735
|
102 end }
|
|
bsw@1735
|
103 end }
|