spina-admin-conferences-fork 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (210) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +100 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/config/spina_admin_conferences_manifest.js +3 -0
  6. data/app/assets/javascripts/controllers/spina/admin/conferences/conference_events_form_controller.js +174 -0
  7. data/app/assets/javascripts/controllers/spina/admin/conferences/presentation_attachments_form_controller.js +174 -0
  8. data/app/assets/javascripts/controllers/spina/admin/conferences/select_options_controller.js +215 -0
  9. data/app/assets/javascripts/importmap.json.erb +6 -0
  10. data/app/assets/javascripts/spina/admin/conferences/application.js +4 -0
  11. data/app/assets/stylesheets/spina/admin/conferences/application.sass +3 -0
  12. data/app/controllers/spina/admin/conferences/application_controller.rb +23 -0
  13. data/app/controllers/spina/admin/conferences/conferences_controller.rb +139 -0
  14. data/app/controllers/spina/admin/conferences/delegates_controller.rb +114 -0
  15. data/app/controllers/spina/admin/conferences/dietary_requirements_controller.rb +106 -0
  16. data/app/controllers/spina/admin/conferences/events_controller.rb +24 -0
  17. data/app/controllers/spina/admin/conferences/institutions_controller.rb +106 -0
  18. data/app/controllers/spina/admin/conferences/presentation_attachment_types_controller.rb +104 -0
  19. data/app/controllers/spina/admin/conferences/presentation_attachments_controller.rb +24 -0
  20. data/app/controllers/spina/admin/conferences/presentation_types_controller.rb +109 -0
  21. data/app/controllers/spina/admin/conferences/presentations_controller.rb +123 -0
  22. data/app/controllers/spina/admin/conferences/rooms_controller.rb +109 -0
  23. data/app/controllers/spina/admin/conferences/sessions_controller.rb +118 -0
  24. data/app/jobs/spina/admin/conferences/application_job.rb +11 -0
  25. data/app/jobs/spina/admin/conferences/delegate_import_job.rb +37 -0
  26. data/app/jobs/spina/admin/conferences/import_job.rb +26 -0
  27. data/app/jobs/spina/admin/conferences/presentation_import_job.rb +37 -0
  28. data/app/mailers/spina/admin/conferences/application_mailer.rb +13 -0
  29. data/app/models/spina/admin/conferences/application_record.rb +14 -0
  30. data/app/models/spina/admin/conferences/conference.rb +269 -0
  31. data/app/models/spina/admin/conferences/delegate.rb +89 -0
  32. data/app/models/spina/admin/conferences/dietary_requirement.rb +33 -0
  33. data/app/models/spina/admin/conferences/event.rb +85 -0
  34. data/app/models/spina/admin/conferences/institution.rb +46 -0
  35. data/app/models/spina/admin/conferences/presentation.rb +134 -0
  36. data/app/models/spina/admin/conferences/presentation_attachment.rb +27 -0
  37. data/app/models/spina/admin/conferences/presentation_attachment_type.rb +35 -0
  38. data/app/models/spina/admin/conferences/presentation_type.rb +60 -0
  39. data/app/models/spina/admin/conferences/room.rb +52 -0
  40. data/app/models/spina/admin/conferences/session.rb +56 -0
  41. data/app/models/spina/admin/conferences.rb +11 -0
  42. data/app/models/spina/parts/admin/conferences/date.rb +14 -0
  43. data/app/models/spina/parts/admin/conferences/email_address.rb +20 -0
  44. data/app/models/spina/parts/admin/conferences/time.rb +14 -0
  45. data/app/models/spina/parts/admin/conferences/url.rb +20 -0
  46. data/app/validators/spina/admin/conferences/conference_date_validator.rb +20 -0
  47. data/app/validators/spina/admin/conferences/email_address_validator.rb +28 -0
  48. data/app/validators/spina/admin/conferences/finish_date_validator.rb +20 -0
  49. data/app/validators/spina/admin/conferences/finish_time_validator.rb +20 -0
  50. data/app/validators/spina/admin/conferences/http_url_validator.rb +28 -0
  51. data/app/views/layouts/spina/admin/conferences/application.html.haml +6 -0
  52. data/app/views/layouts/spina/admin/conferences/conferences.html.haml +17 -0
  53. data/app/views/layouts/spina/admin/conferences/delegates.html.haml +8 -0
  54. data/app/views/layouts/spina/admin/conferences/dietary_requirements.html.haml +8 -0
  55. data/app/views/layouts/spina/admin/conferences/institutions.html.haml +15 -0
  56. data/app/views/layouts/spina/admin/conferences/presentation_attachment_types.html.haml +8 -0
  57. data/app/views/layouts/spina/admin/conferences/presentations.html.haml +8 -0
  58. data/app/views/spina/admin/conferences/application/_conferences.html.haml +12 -0
  59. data/app/views/spina/admin/conferences/application/_delegates.html.haml +11 -0
  60. data/app/views/spina/admin/conferences/application/_dietary_requirements.html.haml +9 -0
  61. data/app/views/spina/admin/conferences/application/_empty_list.html.haml +3 -0
  62. data/app/views/spina/admin/conferences/application/_errors.html.haml +11 -0
  63. data/app/views/spina/admin/conferences/application/_errors.turbo_stream.haml +1 -0
  64. data/app/views/spina/admin/conferences/application/_institutions.html.haml +10 -0
  65. data/app/views/spina/admin/conferences/application/_presentation_attachment_types.html.haml +10 -0
  66. data/app/views/spina/admin/conferences/application/_presentation_types.html.haml +11 -0
  67. data/app/views/spina/admin/conferences/application/_presentations.html.haml +11 -0
  68. data/app/views/spina/admin/conferences/application/_rooms.html.haml +11 -0
  69. data/app/views/spina/admin/conferences/application/_sessions.html.haml +11 -0
  70. data/app/views/spina/admin/conferences/conferences/_conference.html.haml +9 -0
  71. data/app/views/spina/admin/conferences/conferences/_event_fields.html.haml +31 -0
  72. data/app/views/spina/admin/conferences/conferences/_event_row.html.haml +5 -0
  73. data/app/views/spina/admin/conferences/conferences/_form.html.haml +27 -0
  74. data/app/views/spina/admin/conferences/conferences/_form_conference_details.html.haml +27 -0
  75. data/app/views/spina/admin/conferences/conferences/_form_parts.html.haml +8 -0
  76. data/app/views/spina/admin/conferences/conferences/_form_structure.html.haml +19 -0
  77. data/app/views/spina/admin/conferences/conferences/_form_structure_item.html.haml +13 -0
  78. data/app/views/spina/admin/conferences/conferences/edit.html.haml +1 -0
  79. data/app/views/spina/admin/conferences/conferences/index.html.haml +7 -0
  80. data/app/views/spina/admin/conferences/conferences/new.html.haml +1 -0
  81. data/app/views/spina/admin/conferences/delegates/_delegate.html.haml +13 -0
  82. data/app/views/spina/admin/conferences/delegates/_form.html.haml +24 -0
  83. data/app/views/spina/admin/conferences/delegates/_form_delegate_details.html.haml +53 -0
  84. data/app/views/spina/admin/conferences/delegates/edit.html.haml +1 -0
  85. data/app/views/spina/admin/conferences/delegates/index.html.haml +13 -0
  86. data/app/views/spina/admin/conferences/delegates/new.html.haml +1 -0
  87. data/app/views/spina/admin/conferences/dietary_requirements/_dietary_requirement.html.haml +6 -0
  88. data/app/views/spina/admin/conferences/dietary_requirements/_form.html.haml +23 -0
  89. data/app/views/spina/admin/conferences/dietary_requirements/_form_dietary_requirement_details.html.haml +8 -0
  90. data/app/views/spina/admin/conferences/dietary_requirements/edit.html.haml +1 -0
  91. data/app/views/spina/admin/conferences/dietary_requirements/index.html.haml +7 -0
  92. data/app/views/spina/admin/conferences/dietary_requirements/new.html.haml +1 -0
  93. data/app/views/spina/admin/conferences/events/new.js.erb +21 -0
  94. data/app/views/spina/admin/conferences/institutions/_form.html.haml +24 -0
  95. data/app/views/spina/admin/conferences/institutions/_form_institution_details.html.haml +29 -0
  96. data/app/views/spina/admin/conferences/institutions/_institution.html.haml +7 -0
  97. data/app/views/spina/admin/conferences/institutions/edit.html.haml +1 -0
  98. data/app/views/spina/admin/conferences/institutions/index.html.haml +7 -0
  99. data/app/views/spina/admin/conferences/institutions/new.html.haml +1 -0
  100. data/app/views/spina/admin/conferences/presentation_attachment_types/_form.html.haml +23 -0
  101. data/app/views/spina/admin/conferences/presentation_attachment_types/_presentation_attachment_type.html.haml +6 -0
  102. data/app/views/spina/admin/conferences/presentation_attachment_types/edit.html.haml +1 -0
  103. data/app/views/spina/admin/conferences/presentation_attachment_types/index.html.haml +7 -0
  104. data/app/views/spina/admin/conferences/presentation_attachment_types/new.html.haml +1 -0
  105. data/app/views/spina/admin/conferences/presentation_attachments/new.js.erb +21 -0
  106. data/app/views/spina/admin/conferences/presentation_types/_form.html.haml +24 -0
  107. data/app/views/spina/admin/conferences/presentation_types/_form_presentation_type_details.html.haml +16 -0
  108. data/app/views/spina/admin/conferences/presentation_types/_presentation_type.html.haml +8 -0
  109. data/app/views/spina/admin/conferences/presentation_types/edit.html.haml +1 -0
  110. data/app/views/spina/admin/conferences/presentation_types/index.html.haml +7 -0
  111. data/app/views/spina/admin/conferences/presentation_types/new.html.haml +1 -0
  112. data/app/views/spina/admin/conferences/presentations/_attachment_fields.html.haml +18 -0
  113. data/app/views/spina/admin/conferences/presentations/_attachment_row.html.haml +2 -0
  114. data/app/views/spina/admin/conferences/presentations/_form.html.haml +23 -0
  115. data/app/views/spina/admin/conferences/presentations/_form_presentation_details.html.haml +55 -0
  116. data/app/views/spina/admin/conferences/presentations/_presentation.html.haml +11 -0
  117. data/app/views/spina/admin/conferences/presentations/edit.html.haml +1 -0
  118. data/app/views/spina/admin/conferences/presentations/index.html.haml +13 -0
  119. data/app/views/spina/admin/conferences/presentations/new.html.haml +1 -0
  120. data/app/views/spina/admin/conferences/rooms/_form.html.haml +23 -0
  121. data/app/views/spina/admin/conferences/rooms/_form_room_details.html.haml +16 -0
  122. data/app/views/spina/admin/conferences/rooms/_room.html.haml +8 -0
  123. data/app/views/spina/admin/conferences/rooms/edit.html.haml +1 -0
  124. data/app/views/spina/admin/conferences/rooms/index.html.haml +7 -0
  125. data/app/views/spina/admin/conferences/rooms/new.html.haml +1 -0
  126. data/app/views/spina/admin/conferences/sessions/_form.html.haml +23 -0
  127. data/app/views/spina/admin/conferences/sessions/_form_session_details.html.haml +21 -0
  128. data/app/views/spina/admin/conferences/sessions/_session.html.haml +8 -0
  129. data/app/views/spina/admin/conferences/sessions/edit.html.haml +1 -0
  130. data/app/views/spina/admin/conferences/sessions/index.html.haml +7 -0
  131. data/app/views/spina/admin/conferences/sessions/new.html.haml +1 -0
  132. data/app/views/spina/admin/hooks/conferences/_head.html.haml +7 -0
  133. data/app/views/spina/admin/hooks/conferences/_primary_navigation.html.haml +21 -0
  134. data/app/views/spina/admin/hooks/conferences/_settings_secondary_navigation.html.haml +6 -0
  135. data/app/views/spina/admin/parts/admin/conferences/dates/_form.html.haml +2 -0
  136. data/app/views/spina/admin/parts/admin/conferences/email_addresses/_form.html.haml +2 -0
  137. data/app/views/spina/admin/parts/admin/conferences/times/_form.html.haml +2 -0
  138. data/app/views/spina/admin/parts/admin/conferences/urls/_form.html.haml +2 -0
  139. data/config/initializers/assets.rb +13 -0
  140. data/config/locales/en.yml +351 -0
  141. data/config/routes.rb +27 -0
  142. data/db/migrate/20180907141228_create_spina_dates.rb +11 -0
  143. data/db/migrate/20180907141229_create_spina_email_addresses.rb +11 -0
  144. data/db/migrate/20180907141230_create_spina_urls.rb +11 -0
  145. data/db/migrate/20180907141231_create_spina_conferences_institutions.rb +12 -0
  146. data/db/migrate/20180907141232_create_spina_conferences_delegates.rb +15 -0
  147. data/db/migrate/20180907141234_create_spina_conferences_dietary_requirements.rb +11 -0
  148. data/db/migrate/20180907141235_create_spina_conferences_conferences.rb +12 -0
  149. data/db/migrate/20180907141236_create_spina_conferences_presentation_types.rb +13 -0
  150. data/db/migrate/20180907141238_create_join_table_spina_conferences_conference_delegate.rb +7 -0
  151. data/db/migrate/20180907141239_create_join_table_spina_conferences_delegate_presentation.rb +7 -0
  152. data/db/migrate/20180907141240_create_join_table_spina_conferences_delegate_dietary_requirement.rb +7 -0
  153. data/db/migrate/20180907141242_add_type_to_spina_pages.rb +7 -0
  154. data/db/migrate/20180907141243_create_spina_conferences_conference_page_parts.rb +14 -0
  155. data/db/migrate/20180914121905_add_logo_ref_to_spina_conferences_institutions.rb +7 -0
  156. data/db/migrate/20180916135431_create_spina_conferences_rooms.rb +13 -0
  157. data/db/migrate/20180916135432_create_spina_conferences_room_possessions.rb +10 -0
  158. data/db/migrate/20180916135433_create_spina_conferences_room_uses.rb +10 -0
  159. data/db/migrate/20180916135434_create_spina_conferences_presentations.rb +15 -0
  160. data/db/migrate/20181009122503_create_spina_times.rb +11 -0
  161. data/db/migrate/20181009130631_rename_spina_page_parts.rb +10 -0
  162. data/db/migrate/20181012190811_rename_spina_conferences_page_parts.rb +10 -0
  163. data/db/migrate/20181012213049_change_start_time_in_spina_conferences_conferences.rb +15 -0
  164. data/db/migrate/20181012214813_rename_start_time_in_spina_conferences_conferences.rb +7 -0
  165. data/db/migrate/20181017155705_add_dependent_option_to_foreign_keys.rb +36 -0
  166. data/db/migrate/20190408131354_change_spina_resources.rb +56 -0
  167. data/db/migrate/20190622131423_create_spina_conferences_parts.rb +12 -0
  168. data/db/migrate/20190701174807_remove_spina_conference_pages.rb +199 -0
  169. data/db/migrate/20190704135524_add_constraints_to_columns.rb +24 -0
  170. data/db/migrate/20200126034441_create_spina_conferences_presentation_attachment_types.rb +11 -0
  171. data/db/migrate/20200126213718_create_spina_conferences_presentation_attachments.rb +19 -0
  172. data/db/migrate/20200420104603_create_spina_conferences_dietary_requirement_name_translations.rb +19 -0
  173. data/db/migrate/20200420104740_create_spina_conferences_institution_name_and_city_translations.rb +20 -0
  174. data/db/migrate/20200420105057_create_spina_conferences_presentation_title_and_abstract_translations.rb +20 -0
  175. data/db/migrate/20200420105144_create_spina_conferences_presentation_attachment_type_name_translations.rb +20 -0
  176. data/db/migrate/20200420105201_create_spina_conferences_presentation_type_name_translations.rb +19 -0
  177. data/db/migrate/20200420105458_create_spina_conferences_room_building_and_number_translations.rb +20 -0
  178. data/db/migrate/20200420110407_move_attributes_to_translation_tables.rb +161 -0
  179. data/db/migrate/20200420120706_remove_name_from_spina_conferences_dietary_requirements.rb +7 -0
  180. data/db/migrate/20200420120759_remove_name_and_city_from_spina_conferences_institutions.rb +8 -0
  181. data/db/migrate/20200420120946_remove_title_and_abstract_from_spina_conferences_presentations.rb +8 -0
  182. data/db/migrate/20200420121310_remove_name_from_spina_conferences_presentation_attachment_types.rb +7 -0
  183. data/db/migrate/20200420121321_remove_name_from_spina_conferences_presentation_types.rb +7 -0
  184. data/db/migrate/20200420121443_remove_building_and_number_from_spina_conferences_rooms.rb +8 -0
  185. data/db/migrate/20200502133408_create_spina_conferences_conference_name_translations.rb +19 -0
  186. data/db/migrate/20200502183409_set_name_for_spina_conferences_conferences.rb +47 -0
  187. data/db/migrate/20200502183410_remove_institution_from_spina_conferences_conferences.rb +8 -0
  188. data/db/migrate/20200502183719_remove_spina_conferences_room_possessions.rb +60 -0
  189. data/db/migrate/20200503230732_rename_spina_conferences_room_uses.rb +8 -0
  190. data/db/migrate/20200510125131_create_spina_conferences_session_name_translations.rb +19 -0
  191. data/db/migrate/20200802165242_create_spina_conferences_events.rb +13 -0
  192. data/db/migrate/20200802184921_create_spina_conferences_event_name_description_and_location_translations.rb +21 -0
  193. data/db/migrate/20200911161632_update_spina_conferences_parts.rb +23 -0
  194. data/db/migrate/20200911161651_update_spina_parts.rb +37 -0
  195. data/db/migrate/20200911161726_move_presentation_parts.rb +101 -0
  196. data/db/migrate/20200911161739_move_conference_parts.rb +221 -0
  197. data/db/migrate/20201002122517_remove_spina_conferences_conference_page_parts.rb +14 -0
  198. data/db/migrate/20201007125625_add_timestamps_to_spina_conferences_parts.rb +10 -0
  199. data/db/migrate/20210315164409_add_json_attributes_to_spina_conferences_presentations.rb +7 -0
  200. data/db/migrate/20210315164410_add_json_attributes_to_spina_conferences_conferences.rb +7 -0
  201. data/db/migrate/20210315164411_convert_partables_to_json.rb +407 -0
  202. data/db/migrate/20210417102513_add_locale_to_action_text_rich_texts.rb +11 -0
  203. data/db/migrate/20210417102514_move_texts_to_action_text_rich_texts.rb +82 -0
  204. data/lib/spina/admin/conferences/engine.rb +31 -0
  205. data/lib/spina/admin/conferences/migration/renaming.rb +79 -0
  206. data/lib/spina/admin/conferences/railtie.rb +34 -0
  207. data/lib/spina/admin/conferences/version.rb +10 -0
  208. data/lib/spina/admin/conferences.rb +23 -0
  209. data/lib/tasks/spina/admin/conferences_tasks.rake +14 -0
  210. metadata +603 -0
@@ -0,0 +1,215 @@
1
+ /**
2
+ * @external Controller
3
+ * @see {@link https://stimulusjs.org}
4
+ */
5
+ import { Controller } from 'stimulus'
6
+
7
+ /**
8
+ * @classdesc Controller that links related select elements.
9
+ */
10
+ export default class SelectOptionsController extends Controller {
11
+ // noinspection JSUnusedGlobalSymbols
12
+ static get targets() {
13
+ return [
14
+ /**
15
+ * @private
16
+ * @property {HTMLElement[]} selectTargets - The select elements.
17
+ */
18
+ 'select'
19
+ ]
20
+ }
21
+ // noinspection JSUnusedGlobalSymbols
22
+ static get values() {
23
+ return {
24
+ /**
25
+ * @private
26
+ * @property {Array} recordValue - The record values.
27
+ */
28
+ record: Array,
29
+ }
30
+ }
31
+
32
+ // noinspection JSUnusedGlobalSymbols
33
+ /**
34
+ * Hook to ensure that the initial value of each select element is used to set visibility of the corresponding records.
35
+ * @private
36
+ */
37
+ connect() {
38
+ this.selectTargets.forEach(target => target.dispatchEvent(new Event('change')))
39
+ }
40
+
41
+ // noinspection JSUnusedGlobalSymbols
42
+ /**
43
+ * Hook to update select targets when record values change.
44
+ * @private
45
+ */
46
+ recordValueChanged() {
47
+ this.selectTargets.forEach(target => {
48
+ if (!(target instanceof HTMLSelectElement)) return
49
+ this.updateOptions(target)
50
+ })
51
+ }
52
+
53
+ // noinspection JSUnusedGlobalSymbols
54
+ /**
55
+ * Updates the visibility of records according to the selected option of a select element.
56
+ * @param {Event} event - The event fired by the select element.
57
+ */
58
+ setVisibility(event) {
59
+ const target = event.currentTarget
60
+ if (!(target instanceof HTMLSelectElement)) return
61
+ const recordFilter = new SelectOptionsController.RecordFilter(this.recordValue, target)
62
+ this.recordValue = recordFilter.setVisibility()
63
+ }
64
+
65
+ /**
66
+ * Updates the options of a select element.
67
+ * @private
68
+ * @param {HTMLSelectElement} target - The select element to update the options of.
69
+ */
70
+ updateOptions(target) {
71
+ let newRecords = this.recordValue
72
+ if ('keyPath' in target.dataset) {
73
+ const keyPath = new SelectOptionsController.KeyPath(target.dataset.keyPath)
74
+ newRecords = keyPath.visibleObjectsAtKeyPath(newRecords)
75
+ }
76
+ const textKey = target.dataset.textKey
77
+ if (!('valueKey' in target.dataset)) target.dataset.valueKey = 'id'
78
+ const valueKey = target.dataset.valueKey
79
+ const newOptions = newRecords.map(record => new Option(record[textKey], record[valueKey] ))
80
+ const oldOptions = Array.from(target.options).filter(option => option.value !== '')
81
+ oldOptions.filter(option => !newOptions.some(newOption => newOption.value === option.value))
82
+ .forEach(option => target.remove(option.index))
83
+ newOptions.filter(newOption => !oldOptions.some(option => option.value === newOption.value)).forEach(option => target.add(option))
84
+ }
85
+ }
86
+
87
+ /**
88
+ * @private
89
+ * @classdesc A series of property keys, used to traverse objects. A parent object or array of objects is recursively mapped to child
90
+ * objects identified by each property key.
91
+ */
92
+ SelectOptionsController.KeyPath = class {
93
+ /**
94
+ * Creates a new key path.
95
+ * @private
96
+ * @constructor
97
+ * @param {String} string - The string used to create the key path. Should be in the format 'segment:segment:segment'.
98
+ */
99
+ constructor(string) {
100
+ if (typeof string !== 'string') throw TypeError(`${string} is not a string`)
101
+ /**
102
+ * @property {string[]} segments - The segments of the key path.
103
+ */
104
+ this.segments = string.split(':')
105
+ }
106
+
107
+ /**
108
+ * Traverses an object or array of objects by recursively mapping objects to the objects identified by the series of key path segments.
109
+ * @private
110
+ * @param {Object|Object[]} object - The object or array of objects to be traversed.
111
+ * @param {Boolean} filter - Whether, when encountering an array within the top-level object or array,
112
+ * elements marked as invisible should be ignored.
113
+ * @return Any
114
+ */
115
+ traverseObject(object, filter = false) {
116
+ let childObject = object
117
+ this.segments.forEach(key => {
118
+ switch (childObject.constructor) {
119
+ case Array:
120
+ if (filter) childObject = childObject.filter(object => object.hidden !== true)
121
+ childObject = childObject.flatMap(object => object[key])
122
+ break
123
+ case String:
124
+ case Number:
125
+ case Boolean:
126
+ break
127
+ case Object:
128
+ childObject = childObject[key]
129
+ break
130
+ }
131
+ })
132
+ return childObject ? childObject : []
133
+ }
134
+
135
+ /**
136
+ * Traverses an object or array of objects by recursively mapping objects to the objects identified by the series of key path segments.
137
+ * When encountering an array within the top-level object or array, elements marked as invisible are ignored.
138
+ * @private
139
+ * @param {Object|Object[]} object - The object or array of objects to be traversed.
140
+ * @return Any
141
+ */
142
+ visibleObjectsAtKeyPath(object) {
143
+ return this.traverseObject(object, true)
144
+ }
145
+
146
+ /**
147
+ * Traverses an object or array of objects by recursively mapping objects to the objects identified by the series of key path segments.
148
+ * @private
149
+ * @param {Object|Object[]} object - The object or array of objects to be traversed.
150
+ * @return Any
151
+ */
152
+ objectsAtKeyPath(object) {
153
+ return this.traverseObject(object)
154
+ }
155
+ }
156
+
157
+ /**
158
+ * @private
159
+ * @classdesc Identifies a set of records presented as options by a select element target within a possibly larger set of records.
160
+ * The visibility of each target record can be set by comparing the value of the target to the value of some property of each target record.
161
+ */
162
+ SelectOptionsController.RecordFilter = class {
163
+ /**
164
+ * @private
165
+ * @property {Object[]} targetRecords - If a key path exists, the records within the raw records identified by the key path.
166
+ * Else the raw records.
167
+ */
168
+ get targetRecords() {
169
+ return this.keyPath ? this.keyPath.objectsAtKeyPath(this.rawRecords) : this.rawRecords
170
+ }
171
+
172
+ /**
173
+ * Creates a new record filter.
174
+ * @private
175
+ * @constructor
176
+ * @param {Object[]} rawRecords - The records to be filtered.
177
+ * @param {HTMLSelectElement} target - The target providing the value.
178
+ * @param {String} [target.dataset.keyPath] - The key path.
179
+ * @param {String} [target.dataset.valueKey=id] - The value key.
180
+ */
181
+ constructor(rawRecords, target) {
182
+ /**
183
+ * @private
184
+ * @property {Object[]} rawRecords - The entire set of records.
185
+ */
186
+ this.rawRecords = Array.from(rawRecords)
187
+ if ('keyPath' in target.dataset) {
188
+ /**
189
+ * @private
190
+ * @property {KeyPath} [keyPath] - The key path used to filter records.
191
+ */
192
+ this.keyPath = new SelectOptionsController.KeyPath(target.dataset.keyPath)
193
+ }
194
+ if (!('valueKey' in target.dataset)) target.dataset.valueKey = 'id'
195
+ /**
196
+ * @private
197
+ * @property {String} valueKey - The property of the target records to be compared to the target value.
198
+ */
199
+ this.valueKey = target.dataset.valueKey
200
+ /**
201
+ * @private
202
+ * @property {String} targetValue - The value of the target.
203
+ */
204
+ this.targetValue = target.value
205
+ }
206
+
207
+ /**
208
+ * Marks the target record whose property value matches the value of the target as visible and others as invisible.
209
+ * @returns {Object[]} The raw records, with the target records marked for visibility.
210
+ */
211
+ setVisibility() {
212
+ this.targetRecords.forEach(record => record.hidden = record[this.valueKey].toString() !== this.targetValue)
213
+ return this.rawRecords
214
+ }
215
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "imports": {
3
+ "turbo": "<%= asset_path "turbo" %>",
4
+ <%= importmap_list_with_stimulus_from Spina::Admin::Conferences::Engine.root.join('app/assets/javascripts/controllers').relative_path_from(Rails.root) %>
5
+ }
6
+ }
@@ -0,0 +1,4 @@
1
+ document.addEventListener('turbo:load', (event) => {
2
+ const customEvent = new CustomEvent('turbolinks:load', { cancelable: event.cancelable, bubbles: true, detail: event.detail })
3
+ document.documentElement.dispatchEvent(customEvent)
4
+ })
@@ -0,0 +1,3 @@
1
+ .turbo-progress-bar
2
+ @import spina/configuration
3
+ background-color: $primary-color
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Admin
5
+ module Conferences
6
+ # @abstract Subclass to implement a custom controller.
7
+ class ApplicationController < ::Spina::Admin::AdminController
8
+ helper ::Spina::Engine.routes.url_helpers
9
+
10
+ add_flash_types :success
11
+
12
+ layout 'spina/admin/conferences/application', only: %i[new edit]
13
+ before_action :set_locale
14
+
15
+ private
16
+
17
+ def set_locale
18
+ @locale = params[:locale] || I18n.default_locale
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,139 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Admin
5
+ module Conferences
6
+ # Controller for {Conference} objects.
7
+ # @see Conference
8
+ class ConferencesController < ApplicationController
9
+ PARTS_PARAMS = [
10
+ :name, :title, :type, :content, :filename, :signed_blob_id, :alt, :attachment_id, :image_id,
11
+ images_attributes: %i[filename signed_blob_id image_id alt],
12
+ content_attributes: [
13
+ :name, :title,
14
+ parts_attributes: [
15
+ :name, :title, :type, :content, :filename, :signed_blob_id, :alt, :attachment_id, :image_id,
16
+ images_attributes: %i[filename signed_blob_id image_id alt]
17
+ ]
18
+ ]
19
+ ].freeze
20
+ CONTENT_PARAMS = Spina.config.locales.inject({}) { |params, locale| params.merge("#{locale}_content_attributes": [*PARTS_PARAMS]) }
21
+ PARAMS = [:start_date, :finish_date, :name, **CONTENT_PARAMS,
22
+ events_attributes: %i[id name start_datetime finish_datetime description location] ].freeze
23
+ PARTS = %w[text submission_url submission_email_address submission_date submission_text gallery sponsors].freeze
24
+
25
+ before_action :set_conference, only: %i[edit update destroy]
26
+ before_action :set_conferences_breadcrumb
27
+ before_action :set_tabs
28
+ before_action :set_institutions, :set_parts_attributes, only: %i[new edit]
29
+ before_action :build_parts, only: :edit
30
+
31
+ # @!group Actions
32
+
33
+ # Renders a list of conferences.
34
+ # @return [void]
35
+ def index
36
+ @conferences = Conference.sorted.page(params[:page])
37
+ end
38
+
39
+ # Renders a form for a new conference.
40
+ # @return [void]
41
+ def new
42
+ @conference = Conference.new
43
+ build_parts
44
+ add_breadcrumb t('.new')
45
+ end
46
+
47
+ # Renders a form for an existing conference.
48
+ # @return [void]
49
+ def edit
50
+ add_breadcrumb @conference.name
51
+ end
52
+
53
+ # Creates a conference.
54
+ # @return [void]
55
+ def create # rubocop:disable Metrics/MethodLength
56
+ @conference = Conference.new(conference_params)
57
+
58
+ if @conference.save
59
+ redirect_to admin_conferences_conferences_path, success: t('.saved')
60
+ else
61
+ respond_to do |format|
62
+ format.html do
63
+ add_breadcrumb t('.new')
64
+ render :new
65
+ end
66
+ format.turbo_stream { render partial: 'errors', locals: { errors: @conference.errors } }
67
+ end
68
+ end
69
+ end
70
+
71
+ # Updates a conference.
72
+ # @return [void]
73
+ def update # rubocop:disable Metrics/MethodLength
74
+ if @conference.update(conference_params)
75
+ redirect_to admin_conferences_conferences_path, success: t('.saved')
76
+ else
77
+ respond_to do |format|
78
+ format.html do
79
+ add_breadcrumb @conference.name
80
+ render :edit
81
+ end
82
+ format.turbo_stream { render partial: 'errors', locals: { errors: @conference.errors } }
83
+ end
84
+ end
85
+ end
86
+
87
+ # Destroys a conference.
88
+ # @return [void]
89
+ def destroy # rubocop:disable Metrics/MethodLength
90
+ if @conference.destroy
91
+ redirect_to admin_conferences_conferences_path, success: t('.destroyed')
92
+ else
93
+ respond_to do |format|
94
+ format.html do
95
+ add_breadcrumb @conference.name
96
+ render :edit
97
+ end
98
+ format.turbo_stream { render partial: 'errors', locals: { errors: @conference.errors } }
99
+ end
100
+ end
101
+ end
102
+
103
+ # @!endgroup
104
+
105
+ private
106
+
107
+ def set_conference
108
+ @conference = Conference.find params[:id]
109
+ end
110
+
111
+ def set_institutions
112
+ @institutions = Institution.all.to_json include: { rooms: { methods: [:name] } }
113
+ end
114
+
115
+ def set_conferences_breadcrumb
116
+ add_breadcrumb Conference.model_name.human(count: 0), admin_conferences_conferences_path
117
+ end
118
+
119
+ def set_tabs
120
+ @tabs = %w[conference_details parts delegates presentation_types rooms presentations]
121
+ end
122
+
123
+ def set_parts_attributes
124
+ @parts_attributes = current_theme.parts.select { |part| PARTS.include? part[:name] }
125
+ end
126
+
127
+ def build_parts
128
+ return unless @parts_attributes.is_a? Array
129
+
130
+ @parts = @parts_attributes.collect { |part_attributes| @conference.part(part_attributes) }
131
+ end
132
+
133
+ def conference_params
134
+ params.require(:conference).permit(PARAMS)
135
+ end
136
+ end
137
+ end
138
+ end
139
+ end
@@ -0,0 +1,114 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Admin
5
+ module Conferences
6
+ # Controller for {Delegate} objects.
7
+ # @see Delegate
8
+ class DelegatesController < ApplicationController
9
+ before_action :set_delegate, only: %i[edit update destroy]
10
+ before_action :set_breadcrumb
11
+ before_action :set_tabs
12
+
13
+ # @!group Actions
14
+
15
+ # Renders a list of delegates.
16
+ # @return [void]
17
+ def index
18
+ @delegates = Delegate.sorted.page(params[:page])
19
+ end
20
+
21
+ # Renders a form for a new delegate.
22
+ # @return [void]
23
+ def new
24
+ @delegate = Delegate.new
25
+ add_breadcrumb t('.new')
26
+ end
27
+
28
+ # Renders a form for an existing delegate.
29
+ # @return [void]
30
+ def edit
31
+ add_breadcrumb @delegate.full_name
32
+ end
33
+
34
+ # Creates a delegate.
35
+ # @return [void]
36
+ def create # rubocop:disable Metrics/MethodLength
37
+ @delegate = Delegate.new(delegate_params)
38
+
39
+ if @delegate.save
40
+ redirect_to admin_conferences_delegates_path, success: t('.saved')
41
+ else
42
+ respond_to do |format|
43
+ format.html do
44
+ add_breadcrumb t('.new')
45
+ render :new
46
+ end
47
+ format.turbo_stream { render partial: 'errors', locals: { errors: @delegate.errors } }
48
+ end
49
+ end
50
+ end
51
+
52
+ # Updates a delegate.
53
+ # @return [void]
54
+ def update # rubocop:disable Metrics/MethodLength
55
+ if @delegate.update(delegate_params)
56
+ redirect_to admin_conferences_delegates_path, success: t('.saved')
57
+ else
58
+ respond_to do |format|
59
+ format.html do
60
+ add_breadcrumb @delegate.full_name
61
+ render :edit
62
+ end
63
+ format.turbo_stream { render partial: 'errors', locals: { errors: @delegate.errors } }
64
+ end
65
+ end
66
+ end
67
+
68
+ # Destroys a delegate.
69
+ # @return [void]
70
+ def destroy # rubocop:disable Metrics/MethodLength
71
+ if @delegate.destroy
72
+ redirect_to admin_conferences_delegates_path, success: t('.destroyed')
73
+ else
74
+ respond_to do |format|
75
+ format.html do
76
+ add_breadcrumb @delegate.full_name
77
+ render :edit
78
+ end
79
+ format.turbo_stream { render partial: 'errors', locals: { errors: @delegate.errors } }
80
+ end
81
+ end
82
+ end
83
+
84
+ # Imports a delegate.
85
+ # @return [void]
86
+ # @see Delegate#import
87
+ def import
88
+ Delegate.import params[:file]
89
+ end
90
+
91
+ # @!endgroup
92
+
93
+ private
94
+
95
+ def set_delegate
96
+ @delegate = Delegate.find params[:id]
97
+ end
98
+
99
+ def set_breadcrumb
100
+ add_breadcrumb Delegate.model_name.human(count: 0), admin_conferences_delegates_path
101
+ end
102
+
103
+ def set_tabs
104
+ @tabs = %w[delegate_details conferences presentations]
105
+ end
106
+
107
+ def delegate_params
108
+ params.require(:delegate).permit(:first_name, :last_name, :email_address, :url, :institution_id,
109
+ conference_ids: [], dietary_requirement_ids: [])
110
+ end
111
+ end
112
+ end
113
+ end
114
+ end
@@ -0,0 +1,106 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Admin
5
+ module Conferences
6
+ # Controller for {DietaryRequirement} objects.
7
+ # @see DietaryRequirement
8
+ class DietaryRequirementsController < ApplicationController
9
+ before_action :set_dietary_requirement, only: %i[edit update destroy]
10
+ before_action :set_breadcrumb
11
+ before_action :set_tabs
12
+
13
+ # @!group Actions
14
+
15
+ # Renders a list of dietary requirements.
16
+ # @return [void]
17
+ def index
18
+ @dietary_requirements = DietaryRequirement.sorted.page(params[:page])
19
+ end
20
+
21
+ # Renders a form for a new dietary requirement.
22
+ # @return [void]
23
+ def new
24
+ @dietary_requirement = DietaryRequirement.new
25
+ add_breadcrumb t('.new')
26
+ end
27
+
28
+ # Renders a form for an existing dietary requirement.
29
+ # @return [void]
30
+ def edit
31
+ add_breadcrumb @dietary_requirement.name
32
+ end
33
+
34
+ # Creates a dietary requirement.
35
+ # @return [void]
36
+ def create # rubocop:disable Metrics/MethodLength
37
+ @dietary_requirement = DietaryRequirement.new dietary_requirement_params
38
+
39
+ if @dietary_requirement.save
40
+ redirect_to admin_conferences_dietary_requirements_path, success: t('.saved')
41
+ else
42
+ respond_to do |format|
43
+ format.html do
44
+ add_breadcrumb t('.new')
45
+ render :new
46
+ end
47
+ format.turbo_stream { render partial: 'errors', locals: { errors: @dietary_requirement.errors } }
48
+ end
49
+ end
50
+ end
51
+
52
+ # Updates a dietary requirement.
53
+ # @return [void]
54
+ def update # rubocop:disable Metrics/MethodLength
55
+ if @dietary_requirement.update(dietary_requirement_params)
56
+ redirect_to admin_conferences_dietary_requirements_path, success: t('.saved')
57
+ else
58
+ respond_to do |format|
59
+ format.html do
60
+ add_breadcrumb @dietary_requirement.name
61
+ render :edit
62
+ end
63
+ format.turbo_stream { render partial: 'errors', locals: { errors: @dietary_requirement.errors } }
64
+ end
65
+ end
66
+ end
67
+
68
+ # Destroys a dietary requirement.
69
+ # @return [void]
70
+ def destroy # rubocop:disable Metrics/MethodLength
71
+ if @dietary_requirement.destroy
72
+ redirect_to admin_conferences_dietary_requirements_path, success: t('.destroyed')
73
+ else
74
+ respond_to do |format|
75
+ format.html do
76
+ add_breadcrumb @dietary_requirement.name
77
+ render :edit
78
+ end
79
+ format.turbo_stream { render partial: 'errors', locals: { errors: @dietary_requirement.errors } }
80
+ end
81
+ end
82
+ end
83
+
84
+ # @!endgroup
85
+
86
+ private
87
+
88
+ def set_dietary_requirement
89
+ @dietary_requirement = DietaryRequirement.find params[:id]
90
+ end
91
+
92
+ def set_breadcrumb
93
+ add_breadcrumb DietaryRequirement.model_name.human(count: 0), admin_conferences_dietary_requirements_path
94
+ end
95
+
96
+ def set_tabs
97
+ @tabs = %w[dietary_requirement_details delegates]
98
+ end
99
+
100
+ def dietary_requirement_params
101
+ params.require(:dietary_requirement).permit(:name)
102
+ end
103
+ end
104
+ end
105
+ end
106
+ end
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Spina
4
+ module Admin
5
+ module Conferences
6
+ # Controller for {Event} objects.
7
+ # @see Event
8
+ class EventsController < ApplicationController
9
+ # @!group Actions
10
+
11
+ # Renders a form for an {Event}.
12
+ # @return [void]
13
+ def new
14
+ @conference = Conference.find_by(id: params[:conference]) || Conference.new
15
+ @event = @conference.events.build
16
+ respond_to :js
17
+ render locals: { index: params[:index].to_i, active: params[:active] == 'true' }
18
+ end
19
+
20
+ # @!endgroup
21
+ end
22
+ end
23
+ end
24
+ end