fe 1.0.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. checksums.yaml +5 -5
  2. data/README.md +4 -4
  3. data/app/assets/config/fe/manifest.js +3 -0
  4. data/app/assets/config/manifest.js +3 -0
  5. data/app/assets/javascripts/application.js.erb +1 -1
  6. data/app/assets/javascripts/fe/admin.js +0 -1
  7. data/app/assets/javascripts/fe/fe.admin.js +2 -6
  8. data/app/assets/javascripts/fe/{fe.common.js → fe.common.js.erb} +14 -7
  9. data/app/assets/javascripts/fe/fe.public.js +1 -2
  10. data/app/assets/javascripts/fe/{fe.public.nojquery.js → fe.public.nojquery.js.erb} +152 -76
  11. data/app/assets/javascripts/fe/jquery.html5_upload.js +258 -0
  12. data/app/assets/stylesheets/fe/fe.screen.css.scss.erb +22 -1
  13. data/app/assets/stylesheets/fe/validation.css +5 -1
  14. data/app/controllers/{fe/concerns → concerns/fe}/admin/question_sheets_controller_concern.rb +15 -16
  15. data/app/controllers/concerns/fe/answer_pages_controller_concern.rb +131 -0
  16. data/app/controllers/{fe/concerns → concerns/fe}/answer_sheets_controller_concern.rb +14 -6
  17. data/app/controllers/{fe/concerns → concerns/fe}/application_controller_concern.rb +3 -3
  18. data/app/controllers/fe/admin/elements_controller.rb +46 -24
  19. data/app/controllers/fe/admin/email_templates_controller.rb +5 -5
  20. data/app/controllers/fe/admin/question_pages_controller.rb +8 -8
  21. data/app/controllers/fe/reference_pages_controller.rb +11 -11
  22. data/app/controllers/fe/reference_sheets_controller.rb +4 -4
  23. data/app/controllers/fe/references_controller.rb +19 -19
  24. data/app/controllers/fe/submit_pages_controller.rb +5 -5
  25. data/app/helpers/fe/answer_pages_helper.rb +1 -1
  26. data/app/helpers/fe/application_helper.rb +3 -3
  27. data/app/jobs/fe/update_reference_sheet_visibility_job.rb +11 -0
  28. data/app/mailers/fe/notifier.rb +4 -4
  29. data/app/models/answer_sheet.rb +1 -1
  30. data/app/models/application_record.rb +3 -0
  31. data/app/models/{fe/concerns → concerns/fe}/answer_concern.rb +2 -2
  32. data/app/models/{fe/concerns → concerns/fe}/answer_pages_presenter_concern.rb +6 -5
  33. data/app/models/concerns/fe/answer_sheet_concern.rb +125 -0
  34. data/app/models/{fe/concerns → concerns/fe}/choice_field_concern.rb +41 -23
  35. data/app/models/fe/address.rb +2 -2
  36. data/app/models/fe/answer.rb +1 -1
  37. data/app/models/fe/answer_sheet.rb +1 -1
  38. data/app/models/fe/answer_sheet_question_sheet.rb +2 -2
  39. data/app/models/fe/application.rb +14 -10
  40. data/app/models/fe/condition.rb +4 -4
  41. data/app/models/fe/date_field.rb +1 -1
  42. data/app/models/fe/element.rb +126 -44
  43. data/app/models/fe/email_address.rb +2 -2
  44. data/app/models/fe/email_template.rb +1 -1
  45. data/app/models/fe/page.rb +94 -19
  46. data/app/models/fe/page_element.rb +2 -2
  47. data/app/models/fe/paragraph.rb +1 -1
  48. data/app/models/fe/person.rb +5 -5
  49. data/app/models/fe/phone_number.rb +1 -1
  50. data/app/models/fe/question.rb +62 -38
  51. data/app/models/fe/question_grid.rb +15 -3
  52. data/app/models/fe/question_set.rb +53 -13
  53. data/app/models/fe/question_sheet.rb +49 -16
  54. data/app/models/fe/reference_question.rb +9 -3
  55. data/app/models/fe/reference_sheet.rb +102 -47
  56. data/app/models/fe/state_chooser.rb +2 -2
  57. data/app/models/fe/text_field.rb +2 -2
  58. data/app/models/fe/user.rb +1 -1
  59. data/app/models/staff.rb +6 -6
  60. data/app/views/fe/admin/elements/create.js.erb +3 -3
  61. data/app/views/fe/admin/elements/destroy.js.erb +1 -1
  62. data/app/views/fe/admin/elements/drop.js.erb +1 -1
  63. data/app/views/fe/admin/elements/duplicate.js.erb +1 -1
  64. data/app/views/fe/admin/elements/edit.js.erb +1 -1
  65. data/app/views/fe/admin/elements/error.js.erb +1 -1
  66. data/app/views/fe/admin/elements/new.js.erb +13 -6
  67. data/app/views/fe/admin/elements/update.js.erb +1 -1
  68. data/app/views/fe/admin/email_templates/_form.html.erb +3 -3
  69. data/app/views/fe/admin/email_templates/edit.html.erb +3 -3
  70. data/app/views/fe/admin/email_templates/index.html.erb +3 -3
  71. data/app/views/fe/admin/email_templates/new.html.erb +3 -3
  72. data/app/views/fe/admin/panels/_advanced_options.html.erb +8 -8
  73. data/app/views/fe/admin/panels/_common_boolean_fields.html.erb +1 -0
  74. data/app/views/fe/admin/panels/_common_boolean_fields_default.html.erb +11 -0
  75. data/app/views/fe/admin/panels/_common_fields.html.erb +2 -17
  76. data/app/views/fe/admin/panels/_condition.html.erb +1 -1
  77. data/app/views/fe/admin/panels/_insert.html.erb +25 -25
  78. data/app/views/fe/admin/panels/_nav_controls.html.erb +4 -4
  79. data/app/views/fe/admin/panels/_page.html.erb +1 -1
  80. data/app/views/fe/admin/panels/_pages_list.html.erb +3 -3
  81. data/app/views/fe/admin/panels/_prop_attachment_field.html.erb +2 -2
  82. data/app/views/fe/admin/panels/_prop_choice_field.html.erb +36 -17
  83. data/app/views/fe/admin/panels/_prop_date_field.html.erb +1 -1
  84. data/app/views/fe/admin/panels/_prop_element.html.erb +5 -5
  85. data/app/views/fe/admin/panels/_prop_page.html.erb +3 -3
  86. data/app/views/fe/admin/panels/_prop_paragraph.html.erb +8 -8
  87. data/app/views/fe/admin/panels/_prop_question_grid.html.erb +7 -2
  88. data/app/views/fe/admin/panels/_prop_question_grid_with_total.html.erb +2 -2
  89. data/app/views/fe/admin/panels/_prop_reference_question.html.erb +3 -3
  90. data/app/views/fe/admin/panels/_prop_section.html.erb +1 -1
  91. data/app/views/fe/admin/panels/_prop_sheet.html.erb +3 -3
  92. data/app/views/fe/admin/panels/_prop_text_field.html.erb +12 -12
  93. data/app/views/fe/admin/question_pages/_element.html.erb +7 -7
  94. data/app/views/fe/admin/question_pages/_element_show.html.erb +2 -2
  95. data/app/views/fe/admin/question_pages/_question_page.html.erb +4 -4
  96. data/app/views/fe/admin/question_pages/create.js.erb +3 -3
  97. data/app/views/fe/admin/question_pages/destroy.js.erb +3 -3
  98. data/app/views/fe/admin/question_pages/edit.js.erb +1 -1
  99. data/app/views/fe/admin/question_pages/error.js.erb +1 -1
  100. data/app/views/fe/admin/question_pages/show.js.erb +2 -2
  101. data/app/views/fe/admin/question_pages/show_panel.js.erb +1 -1
  102. data/app/views/fe/admin/question_pages/update.js.erb +1 -1
  103. data/app/views/fe/admin/question_sheets/edit.js.erb +1 -1
  104. data/app/views/fe/admin/question_sheets/error.js.erb +1 -1
  105. data/app/views/fe/admin/question_sheets/index.html.erb +8 -8
  106. data/app/views/fe/admin/question_sheets/new.html.erb +3 -3
  107. data/app/views/fe/admin/question_sheets/show.html.erb +5 -5
  108. data/app/views/fe/admin/question_sheets/update.js.erb +1 -1
  109. data/app/views/fe/answer_pages/_answer_page.html.erb +13 -14
  110. data/app/views/fe/answer_pages/_element.html.erb +22 -2
  111. data/app/views/fe/answer_pages/_page_name.html.erb +1 -1
  112. data/app/views/fe/answer_pages/show.html.erb +39 -0
  113. data/app/views/fe/answer_pages/update.js.erb +10 -2
  114. data/app/views/fe/answer_sheets/_answer_sheet.html.erb +4 -4
  115. data/app/views/fe/answer_sheets/_element.html.erb +9 -7
  116. data/app/views/fe/answer_sheets/_incomplete.html.erb +1 -1
  117. data/app/views/fe/answer_sheets/_page_link.html.erb +9 -7
  118. data/app/views/fe/answer_sheets/_pages_list.html.erb +3 -3
  119. data/app/views/fe/answer_sheets/_submit_to.html.erb +1 -1
  120. data/app/views/fe/answer_sheets/_title.html.erb +1 -1
  121. data/app/views/fe/answer_sheets/edit.html.erb +18 -18
  122. data/app/views/fe/answer_sheets/incomplete.js.erb +7 -4
  123. data/app/views/fe/answer_sheets/index.html.erb +1 -1
  124. data/app/views/fe/answer_sheets/show.html.erb +1 -1
  125. data/app/views/fe/applications/_logout.html.erb +1 -1
  126. data/app/views/fe/questions/fe/_acceptance.html.erb +10 -9
  127. data/app/views/fe/questions/fe/_attachment_field.html.erb +129 -10
  128. data/app/views/fe/questions/fe/_checkbox_field.html.erb +18 -16
  129. data/app/views/fe/questions/fe/_country.html.erb +6 -6
  130. data/app/views/fe/questions/fe/_date_field.html.erb +5 -4
  131. data/app/views/fe/questions/fe/_date_field_mmyy.html.erb +8 -8
  132. data/app/views/fe/questions/fe/_drop_down_field.html.erb +5 -5
  133. data/app/views/fe/questions/fe/_question_grid.html.erb +10 -10
  134. data/app/views/fe/questions/fe/_question_grid_with_total.html.erb +8 -8
  135. data/app/views/fe/questions/fe/_questions.html.erb +11 -5
  136. data/app/views/fe/questions/fe/_radio_button_field.html.erb +35 -19
  137. data/app/views/fe/questions/fe/_rating.html.erb +56 -18
  138. data/app/views/fe/questions/fe/_reference_discipler.html.erb +1 -1
  139. data/app/views/fe/questions/fe/_reference_friend.html.erb +1 -1
  140. data/app/views/fe/questions/fe/_reference_parent.html.erb +1 -1
  141. data/app/views/fe/questions/fe/_reference_peer.html.erb +1 -1
  142. data/app/views/fe/questions/fe/_reference_question.html.erb +40 -24
  143. data/app/views/fe/questions/fe/_reference_roommate.html.erb +1 -1
  144. data/app/views/fe/questions/fe/_reference_spiritual.html.erb +1 -1
  145. data/app/views/fe/questions/fe/_reference_staff.html.erb +1 -1
  146. data/app/views/fe/questions/fe/_state_chooser.html.erb +6 -6
  147. data/app/views/fe/questions/fe/_text_area_field.html.erb +14 -10
  148. data/app/views/fe/questions/fe/_text_field.html.erb +7 -6
  149. data/app/views/fe/questions/fe/_yes_no.html.erb +8 -8
  150. data/app/views/fe/questions/fe/_yes_no_field.erb +11 -8
  151. data/app/views/fe/reference_pages/_reference.html.erb +12 -12
  152. data/app/views/fe/reference_pages/edit.html.erb +4 -4
  153. data/app/views/fe/reference_sheets/done.html.erb +2 -2
  154. data/app/views/fe/reference_sheets/not_found.html.erb +3 -3
  155. data/app/views/fe/references/edit.html.erb +5 -5
  156. data/app/views/fe/references/show.html.erb +3 -3
  157. data/app/views/fe/references/submit.js.erb +3 -3
  158. data/app/views/fe/submit_pages/_thankyou.html.erb +1 -1
  159. data/app/views/fe/submit_pages/edit.html.erb +9 -9
  160. data/app/views/fe/submit_pages/error.js.erb +1 -1
  161. data/app/views/fe/submit_pages/submit.js.erb +2 -2
  162. data/app/views/layouts/fe/_error_messages_for.html.erb +1 -1
  163. data/app/views/layouts/fe/application.html.erb +3 -4
  164. data/app/views/layouts/fe/fe_admin.html.erb +30 -0
  165. data/app/views.current/fe/admin/elements/_errors.html.erb +11 -0
  166. data/app/views.current/fe/admin/elements/create.js.erb +12 -0
  167. data/app/views.current/fe/admin/elements/destroy.js.erb +4 -0
  168. data/app/views.current/fe/admin/elements/drop.js.erb +3 -0
  169. data/app/views.current/fe/admin/elements/duplicate.js.erb +3 -0
  170. data/app/views.current/fe/admin/elements/edit.js.erb +4 -0
  171. data/app/views.current/fe/admin/elements/error.js.erb +4 -0
  172. data/app/views.current/fe/admin/elements/new.js.erb +17 -0
  173. data/app/views.current/fe/admin/elements/update.js.erb +9 -0
  174. data/app/views.current/fe/admin/email_templates/_form.html.erb +8 -0
  175. data/app/views.current/fe/admin/email_templates/edit.html.erb +13 -0
  176. data/app/views.current/fe/admin/email_templates/index.html.erb +20 -0
  177. data/app/views.current/fe/admin/email_templates/new.html.erb +11 -0
  178. data/app/views.current/fe/admin/panels/_advanced_options.html.erb +49 -0
  179. data/app/views.current/fe/admin/panels/_common_boolean_fields.html.erb +1 -0
  180. data/app/views.current/fe/admin/panels/_common_boolean_fields_default.html.erb +11 -0
  181. data/app/views.current/fe/admin/panels/_common_fields.html.erb +23 -0
  182. data/app/views.current/fe/admin/panels/_condition.html.erb +6 -0
  183. data/app/views.current/fe/admin/panels/_insert.html.erb +39 -0
  184. data/app/views.current/fe/admin/panels/_nav_controls.html.erb +6 -0
  185. data/app/views.current/fe/admin/panels/_page.html.erb +3 -0
  186. data/app/views.current/fe/admin/panels/_pages_list.html.erb +16 -0
  187. data/app/views.current/fe/admin/panels/_prop_attachment_field.html.erb +2 -0
  188. data/app/views.current/fe/admin/panels/_prop_choice_field.html.erb +74 -0
  189. data/app/views.current/fe/admin/panels/_prop_date_field.html.erb +7 -0
  190. data/app/views.current/fe/admin/panels/_prop_element.html.erb +23 -0
  191. data/app/views.current/fe/admin/panels/_prop_page.html.erb +26 -0
  192. data/app/views.current/fe/admin/panels/_prop_paragraph.html.erb +46 -0
  193. data/app/views.current/fe/admin/panels/_prop_question_grid.html.erb +28 -0
  194. data/app/views.current/fe/admin/panels/_prop_question_grid_with_total.html.erb +14 -0
  195. data/app/views.current/fe/admin/panels/_prop_reference_question.html.erb +12 -0
  196. data/app/views.current/fe/admin/panels/_prop_section.html.erb +8 -0
  197. data/app/views.current/fe/admin/panels/_prop_sheet.html.erb +20 -0
  198. data/app/views.current/fe/admin/panels/_prop_text_field.html.erb +20 -0
  199. data/app/views.current/fe/admin/question_pages/_element.html.erb +28 -0
  200. data/app/views.current/fe/admin/question_pages/_element_show.html.erb +10 -0
  201. data/app/views.current/fe/admin/question_pages/_errors.html.erb +10 -0
  202. data/app/views.current/fe/admin/question_pages/_question_page.html.erb +13 -0
  203. data/app/views.current/fe/admin/question_pages/create.js.erb +11 -0
  204. data/app/views.current/fe/admin/question_pages/destroy.js.erb +5 -0
  205. data/app/views.current/fe/admin/question_pages/edit.js.erb +3 -0
  206. data/app/views.current/fe/admin/question_pages/error.js.erb +4 -0
  207. data/app/views.current/fe/admin/question_pages/show.js.erb +9 -0
  208. data/app/views.current/fe/admin/question_pages/show_panel.js.erb +3 -0
  209. data/app/views.current/fe/admin/question_pages/update.js.erb +2 -0
  210. data/app/views.current/fe/admin/question_sheets/_errors.html.erb +11 -0
  211. data/app/views.current/fe/admin/question_sheets/edit.js.erb +3 -0
  212. data/app/views.current/fe/admin/question_sheets/error.js.erb +5 -0
  213. data/app/views.current/fe/admin/question_sheets/index.html.erb +41 -0
  214. data/app/views.current/fe/admin/question_sheets/new.html.erb +15 -0
  215. data/app/views.current/fe/admin/question_sheets/show.html.erb +27 -0
  216. data/app/views.current/fe/admin/question_sheets/update.js.erb +2 -0
  217. data/app/views.current/fe/answer_pages/_answer_page.html.erb +53 -0
  218. data/app/views.current/fe/answer_pages/_element.html.erb +32 -0
  219. data/app/views.current/fe/answer_pages/_page_name.html.erb +1 -0
  220. data/app/views.current/fe/answer_pages/show.html.erb +39 -0
  221. data/app/views.current/fe/answer_pages/update.js.erb +13 -0
  222. data/app/views.current/fe/answer_sheets/_answer_sheet.html.erb +26 -0
  223. data/app/views.current/fe/answer_sheets/_element.html.erb +74 -0
  224. data/app/views.current/fe/answer_sheets/_incomplete.html.erb +10 -0
  225. data/app/views.current/fe/answer_sheets/_page_link.html.erb +9 -0
  226. data/app/views.current/fe/answer_sheets/_pages_list.html.erb +11 -0
  227. data/app/views.current/fe/answer_sheets/_submit_to.html.erb +1 -0
  228. data/app/views.current/fe/answer_sheets/_title.html.erb +1 -0
  229. data/app/views.current/fe/answer_sheets/edit.html.erb +66 -0
  230. data/app/views.current/fe/answer_sheets/incomplete.js.erb +11 -0
  231. data/app/views.current/fe/answer_sheets/index.html.erb +18 -0
  232. data/app/views.current/fe/answer_sheets/send_reference_invite.js.erb +8 -0
  233. data/app/views.current/fe/answer_sheets/show.html.erb +13 -0
  234. data/app/views.current/fe/applications/_logout.html.erb +1 -0
  235. data/app/views.current/fe/applications/show.html.erb +1 -0
  236. data/app/views.current/fe/help/builder.html +33 -0
  237. data/app/views.current/fe/help/question_grid.html +18 -0
  238. data/app/views.current/fe/questions/fe/_acceptance.html.erb +14 -0
  239. data/app/views.current/fe/questions/fe/_attachment_field.html.erb +165 -0
  240. data/app/views.current/fe/questions/fe/_checkbox_field.html.erb +53 -0
  241. data/app/views.current/fe/questions/fe/_country.html.erb +7 -0
  242. data/app/views.current/fe/questions/fe/_date_field.html.erb +7 -0
  243. data/app/views.current/fe/questions/fe/_date_field_mmyy.html.erb +9 -0
  244. data/app/views.current/fe/questions/fe/_drop_down_field.html.erb +8 -0
  245. data/app/views.current/fe/questions/fe/_paragraph.html.erb +1 -0
  246. data/app/views.current/fe/questions/fe/_question_grid.html.erb +70 -0
  247. data/app/views.current/fe/questions/fe/_question_grid_with_total.html.erb +64 -0
  248. data/app/views.current/fe/questions/fe/_questions.html.erb +15 -0
  249. data/app/views.current/fe/questions/fe/_radio_button_field.html.erb +60 -0
  250. data/app/views.current/fe/questions/fe/_rating.html.erb +64 -0
  251. data/app/views.current/fe/questions/fe/_reference_discipler.html.erb +1 -0
  252. data/app/views.current/fe/questions/fe/_reference_friend.html.erb +1 -0
  253. data/app/views.current/fe/questions/fe/_reference_parent.html.erb +1 -0
  254. data/app/views.current/fe/questions/fe/_reference_peer.html.erb +1 -0
  255. data/app/views.current/fe/questions/fe/_reference_question.html.erb +61 -0
  256. data/app/views.current/fe/questions/fe/_reference_roommate.html.erb +1 -0
  257. data/app/views.current/fe/questions/fe/_reference_spiritual.html.erb +1 -0
  258. data/app/views.current/fe/questions/fe/_reference_staff.html.erb +1 -0
  259. data/app/views.current/fe/questions/fe/_section.html.erb +1 -0
  260. data/app/views.current/fe/questions/fe/_state_chooser.html.erb +7 -0
  261. data/app/views.current/fe/questions/fe/_text_area_field.html.erb +17 -0
  262. data/app/views.current/fe/questions/fe/_text_field.html.erb +9 -0
  263. data/app/views.current/fe/questions/fe/_yes_no.html.erb +17 -0
  264. data/app/views.current/fe/questions/fe/_yes_no_field.erb +20 -0
  265. data/app/views.current/fe/reference_pages/_reference.html.erb +31 -0
  266. data/app/views.current/fe/reference_pages/edit.html.erb +24 -0
  267. data/app/views.current/fe/reference_sheets/done.html.erb +2 -0
  268. data/app/views.current/fe/reference_sheets/not_found.html.erb +5 -0
  269. data/app/views.current/fe/reference_sheets/submitted.js.erb +1 -0
  270. data/app/views.current/fe/references/edit.html.erb +8 -0
  271. data/app/views.current/fe/references/send_invite.js.erb +7 -0
  272. data/app/views.current/fe/references/show.html.erb +18 -0
  273. data/app/views.current/fe/references/submit.js.erb +3 -0
  274. data/app/views.current/fe/submit_pages/_errors.html.erb +1 -0
  275. data/app/views.current/fe/submit_pages/_thankyou.html.erb +2 -0
  276. data/app/views.current/fe/submit_pages/edit.html.erb +36 -0
  277. data/app/views.current/fe/submit_pages/error.js.erb +1 -0
  278. data/app/views.current/fe/submit_pages/submit.js.erb +3 -0
  279. data/app/views.current/layouts/fe/_error_messages_for.html.erb +7 -0
  280. data/app/views.current/layouts/fe/application.html.erb +47 -0
  281. data/app/{views/layouts/fe/fe.admin.html.erb → views.current/layouts/fe/fe_admin.html.erb} +4 -4
  282. data/config/initializers/paper_trail.rb +3 -0
  283. data/config/routes.rb +3 -1
  284. data/db/migrate/20131003041856_core.rb +23 -23
  285. data/db/migrate/20131003044250_create_reference_sheets.rb +1 -1
  286. data/db/migrate/20131003044436_add_element_and_answer_fields.rb +3 -3
  287. data/db/migrate/20131003044518_create_email_templates.rb +2 -2
  288. data/db/migrate/20131003044621_add_max_lengths.rb +1 -1
  289. data/db/migrate/20131003044714_create_join_table.rb +1 -1
  290. data/db/migrate/20131016162128_remove_question_id_from_element.rb +1 -1
  291. data/db/migrate/20140623153424_create_fe_people.rb +1 -1
  292. data/db/migrate/20140624180246_create_fe_addresses.rb +1 -1
  293. data/db/migrate/20140624182216_create_fe_phone_numbers.rb +1 -1
  294. data/db/migrate/20140625160545_create_fe_users.rb +1 -1
  295. data/db/migrate/20140808202507_add_conditional_type_to_elements.rb +1 -1
  296. data/db/migrate/20140808203609_add_conditional_answer_to_elements.rb +1 -1
  297. data/db/migrate/20141103204704_remove_short_value_column.rb +1 -1
  298. data/db/migrate/20141109154522_move_conditional_ids_used_for_choice_field_to_their_own_column.rb +1 -1
  299. data/db/migrate/20150504221439_add_all_element_ids_to_pages.rb +1 -1
  300. data/db/migrate/20150713022326_add_locale_columns.rb +1 -1
  301. data/db/migrate/20150714220730_add_locale_to_answer_sheet.rb +1 -1
  302. data/db/migrate/20150925181652_add_share_to_elements.rb +5 -0
  303. data/db/migrate/20150928085325_change_pages_all_element_ids_to_text.rb +1 -1
  304. data/db/migrate/20150930191538_add_locale_to_reference_sheets.rb +1 -1
  305. data/db/migrate/20151021181928_switch_conditional_answer_separator_to_semicolon.rb +7 -0
  306. data/db/migrate/20151021184250_add_question_sheet_id_in_refs.rb +12 -0
  307. data/db/migrate/20160201185838_add_visible_and_visibility_cache_key_to_reference_sheets.rb +6 -0
  308. data/db/migrate/20160805221415_add_rating_extra_labels.rb +10 -0
  309. data/db/migrate/20181108201746_create_versions.rb +80 -0
  310. data/db/migrate/20181218201130_increase_slug_length.rb +5 -0
  311. data/lib/fe/engine.rb +10 -10
  312. data/lib/fe/version.rb +1 -1
  313. data/lib/fe.rb +7 -1
  314. data/spec/controllers/fe/admin/elements_controller_spec.rb +30 -20
  315. data/spec/controllers/fe/admin/email_templates_controller_spec.rb +2 -2
  316. data/spec/controllers/fe/admin/question_pages_controller_spec.rb +1 -1
  317. data/spec/controllers/fe/admin/question_sheets_controller_spec.rb +4 -4
  318. data/spec/controllers/fe/answer_pages_controller_spec.rb +86 -30
  319. data/spec/controllers/fe/answer_sheets_controller_spec.rb +65 -9
  320. data/spec/dummy/app/assets/config/manifest.js +0 -0
  321. data/spec/dummy/app/models/user.rb +1 -1
  322. data/spec/dummy/app/views/layouts/application.html.erb +2 -2
  323. data/spec/dummy/config/application.rb +1 -0
  324. data/spec/dummy/config/environments/test.rb +3 -3
  325. data/spec/dummy/config/initializers/assets.rb +5 -2
  326. data/spec/dummy/config/initializers/fast_gettext.rb +1 -1
  327. data/spec/dummy/config/initializers/to_unsafe_h.rb +5 -0
  328. data/spec/dummy/config/initializers/to_unsafe_h.rb.new +5 -0
  329. data/spec/dummy/db/migrate/20141203214017_core.fe_engine.rb +23 -23
  330. data/spec/dummy/db/migrate/20141203214018_create_reference_sheets.fe_engine.rb +1 -1
  331. data/spec/dummy/db/migrate/20141203214019_add_element_and_answer_fields.fe_engine.rb +3 -3
  332. data/spec/dummy/db/migrate/20141203214020_create_email_templates.fe_engine.rb +2 -2
  333. data/spec/dummy/db/migrate/20141203214021_add_max_lengths.fe_engine.rb +1 -1
  334. data/spec/dummy/db/migrate/20141203214022_create_join_table.fe_engine.rb +1 -1
  335. data/spec/dummy/db/migrate/20141203214023_remove_question_id_from_element.fe_engine.rb +1 -1
  336. data/spec/dummy/db/migrate/20141203214024_create_fe_people.fe_engine.rb +1 -1
  337. data/spec/dummy/db/migrate/20141203214025_create_fe_addresses.fe_engine.rb +1 -1
  338. data/spec/dummy/db/migrate/20141203214027_create_fe_users.fe_engine.rb +1 -1
  339. data/spec/dummy/db/migrate/20141203214028_add_conditional_type_to_elements.fe_engine.rb +1 -1
  340. data/spec/dummy/db/migrate/20141203214029_add_conditional_answer_to_elements.fe_engine.rb +1 -1
  341. data/spec/dummy/db/migrate/20141203214030_remove_short_value_column.fe_engine.rb +1 -1
  342. data/spec/dummy/db/migrate/20141203214031_move_conditional_ids_used_for_choice_field_to_their_own_column.fe_engine.rb +1 -1
  343. data/spec/dummy/db/migrate/20150123215803_create_users.rb +1 -1
  344. data/spec/dummy/db/migrate/20150504222619_add_all_element_ids_to_pages.fe_engine.rb +1 -1
  345. data/spec/dummy/db/migrate/20150925192557_add_share_to_elements.fe_engine.rb +6 -0
  346. data/spec/dummy/db/migrate/20150930190001_create_fe_phone_numbers.fe_engine.rb +1 -1
  347. data/spec/dummy/db/migrate/20150930190002_add_locale_columns.fe_engine.rb +1 -1
  348. data/spec/dummy/db/migrate/20150930190003_add_locale_to_answer_sheet.fe_engine.rb +1 -1
  349. data/spec/dummy/db/migrate/20150930190004_change_pages_all_element_ids_to_text.fe_engine.rb +1 -1
  350. data/spec/dummy/db/migrate/20150930191756_add_locale_to_reference_sheets.fe_engine.rb +1 -1
  351. data/spec/dummy/db/migrate/20151021190027_add_question_sheet_id_in_refs.fe_engine.rb +13 -0
  352. data/spec/dummy/db/migrate/20160204164612_switch_conditional_answer_separator_to_semicolon.fe_engine.rb +8 -0
  353. data/spec/dummy/db/migrate/20160204164613_add_visible_and_visibility_cache_key_to_reference_sheets.fe_engine.rb +7 -0
  354. data/spec/dummy/db/migrate/20181108201746_create_versions.rb +80 -0
  355. data/spec/dummy/db/schema.rb +71 -79
  356. data/spec/dummy/log/test.log +101278 -419
  357. data/spec/factories/answer_sheet_question_sheets.rb +1 -1
  358. data/spec/factories/answer_sheets.rb +2 -2
  359. data/spec/factories/answers.rb +1 -1
  360. data/spec/factories/applications.rb +3 -3
  361. data/spec/factories/dummy_applications.rb +3 -3
  362. data/spec/factories/dummy_people.rb +3 -3
  363. data/spec/factories/dummy_users.rb +3 -3
  364. data/spec/factories/elements.rb +21 -21
  365. data/spec/factories/email_templates.rb +3 -3
  366. data/spec/factories/fe_addresses.rb +10 -10
  367. data/spec/factories/fe_email_addresses.rb +3 -3
  368. data/spec/factories/fe_email_templates.rb +4 -4
  369. data/spec/factories/fe_people.rb +5 -5
  370. data/spec/factories/fe_phone_numbers.rb +3 -3
  371. data/spec/factories/fe_user.rb +3 -3
  372. data/spec/factories/page.rb +1 -1
  373. data/spec/factories/page_elements.rb +1 -1
  374. data/spec/factories/paragraphs.rb +1 -1
  375. data/spec/factories/question_sheet.rb +2 -2
  376. data/spec/factories/reference_questions.rb +1 -1
  377. data/spec/factories/reference_sheets.rb +1 -1
  378. data/spec/jobs/fe/update_reference_sheet_visibility_job_spec.rb +40 -0
  379. data/spec/models/fe/answer_sheet_question_sheet_spec.rb +1 -1
  380. data/spec/models/fe/answer_spec.rb +2 -2
  381. data/spec/models/fe/application_spec.rb +94 -1
  382. data/spec/models/fe/choice_field_spec.rb +47 -1
  383. data/spec/models/fe/condition_spec.rb +2 -2
  384. data/spec/models/fe/element_spec.rb +252 -60
  385. data/spec/models/fe/email_template_spec.rb +1 -1
  386. data/spec/models/fe/page_element_spec.rb +1 -1
  387. data/spec/models/fe/page_spec.rb +57 -12
  388. data/spec/models/fe/person_spec.rb +1 -1
  389. data/spec/models/fe/question_set_spec.rb +91 -0
  390. data/spec/models/fe/question_sheet_spec.rb +11 -15
  391. data/spec/models/fe/question_spec.rb +73 -6
  392. data/spec/models/fe/reference_question_spec.rb +20 -0
  393. data/spec/models/fe/reference_sheet_spec.rb +287 -4
  394. data/spec/models/fe/text_field_spec.rb +22 -0
  395. data/spec/rails_helper.rb +79 -76
  396. metadata +195 -57
  397. data/app/assets/javascripts/fe/jquery.scrollTo-min.js +0 -7
  398. data/app/controllers/fe/concerns/answer_pages_controller_concern.rb +0 -84
  399. data/app/models/fe/concerns/answer_sheet_concern.rb +0 -85
  400. data/spec/dummy/db/migrate/20141203214026_create_create_fe_phone_numbers.fe_engine.rb +0 -17
  401. data/spec/dummy/log/development.log +0 -5
  402. /data/app/{assets/stylesheets/360front.css → views.current/fe/admin/elements/reorder.js.erb} +0 -0
@@ -1,17 +1,26 @@
1
+ <% element_id = attachment_field.id; base_element = "#element_#{element_id}" %>
2
+
1
3
  <% if @presenter %>
2
- <% if @answer_sheet.frozen? && !@answer_sheet.try(:reference?) %>
3
- <% answer = attachment_field.responses(@answer_sheet).first %>
4
+ <% answer = attachment_field.responses(@answer_sheet).first %>
5
+ <% if @answer_sheet&.frozen? && !@answer_sheet&.reference? %>
4
6
  <% if answer %>
5
- Current File: <%= link_to(answer.attachment_file_name, answer.attachment.url) %>
7
+ Current File: <%= link_to(answer.attachment.filename, url_for(answer.attachment)) %>
8
+ <%= link_to(image_tag("fe/icons/minus-button.png"),
9
+ delete_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name),
10
+ method: :delete, remote: true) %>
6
11
  <% end %>
7
12
  <% else %>
13
+ <div class="legacy_uploader" style="display: none">
8
14
  <div class="uploader">
9
- <input id="<%= dom_id(attachment_field) %>_file_uploader" name="image_uploader" type="file" />
10
- <!-- width: 350px -->
15
+ <input <% if Fe.bootstrap %>class="form-control"<% end %> id="<%= dom_id(attachment_field) %>_file_uploader" name="image_uploader" type="file" />
16
+
11
17
  <span id="<%= dom_id(attachment_field) %>_filename">
12
- <% answer = attachment_field.responses(@answer_sheet).first
13
- if answer.present? %>
14
- Current File: <%= link_to(answer.attachment_file_name, answer.attachment.url) %>
18
+ <% answer = attachment_field.sheet_answers.where(answer_sheet: @answer_sheet).first # using responses method doesn't work because it filters out value nil, but on attachments value will be nil
19
+ if answer&.attachment&.attached? %>
20
+ Current File: <%= link_to(answer.attachment.filename, url_for(answer.attachment)) %>
21
+ <%= link_to(image_tag('fe/icons/minus-button.png'),
22
+ delete_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name),
23
+ method: :delete, remote: true) %>
15
24
  <% end %>
16
25
  </span>
17
26
  </div>
@@ -20,9 +29,9 @@
20
29
  <% session_key_name = Rails.application.config.session_options[:key] %>
21
30
  $('#<%= dom_id(attachment_field) %>_file_uploader').uploadify({
22
31
  uploader : '<%= asset_path "fe/uploadify/uploadify.swf" %>',
23
- script : '<%= save_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, :question_id => attachment_field.id) %>',
32
+ script : '<%= save_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name) %>',
24
33
  fileDesc : 'Pick a file',
25
- fileExt : '*.*',
34
+ fileExt : '<%= attachment_field.content || "*.*" %>',
26
35
  auto : true,
27
36
  sizeLimit : <%= 100.megabytes %>,
28
37
  width : 350,
@@ -42,5 +51,115 @@
42
51
  }
43
52
  });
44
53
  </script>
54
+ </div>
55
+
56
+ <div class="new_uploader">
57
+
58
+ <% if answer&.attachment&.attached? %>
59
+ Current File: <%= link_to(answer.attachment.filename, url_for(answer.attachment)) %>
60
+ <%= link_to(image_tag("fe/icons/minus-button.png"),
61
+ delete_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name),
62
+ method: :delete, remote: true, class: 'remove_current') %>
63
+ <script>
64
+ $('<%= base_element %> .remove_current').click(function() {
65
+ $.ajax({
66
+ type: 'DELETE',
67
+ url: '<%= delete_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name) %>',
68
+ success: function(result) {
69
+ $.get("/fe/answer_sheets/<%= @answer_sheet.id %>/page/<%= @page.id %>/edit?answer_sheet_type=<%= @answer_sheet.class.name %>", function(data) {
70
+ $('<%= base_element %>').replaceWith($(data).find('<%= base_element %>'))
71
+ });
72
+ }
73
+ });
74
+ return false;
75
+ });
76
+ </script>
77
+ <% else %>
78
+
79
+ <style>
80
+ .drop_area.file_hover {
81
+ background:red;
82
+ }
83
+
84
+ </style>
85
+
86
+ <input type="file" class="upload_field" <% if attachment_field.content %>accept="<%= attachment_field.content %>"<% end %>/>
87
+ <div class="drop_area" style="margin:20px 0; width:300px; padding:20px; border:1px dashed black;">or drop a file here</div>
88
+ <div class="progress_report">
89
+ <div class="progress_report_name"></div>
90
+ <div class="progress_report_status" style="font-style: italic;"></div>
91
+ <div class="progress_report_bar_container" style="width: 90%; height: 5px;">
92
+ <div class="progress_report_bar" style="background-color: blue; width: 0; height: 100%;"></div>
93
+ </div>
94
+ <br/>
95
+ </div>
96
+ <script type="text/javascript">
97
+ $(function() {
98
+
99
+ var $input = $("<%= base_element %> .upload_field").html5_upload({
100
+ url: function(number) {
101
+ return "<%= save_file_fe_answer_sheet_page_path(@presenter.active_answer_sheet, @page, question_id: element_id, answer_sheet_type: @answer_sheet.class.name) %>";
102
+ },
103
+ sendBoundary: window.FormData || $.browser.mozilla,
104
+ onStart: function(event, total) {
105
+ return true;
106
+ return confirm("You are trying to upload " + total + " files. Are you sure?");
107
+ },
108
+ onProgress: function(event, progress, name, number, total) {
109
+ console.log(progress, number);
110
+ },
111
+ setName: function(text) {
112
+ $("#element_<%= attachment_field.id %> .progress_report_name").text(text);
113
+ },
114
+ setStatus: function(text) {
115
+ if (!$("<%= base_element %> .upload_field").data('error', true)) {
116
+ $("<%= base_element %> .progress_report_status").text(text);
117
+ }
118
+ },
119
+ setProgress: function(val) {
120
+ $("<%= base_element %> .progress_report_bar").css('width', Math.ceil(val*100)+"%");
121
+ },
122
+ onFinishOne: function(event, response, name, number, total) {
123
+ // Re-render the attachment file to show the current file; use the page view, which is not the
124
+ // most efficient way, but lets us avoid making an action just for this. And the amount of data
125
+ // on a page is not that much
126
+ $.get("/fe/answer_sheets/<%= @answer_sheet.id %>/page/<%= @page.id %>/edit?answer_sheet_type=<%= @answer_sheet.class.name %>", function(data) {
127
+ $('<%= base_element %>').replaceWith($(data).find('<%= base_element %>'))
128
+ });
129
+ },
130
+ onError: function(event, name, error) {
131
+ $("<%= base_element %> .upload_field").data('error', true)
132
+ $('<%= base_element %> .progress_report_status').text('Error while uploading file ' + name)
133
+ }, onBrowserIncompatible: function() {
134
+ $("<%= base_element %> .legacy_uploader").show();
135
+ $("<%= base_element %> .new_uploader").hide();
136
+ },
137
+ });
138
+
139
+ // this is absolutely necessary -- see http://weblog.bocoup.com/using-datatransfer-with-jquery-events/
140
+ if ($.fn.jquery.substring(0, 2) == "3.") {
141
+ $.event.addProp('dataTransfer');
142
+ } else {
143
+ $.event.props.push('dataTransfer');
144
+ }
145
+
146
+ var $drop = $('<%= base_element %> .drop_area');
147
+ $drop.on('dragover dragenter', function(e) {
148
+ $drop.addClass('file_hover');
149
+ return false;
150
+ }).on('dragleave dragexit', function(e) {
151
+ $drop.removeClass('file_hover');
152
+ return false;
153
+ }).on( 'drop', function(e) {
154
+ if(e.originalEvent.dataTransfer && e.originalEvent.dataTransfer.files.length) {
155
+ $input.trigger('html5_upload.startFromDrop', e );
156
+ }
157
+ return false;
158
+ })
159
+
160
+ });
161
+ </script>
162
+ </div>
163
+ <% end %>
45
164
  <% end %>
46
165
  <% end %>
@@ -1,4 +1,4 @@
1
- <% if checkbox_field.hide_option_labels? && !['question_pages', 'question_sheets', 'elements'].include?(controller.controller_name) %>
1
+ <% if checkbox_field.hide_option_labels? && !["question_pages", "question_sheets", "elements"].include?(controller.controller_name) %>
2
2
  <tr id="<%= dom_id(checkbox_field) %>">
3
3
  <td>
4
4
  <label for="<%= dom_id(checkbox_field) %>" class="desc">
@@ -10,40 +10,42 @@
10
10
  <% choices = checkbox_field.choices(session[:locale]) %>
11
11
  <% choices.each_with_index do |choice, num| -%>
12
12
  <td>
13
- <% css_class = checkbox_field.css_class.to_s + ' checkbox ' -%>
13
+ <% css_class = checkbox_field.css_class.to_s + " checkbox " -%>
14
14
  <% dom_id = dom_id(checkbox_field) + "_" + pretty_tag(choice[1])
15
15
  last_choice = (num == choices.length - 1)
16
- css_class += checkbox_field.validation_class(@answer_sheet) if last_choice
17
- -%>
18
- <%= hidden_field_tag "answers[#{checkbox_field.id}][#{num}]", '', :id => '' %>
16
+ css_class += checkbox_field.validation_class(@answer_sheet, @page) if last_choice
17
+ locked = checkbox_field.locked?(params, @answer_sheet, @presenter, current_person)
18
+ %>
19
+ <%= hidden_field_tag "answers[#{checkbox_field.id}][#{num}]", "", id: "" %>
19
20
  <div class="field field_check">
20
21
  <%= check_box_tag "answers[#{checkbox_field.id}][#{num}]", choice[1],
21
22
  checkbox_field.has_answer?(choice[1], @answer_sheet),
22
- :id => dom_id,
23
- :class => css_class,
24
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
25
- :readonly => @answer_sheet.frozen?&&!@presenter.try(:reference?) %>
23
+ id: dom_id,
24
+ class: css_class,
25
+ disabled: locked,
26
+ readonly: locked %>
26
27
  </div>
27
28
  </td>
28
29
  <% end -%>
29
30
  </tr>
30
31
  <% else %>
31
32
  <div id="<%= dom_id(checkbox_field) %>">
32
- <% css_class = checkbox_field.css_class.to_s + ' checkbox ' -%>
33
+ <% css_class = checkbox_field.css_class.to_s + " checkbox " -%>
33
34
  <% choices = checkbox_field.choices(session[:locale]) %>
34
35
  <% choices.each_with_index do |choice, num| -%>
35
36
  <% dom_id = dom_id(checkbox_field) + "_" + pretty_tag(choice[1])
36
37
  last_choice = (num == choices.length - 1)
37
- css_class += checkbox_field.validation_class(@answer_sheet) if last_choice
38
+ css_class += checkbox_field.validation_class(@answer_sheet, @page) if last_choice
39
+ locked = checkbox_field.locked?(params, @answer_sheet, @presenter, current_person)
38
40
  %>
39
- <%= hidden_field_tag "answers[#{checkbox_field.id}][#{num}]", '', :id => '' %>
41
+ <%= hidden_field_tag "answers[#{checkbox_field.id}][#{num}]", "", id: "" %>
40
42
  <div class="field field_check">
41
43
  <%= check_box_tag "answers[#{checkbox_field.id}][#{num}]", choice[1],
42
44
  checkbox_field.has_answer?(choice[1], @answer_sheet),
43
- :id => dom_id,
44
- :class => css_class,
45
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
46
- :readonly => @answer_sheet.frozen?&&!@presenter.try(:reference?) %>
45
+ id: dom_id,
46
+ class: css_class,
47
+ disabled: locked,
48
+ readonly: locked %>
47
49
  <label class="choice" for="<%= dom_id %>"><%= choice[0] %></label>
48
50
  </div>
49
51
  <% end -%>
@@ -1,7 +1,7 @@
1
- <% locked = country.locked?(params, @answer_sheet, @presenter) %>
1
+ <% locked = country.locked?(params, @answer_sheet, @presenter, current_person) %>
2
2
  <%= select_tag "answers[#{country.id}]",
3
- options_for_select([''] + Carmen.countries, country.response(@answer_sheet).to_s),
4
- :class => 'select ' + country.validation_class(@answer_sheet),
5
- :id => dom_id(country),
6
- :disabled => locked,
7
- :readonly => locked %>
3
+ options_for_select([""] + Carmen.countries, country.response(@answer_sheet).to_s),
4
+ class: "#{"form-control" if Fe.bootstrap} select " + country.validation_class(@answer_sheet, @page),
5
+ id: dom_id(country),
6
+ disabled: locked,
7
+ readonly: locked %>
@@ -1,6 +1,7 @@
1
+ <% locked = date_field.locked?(params, @answer_sheet, @presenter, current_person) %>
1
2
  <%= calendar_date_select_tag "answers[#{date_field.id}]", date_field.format_date_response(@answer_sheet),
2
- :class => 'text ' + date_field.validation_class(@answer_sheet),
3
- :id => dom_id(date_field),
4
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
5
- :readonly => true %>
3
+ class: "#{"form-control" if Fe.bootstrap} text " + date_field.validation_class(@answer_sheet, @page),
4
+ id: dom_id(date_field),
5
+ disabled: locked,
6
+ readonly: true %>
6
7
  <div id="advice-required-<%= dom_id(date_field) %>" class="validation-advice" style="display: none;">This is a required field.</div>
@@ -1,9 +1,9 @@
1
- <%= select_month(date_field_mmyy.response(@answer_sheet), :include_blank => true,
2
- :prefix => "answers[#{date_field_mmyy.id}]",
3
- :class => 'select ' + date_field_mmyy.validation_class(@answer_sheet)) %>
4
- <%= select_year(date_field_mmyy.response(@answer_sheet), :include_blank => true,
5
- :start_year => Time.now.year - 50, :end_year => Time.now.year + 7,
6
- :prefix => "answers[#{date_field_mmyy.id}]",
7
- :class => 'select ' + date_field_mmyy.validation_class(@answer_sheet)) %>
1
+ <%= select_month(date_field_mmyy.response(@answer_sheet), include_blank: true,
2
+ prefix: "answers[#{date_field_mmyy.id}]",
3
+ class: "#{"form-control" if Fe.bootstrap} select " + date_field_mmyy.validation_class(@answer_sheet, @page)) %>
4
+ <%= select_year(date_field_mmyy.response(@answer_sheet), include_blank: true,
5
+ start_year: Time.now.year - 50, end_year: Time.now.year + 7,
6
+ prefix: "answers[#{date_field_mmyy.id}]",
7
+ class: "select " + date_field_mmyy.validation_class(@answer_sheet, @page)) %>
8
8
 
9
- <% # not validated because class doesn't pass, see ticket #6000 -%>
9
+ <% # not validated because class doesn"t pass, see ticket #6000 -%>
@@ -1,8 +1,8 @@
1
1
  <% choices = drop_down_field.choices(session[:locale]) %>
2
- <% locked = drop_down_field.locked?(params, @answer_sheet, @presenter) %>
2
+ <% locked = drop_down_field.locked?(params, @answer_sheet, @presenter, current_person) %>
3
3
  <%= select_tag "answers[#{drop_down_field.id}]",
4
4
  options_for_select([""] + choices, drop_down_field.response(@answer_sheet).to_s),
5
- :class => 'form-control select ' + drop_down_field.validation_class(@answer_sheet) + " #{drop_down_field.css_class}",
6
- :id => dom_id(drop_down_field),
7
- :disabled => locked,
8
- :readonly => locked %>
5
+ class: "form-control select " + drop_down_field.validation_class(@answer_sheet, @page) + " #{drop_down_field.css_class}",
6
+ id: dom_id(drop_down_field),
7
+ disabled: locked,
8
+ readonly: locked %>
@@ -1,4 +1,4 @@
1
- <%- if ['question_pages', 'question_sheets', 'elements'].include?(controller.controller_name) -%>
1
+ <%- if ["question_pages", "question_sheets", "elements"].include?(controller.controller_name) -%>
2
2
  <div class="droppable" data-url="<%= drop_fe_admin_question_sheet_page_element_path(@page.question_sheet_id, @page.id, question_grid.id) %>">
3
3
  <% if question_grid.label.present? && !question_grid.hide_label? -%>
4
4
  <label class="desc gridname">
@@ -10,7 +10,7 @@
10
10
  <!-- Create a sortable list for each grid on the page -->
11
11
  <ul class="questions" id="questions_list_<%= question_grid.id %>" data-sortable="true" data-sortable-url="<%= reorder_fe_admin_question_sheet_page_elements_path(@page.question_sheet_id, @page.id) %>" data-sortable-handle=".handle">
12
12
  <%- if question_grid.elements.length > 0 -%>
13
- <%= render :partial => 'fe/admin/question_pages/element', :collection => question_grid.elements, :locals => {:in_grid => true} %>
13
+ <%= render partial: "fe/admin/question_pages/element", collection: question_grid.elements, locals: {in_grid: true} %>
14
14
  <%- else -%>
15
15
  Grid
16
16
  <%- end -%>
@@ -21,27 +21,27 @@
21
21
  <% if question_grid.label.present? && !question_grid.hide_label? -%>
22
22
  <label class="desc gridname"><%= raw question_grid.label(session[:locale]) %></label>
23
23
  <% end %>
24
- <% headers = question_grid.cols.to_s.split(';') %>
24
+ <% headers = question_grid.cols.to_s.split(";") %>
25
25
  <% if headers.length > 1 %>
26
26
  <table class="grid <%= question_grid.css_class %>" id="<%= question_grid.css_id %>">
27
27
  <% if headers.detect {|h| h.strip.present?} %>
28
28
  <tr>
29
29
  <%- headers.each do |header| -%>
30
- <th><%= raw header || '&nbsp;' %></th>
30
+ <th><%= raw header || "&nbsp;" %></th>
31
31
  <%- end -%>
32
32
  </tr>
33
33
  <% end %>
34
- <% if question_grid.style == 'radio' %>
34
+ <% if question_grid.style == "radio" %>
35
35
  <% question_grid.elements.each do |element| -%>
36
- <%= render :partial => 'fe/answer_pages/element', :object => element %>
36
+ <%= render partial: "fe/answer_pages/element", object: element %>
37
37
  <% end %>
38
38
  <% else %>
39
39
  <tr >
40
40
  <%- col_count = 0; previous_element = nil;
41
41
  question_grid.elements.each do |element| -%>
42
- <td style="<%= 'display:none' if previous_element && previous_element.conditional == element && !previous_element.conditional_match(@answer_sheet) %>" class="hidecell <%= element.class.to_s.downcase.gsub('::','_') %> <%= element.style.to_s.downcase %> <%= 'conditional' if element.conditional %>" id="element_<%= element.id %>" <% if element.conditional %>data-conditional_id="<%= element.conditional_id %>" data-conditional_type="<%= element.conditional_type %>" data-conditional_answer="<%= element.conditional_answer %>" data-application_id="<%= @answer_sheet.id %>" data-answer_sheet_id_prefix="<%= @answer_sheet.class.name.underscore.gsub('/','_') %>"<% end %>>
42
+ <td style="<%= "display:none" if previous_element && previous_element.conditional == element && !previous_element.conditional_match(@answer_sheet) %>" class="hidecell <%= element.class.to_s.downcase.gsub("::","_") %> <%= element.style.to_s.downcase %> <%= "conditional" if element.conditional %>" id="element_<%= element.id %>" <% if element.conditional %>data-conditional_id="<%= element.conditional_id %>" data-conditional_type="<%= element.conditional_type %>" data-conditional_answer="<%= element.conditional_answer %>" data-application_id="<%= @answer_sheet.id %>" data-answer_sheet_id_prefix="<%= @answer_sheet.class.name.underscore.gsub("/","_") %>"<% end %>>
43
43
  <%# grid_el = @elements.to_a.find {|el| el.id == element.id} %>
44
- <%= render :partial => 'fe/answer_pages/element', :object => element, :locals => {:col => col_count} %>
44
+ <%= render partial: "fe/answer_pages/element", object: element, locals: {col: col_count} %>
45
45
  </td>
46
46
  <%- previous_element = element;
47
47
  col_count += 1
@@ -60,8 +60,8 @@
60
60
  <% end %>
61
61
  <% previous_element = nil %>
62
62
  <% question_grid.elements.each do |element| -%>
63
- <div style="<%= 'display:none' if previous_element && previous_element.conditional == element && !previous_element.conditional_match(@answer_sheet) %>" class="row <%= element.class.to_s.downcase.gsub('::','_') %> <%= element.style.to_s.downcase %> <%= 'conditional' if element.conditional %>" id="element_<%= element.id %>" <% if element.conditional %>data-conditional_id="<%= element.conditional_id %>" data-conditional_type="<%= element.conditional_type %>" data-conditional_answer="<%= element.conditional_answer %>" data-application_id="<%= @answer_sheet.id %>" data-answer_sheet_id_prefix="<%= @answer_sheet.class.name.underscore.gsub('/','_') %>"<% end %>>
64
- <%= render :partial => 'fe/answer_pages/element', :object => element, :locals => {:in_grid => true} %>
63
+ <div style="<%= "display:none" if previous_element && previous_element.conditional == element && !previous_element.conditional_match(@answer_sheet) %>" class="<%= "row" unless Fe.bootstrap %> <%= element.class.to_s.downcase.gsub("::","_") %> <%= element.style.to_s.downcase %> <%= "conditional" if element.conditional %>" id="element_<%= element.id %>" <% if element.conditional %>data-conditional_id="<%= element.conditional_id %>" data-conditional_type="<%= element.conditional_type %>" data-conditional_answer="<%= element.conditional_answer %>" data-application_id="<%= @answer_sheet.id %>" data-answer_sheet_id_prefix="<%= @answer_sheet.class.name.underscore.gsub("/","_") %>"<% end %>>
64
+ <%= render partial: "fe/answer_pages/element", object: element, locals: {in_grid: true} %>
65
65
  </div>
66
66
  <% previous_element = element %>
67
67
  <% end %>
@@ -1,10 +1,10 @@
1
- <%- if ['question_pages', 'question_sheets', 'elements'].include?(controller.controller_name) -%>
1
+ <%- if ["question_pages", "question_sheets", "elements"].include?(controller.controller_name) -%>
2
2
  <div class="droppable" data-url="<%= drop_fe_admin_question_sheet_page_element_path(@page.question_sheet_id, @page.id, question_grid_with_total.id) %>">
3
3
  <label class="desc"><%= raw question_grid_with_total.label(session[:locale]) %></label>
4
4
  <div>
5
5
  <ul class="questions" id="questions_list_<%= question_grid_with_total.id %>" data-sortable="true" data-sortable-url="<%= reorder_fe_admin_question_sheet_page_elements_path(@page.question_sheet_id, @page.id) %>" data-sortable-handle=".handle">
6
6
  <%- if question_grid_with_total.elements.length > 0 -%>
7
- <%= render :partial => 'fe/admin/question_pages/element', :collection => question_grid_with_total.elements, :locals => {:in_grid => true} %>
7
+ <%= render partial: "fe/admin/question_pages/element", collection: question_grid_with_total.elements, locals: {in_grid: true} %>
8
8
  <%- else -%>
9
9
  Grid
10
10
  <%- end -%>
@@ -14,11 +14,11 @@
14
14
  <%- else -%>
15
15
  <label class="desc"><%= raw question_grid_with_total.label(session[:locale]) %></label>
16
16
  <table class="grid with_total">
17
- <% headers = question_grid_with_total.cols.to_s.split(';') %>
17
+ <% headers = question_grid_with_total.cols.to_s.split(";") %>
18
18
  <% if headers.detect {|h| h.strip.present?} %>
19
19
  <tr>
20
20
  <%- headers.each do |header| -%>
21
- <th><%= header || '&nbsp;' %></th>
21
+ <th><%= header || "&nbsp;" %></th>
22
22
  <%- end -%>
23
23
  </tr>
24
24
  <% end %>
@@ -27,8 +27,8 @@
27
27
  question_grid_with_total.elements.each do |element| -%>
28
28
  <td id="element_<%= element.id %>">
29
29
  <%# grid_el = @elements.to_a.find {|el| el.id == element.id} %>
30
- <% col_count = (col_count + 1) % question_grid_with_total.num_cols %>
31
- <%= render :partial => 'fe/answer_pages/element', :object => element, :locals => {:in_grid => true, :col => col_count} %>
30
+ <% col_count = col_count % question_grid_with_total.num_cols unless Fe.bootstrap %>
31
+ <%= render partial: "fe/answer_pages/element", object: element, locals: {in_grid: true, col: col_count} %>
32
32
  </td>
33
33
  <%- col_count += 1
34
34
  if col_count % question_grid_with_total.num_cols == 0 && element != question_grid_with_total.elements.last then col_count = 0 -%></tr><tr><%- end -%>
@@ -41,12 +41,12 @@
41
41
  <%- if question_grid_with_total.total_cols.present? -%>
42
42
  <tr class="total">
43
43
  <td>Total</td>
44
- <%- total_cols = question_grid_with_total.total_cols.split(',').collect(&:to_i)
44
+ <%- total_cols = question_grid_with_total.total_cols.split(",").collect(&:to_i)
45
45
  (question_grid_with_total.num_cols - 1).times do |i|
46
46
  ci = i + 2
47
47
  if total_cols.include?(ci) -%>
48
48
  <td>
49
- <%= text_field_tag "total_#{question_grid_with_total.id}_#{i + 1}", '', :class => 'text validate-number', :readonly => true %>
49
+ <%= text_field_tag "total_#{question_grid_with_total.id}_#{i + 1}", "", class: "text validate-number", readonly: true %>
50
50
  <script>
51
51
  $("#<%= "total_#{question_grid_with_total.id}_#{i + 1}" %>").closest("table").find("td:nth-child(<%= ci %>)").change(function() {
52
52
  updateTotal("<%= question_grid_with_total.id %>_<%= i+1 %>");
@@ -1,9 +1,15 @@
1
1
  <ul>
2
2
  <% questions.each do |question| %>
3
- <li><%= link_to(use_existing_fe_admin_question_sheet_page_element_path(:question_sheet_id => @page.question_sheet_id, :page_id => @page.id, :id => question.id),
4
- :remote => true, :method => :post) do %>
5
- <span>select</span><label><%= raw question.label(session[:locale]) %></label>
6
- <% end %>
7
- </li>
3
+ <li class="new-dialog-<%= dom_id(question) %>">
4
+ <% unless Fe.never_reuse_elements %>
5
+ <%= link_to(use_existing_fe_admin_question_sheet_page_element_path(question_sheet_id: @page.question_sheet_id, page_id: @page.id, id: question.id), remote: true, method: :post, onClick: "$('li.new-dialog-#{dom_id(question)}').html('Inserting...')") do %>
6
+ <span>Insert</span><label>
7
+ <% end %>
8
+ <% end %>
9
+ <%= link_to(copy_existing_fe_admin_question_sheet_page_element_path(question_sheet_id: @page.question_sheet_id, page_id: @page.id, id: question.id), remote: true, method: :post, onClick: "$('li.new-dialog-#{dom_id(question)}').html('Copying... This can take a minute')") do %>
10
+ <span>Copy</span>
11
+ <% end %>
12
+ <label><%= raw question.label(session[:locale]) %></label>
13
+ </li>
8
14
  <% end %>
9
15
  </ul>
@@ -1,7 +1,7 @@
1
1
  <% choices = radio_button_field.choices(session[:locale]) %>
2
- <% css_class = 'radio ' -%>
3
- <% css_class += 'required' if radio_button_field.required?(@answer_sheet, @page) %>
4
- <% if radio_button_field.hide_option_labels? && !['question_pages', 'question_sheets', 'elements'].include?(controller.controller_name) %>
2
+ <% css_class = "radio " -%>
3
+ <% css_class += "required" if radio_button_field.required?(@answer_sheet, @page) %>
4
+ <% if radio_button_field.hide_option_labels? && !["question_pages", "question_sheets", "elements"].include?(controller.controller_name) %>
5
5
  <tr id="<%= dom_id(radio_button_field) %>">
6
6
  <td class="col1">
7
7
  <label for="<%= dom_id(radio_button_field) %>" class="desc">
@@ -14,13 +14,15 @@
14
14
  <td class="col">
15
15
  <% dom_id = dom_id(radio_button_field) + "_" + pretty_tag(choice[1])
16
16
  last_choice = (num == choices.length - 1)
17
- css_class += radio_button_field.validation_class(@answer_sheet) if last_choice
18
- checked = radio_button_field.has_answer?(choice[1], @answer_sheet) -%>
17
+ css_class += radio_button_field.validation_class(@answer_sheet, @page) if last_choice
18
+ checked = radio_button_field.has_answer?(choice[1], @answer_sheet)
19
+ locked = radio_button_field.locked?(params, @answer_sheet, @presenter, current_person)
20
+ %>
19
21
  <%= radio_button_tag "answers[#{radio_button_field.id}]", choice[1], checked,
20
- :id => dom_id,
21
- :class => css_class,
22
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
23
- :readonly => @answer_sheet.frozen?&&!@presenter.try(:reference?) %>
22
+ id: dom_id,
23
+ class: css_class,
24
+ disabled: locked,
25
+ readonly: locked %>
24
26
  </td>
25
27
  <% end -%>
26
28
  </tr>
@@ -29,16 +31,30 @@
29
31
  <% choices.each_with_index do |choice, num| -%>
30
32
  <% dom_id = dom_id(radio_button_field) + "_" + pretty_tag(choice[1])
31
33
  last_choice = (num == choices.length - 1)
32
- css_class += radio_button_field.validation_class(@answer_sheet) if last_choice
33
- checked = radio_button_field.has_answer?(choice[1], @answer_sheet) -%>
34
- <div class="radio-set">
35
- <%= radio_button_tag "answers[#{radio_button_field.id}]", choice[1], checked,
36
- :id => dom_id,
37
- :class => css_class,
38
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
39
- :readonly => @answer_sheet.frozen?&&!@presenter.try(:reference?) %>
40
- <label class="choice" for="<%= dom_id %>"><%= choice[0] %></label>
41
- </div>
34
+ css_class += radio_button_field.validation_class(@answer_sheet, @page) if last_choice
35
+ checked = radio_button_field.has_answer?(choice[1], @answer_sheet)
36
+ locked = radio_button_field.locked?(params, @answer_sheet, @presenter, current_person)
37
+ %>
38
+ <% if Fe.bootstrap %>
39
+ <div class="radio <%= "disabled" if locked %> radio-set">
40
+ <label class="choice" for="<%= dom_id %>">
41
+ <%= radio_button_tag "answers[#{radio_button_field.id}]", choice[1], checked,
42
+ id: dom_id,
43
+ class: css_class,
44
+ disabled: locked,
45
+ readonly: locked %>
46
+ <%= choice[0] %>
47
+ </label>
48
+ <% else %>
49
+ <div class="radio-set">
50
+ <%= radio_button_tag "answers[#{radio_button_field.id}]", choice[1], checked,
51
+ id: dom_id,
52
+ class: css_class,
53
+ disabled: locked,
54
+ readonly: locked %>
55
+ <label class="choice" for="<%= dom_id %>"><%= choice[0] %></label>
56
+ </div>
57
+ <% end %>
42
58
  <% end -%>
43
59
  </div>
44
60
  <% end %>
@@ -1,26 +1,64 @@
1
1
  <% choices = rating.choices(session[:locale]) %>
2
2
  <% dom_id = "" %>
3
+ <% locked = rating.locked?(params, @answer_sheet, @presenter, current_person) %>
3
4
  <div id="<%= dom_id(rating) %>">
4
5
  <table cellspacing="0" class="rating">
5
6
  <tr>
6
- <% css_class = ' ' -%>
7
- <% choices.each_with_index do |choice, num| -%>
8
- <% dom_id = dom_id(rating) + "_" + pretty_tag(choice[1])
9
- last_choice = (num == choices.length - 1)
10
- css_class += rating.validation_class(@answer_sheet) if last_choice
11
- checked = rating.has_answer?(choice[1],@answer_sheet) -%>
12
- <td><%= radio_button_tag "answers[#{rating.id}]", choice[1], checked,
13
- :id => dom_id,
14
- :class => css_class,
15
- :disabled => @answer_sheet.frozen?&&!@presenter.try(:reference?),
16
- :readonly => @answer_sheet.frozen?&&!@presenter.try(:reference?) %></td>
17
- <% end -%>
18
- </tr>
19
- <tr>
20
- <% choices.each do |choice| %>
21
- <td><%= choice[0] %></td>
22
- <% end -%>
7
+ <% if rating.rating_before_label.present? %>
8
+ <td class="rating_before">
9
+ <% first_dom = dom_id(rating) + "_" + pretty_tag(choices.first[1]) %>
10
+ <label class="no_label_styles" for="<%= first_dom %>">
11
+ <%= rating.rating_before_label(session[:locale]) %>
12
+ </label>
13
+ </td>
14
+ <% end %>
15
+ <% css_class = " " %>
16
+ <% choices.each_with_index do |choice, num| %>
17
+ <% dom_id = dom_id(rating) + "_" + pretty_tag(choice[1])
18
+ last_choice = (num == choices.length - 1)
19
+ css_class += rating.validation_class(@answer_sheet, @page) if last_choice
20
+ checked = rating.has_answer?(choice[1],@answer_sheet) %>
21
+ <td class="rating_choice"><%= radio_button_tag "answers[#{rating.id}]", choice[1], checked,
22
+ id: dom_id,
23
+ class: css_class,
24
+ disabled: locked,
25
+ readonly: locked %></td>
26
+ <% end %>
27
+ <% if rating.rating_after_label.present? %>
28
+ <td class="rating_after">
29
+ <% last_dom = dom_id(rating) + "_" + pretty_tag(choices.last[1]) %>
30
+ <label class="no_label_styles" for="<%= last_dom %>">
31
+ <%= rating.rating_after_label(session[:locale]) %>
32
+ </label>
33
+ </td>
34
+ <% end %>
35
+ <% if rating.rating_na_label.present? %>
36
+ <% choice = "na"
37
+ dom_id = dom_id(rating) + "_" + pretty_tag(choice)
38
+ checked = rating.has_answer?(choice, @answer_sheet) %>
39
+ <td class="rating_na">
40
+ <%= radio_button_tag "answers[#{rating.id}]", "na", checked,
41
+ id: dom_id,
42
+ class: "",
43
+ disabled: locked,
44
+ readonly: locked %>
45
+ </td>
46
+ <td class="rating_na_label">
47
+ <label class="no_label_styles" for="<%= dom_id %>">
48
+ <%= rating.rating_na_label(session[:locale]) %>
49
+ </label>
50
+ </td>
51
+ <% end %>
23
52
  </tr>
53
+ <% unless rating.hide_option_labels %>
54
+ <tr>
55
+ <% if rating.rating_before_label.present? %><td></td><% end %>
56
+ <% choices.each do |choice| %>
57
+ <td class="rating_choice"><%= choice[0].html_safe %></td>
58
+ <% end %>
59
+ <% if rating.rating_after_label.present? %><td></td><% end %>
60
+ </tr>
61
+ <% end %>
24
62
  </table>
25
- <div id="advice-validate-rating-<%= dom_id %>" class="validation-advice" style="display: none;"><%= _('Please select one of the above options.') %></div>
63
+ <div id="advice-validate-rating-<%= dom_id %>" class="validation-advice" style="display: none;"><%= _("Please select one of the above options.") %></div>
26
64
  </div>
@@ -1 +1 @@
1
- <%= render 'fe/questions/fe/reference_question', :reference_question => reference_discipler, :title => _('Discipler Reference') %>
1
+ <%= render "fe/questions/fe/reference_question", reference_question: reference_discipler, title: _("Discipler Reference") %>
@@ -1 +1 @@
1
- <%= render 'fe/questions/fe/reference_question', :reference_question => reference_friend, :title => _('Friend Reference') %>
1
+ <%= render "fe/questions/fe/reference_question", reference_question: reference_friend, title: _("Friend Reference") %>
@@ -1 +1 @@
1
- <%= render 'fe/questions/fe/reference_question', :reference_question => reference_parent, :title => _('Parent Reference') %>
1
+ <%= render "fe/questions/fe/reference_question", reference_question: reference_parent, title: _("Parent Reference") %>
@@ -1 +1 @@
1
- <%= render 'fe/questions/fe/reference_question', :reference_question => reference_peer, :title => _('Peer Reference') %>
1
+ <%= render "fe/questions/fe/reference_question", reference_question: reference_peer, title: _("Peer Reference") %>