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