hyrax 3.3.0 → 4.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (611) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +41 -52
  3. data/.dassie/.env +2 -1
  4. data/.dassie/Gemfile +4 -4
  5. data/.dassie/app/assets/javascripts/application.js +8 -4
  6. data/.dassie/app/assets/stylesheets/application.css +1 -1
  7. data/.dassie/app/assets/stylesheets/hyrax.scss +1 -2
  8. data/.dassie/app/controllers/application_controller.rb +1 -3
  9. data/.dassie/app/controllers/catalog_controller.rb +23 -19
  10. data/.dassie/app/forms/collection_resource_form.rb +8 -0
  11. data/.dassie/app/indexers/collection_resource_indexer.rb +8 -0
  12. data/.dassie/app/models/collection_resource.rb +35 -0
  13. data/.dassie/app/models/user.rb +0 -3
  14. data/.dassie/config/application.rb +1 -1
  15. data/.dassie/config/initializers/file_services.rb +4 -0
  16. data/.dassie/config/initializers/hyrax.rb +12 -1
  17. data/.dassie/config/initializers/riiif.rb +1 -1
  18. data/.dassie/config/metadata/collection_resource.yaml +23 -0
  19. data/.dassie/db/schema.rb +5 -5
  20. data/.dassie/db/seeds.rb +74 -17
  21. data/.dassie/package.json +7 -7
  22. data/.dassie/spec/forms/collection_resource_form_spec.rb +13 -0
  23. data/.dassie/spec/indexers/collection_resource_indexer_spec.rb +14 -0
  24. data/.dassie/spec/models/collection_resource_spec.rb +13 -0
  25. data/.engine_cart.yml +2 -39
  26. data/.env +1 -0
  27. data/.github/release.yml +26 -0
  28. data/.gitignore +3 -0
  29. data/.regen +2 -1
  30. data/.rubocop.yml +1 -1
  31. data/.rubocop_fixme.yml +22 -3
  32. data/CONTAINERS.md +18 -13
  33. data/CONTRIBUTING.md +22 -24
  34. data/Dockerfile +4 -3
  35. data/Rakefile +0 -4
  36. data/app/actors/hyrax/actors/base_actor.rb +1 -1
  37. data/app/actors/hyrax/actors/create_with_remote_files_actor.rb +5 -11
  38. data/app/actors/hyrax/actors/file_actor.rb +9 -35
  39. data/app/actors/hyrax/actors/file_set_actor.rb +13 -62
  40. data/app/actors/hyrax/actors/transfer_request_actor.rb +3 -7
  41. data/app/assets/javascripts/hyrax/analytics_events.js +8 -2
  42. data/app/assets/javascripts/hyrax/app.js.erb +1 -1
  43. data/app/assets/javascripts/hyrax/autocomplete/linked_data.es6 +1 -3
  44. data/app/assets/javascripts/hyrax/batch.js +2 -2
  45. data/app/assets/javascripts/hyrax/batch_edit.js +4 -4
  46. data/app/assets/javascripts/hyrax/batch_select_all.js +13 -13
  47. data/app/assets/javascripts/hyrax/browse_everything.js +4 -2
  48. data/app/assets/javascripts/hyrax/collection_types.es6 +1 -1
  49. data/app/assets/javascripts/hyrax/collections/editor.es6 +5 -1
  50. data/app/assets/javascripts/hyrax/collections_v2.es6 +13 -0
  51. data/app/assets/javascripts/hyrax/dashboard_actions.js +5 -5
  52. data/app/assets/javascripts/hyrax/editor/controlled_vocabulary.es6 +3 -3
  53. data/app/assets/javascripts/hyrax/editor.es6 +3 -3
  54. data/app/assets/javascripts/hyrax/facets.js +6 -4
  55. data/app/assets/javascripts/hyrax/file_manager/member.es6 +1 -1
  56. data/app/assets/javascripts/hyrax/file_manager/save_manager.es6 +2 -2
  57. data/app/assets/javascripts/hyrax/file_manager/sorting.es6 +2 -2
  58. data/app/assets/javascripts/hyrax/file_manager.es6 +2 -17
  59. data/app/assets/javascripts/hyrax/notification.es6 +1 -1
  60. data/app/assets/javascripts/hyrax/permissions/registry.es6 +4 -4
  61. data/app/assets/javascripts/hyrax/permissions/user_controls.es6 +3 -1
  62. data/app/assets/javascripts/hyrax/relationships/confirm_remove_dialog.es6 +1 -1
  63. data/app/assets/javascripts/hyrax/relationships/control.es6 +2 -2
  64. data/app/assets/javascripts/hyrax/relationships/registry_entry.es6 +1 -1
  65. data/app/assets/javascripts/hyrax/reports-buttons.js +9 -9
  66. data/app/assets/javascripts/hyrax/save_work/required_fields.es6 +1 -1
  67. data/app/assets/javascripts/hyrax/save_work/save_work_control.es6 +6 -6
  68. data/app/assets/javascripts/hyrax/save_work/uploaded_files.es6 +2 -2
  69. data/app/assets/javascripts/hyrax/single_use_links_manager.js +1 -1
  70. data/app/assets/javascripts/hyrax/skip_to_content.js +1 -1
  71. data/app/assets/javascripts/hyrax/sorting.js +1 -1
  72. data/app/assets/javascripts/hyrax/trophy.js +1 -1
  73. data/app/assets/javascripts/hyrax/uploader.js +3 -3
  74. data/app/assets/javascripts/hyrax.js +1 -19
  75. data/app/assets/stylesheets/_bootstrap-default-overrides.scss +4 -4
  76. data/app/assets/stylesheets/hyrax/_accessibility.scss +1 -1
  77. data/app/assets/stylesheets/hyrax/_badge.scss +7 -0
  78. data/app/assets/stylesheets/hyrax/_batch-edit.scss +8 -8
  79. data/app/assets/stylesheets/hyrax/_browse_everything_overrides.scss +1 -1
  80. data/app/assets/stylesheets/hyrax/_buttons.scss +31 -1
  81. data/app/assets/stylesheets/hyrax/_card.scss +10 -0
  82. data/app/assets/stylesheets/hyrax/_catalog.scss +22 -48
  83. data/app/assets/stylesheets/hyrax/_collection_types.scss +1 -1
  84. data/app/assets/stylesheets/hyrax/_collections.scss +13 -13
  85. data/app/assets/stylesheets/hyrax/_facets.scss +46 -0
  86. data/app/assets/stylesheets/hyrax/_featured.scss +1 -1
  87. data/app/assets/stylesheets/hyrax/_file-listing.scss +3 -3
  88. data/app/assets/stylesheets/hyrax/_file_manager.scss +17 -17
  89. data/app/assets/stylesheets/hyrax/_file_sets.scss +1 -1
  90. data/app/assets/stylesheets/hyrax/_file_upload.scss +4 -4
  91. data/app/assets/stylesheets/hyrax/_fixedsticky.scss +1 -1
  92. data/app/assets/stylesheets/hyrax/_footer.scss +3 -3
  93. data/app/assets/stylesheets/hyrax/_form-progress.scss +9 -9
  94. data/app/assets/stylesheets/hyrax/_form.scss +3 -4
  95. data/app/assets/stylesheets/hyrax/_forms.scss +62 -29
  96. data/app/assets/stylesheets/hyrax/_header.scss +0 -17
  97. data/app/assets/stylesheets/hyrax/_home-page.scss +13 -51
  98. data/app/assets/stylesheets/hyrax/_html.scss +11 -0
  99. data/app/assets/stylesheets/hyrax/_hyrax.scss +16 -14
  100. data/app/assets/stylesheets/hyrax/_nestable.scss +1 -1
  101. data/app/assets/stylesheets/hyrax/_select_work_type.scss +2 -2
  102. data/app/assets/stylesheets/hyrax/_styles.scss +9 -14
  103. data/app/assets/stylesheets/hyrax/_users.scss +2 -2
  104. data/app/assets/stylesheets/hyrax/_variables.scss +20 -1
  105. data/app/assets/stylesheets/hyrax/_work-show.scss +21 -13
  106. data/app/assets/stylesheets/hyrax/blacklight_gallery.scss +75 -2
  107. data/app/assets/stylesheets/hyrax/dashboard.scss +70 -95
  108. data/app/assets/stylesheets/hyrax/sidebar.scss +39 -19
  109. data/app/controllers/concerns/hyrax/collections_controller_behavior.rb +10 -3
  110. data/app/controllers/concerns/hyrax/controller.rb +21 -0
  111. data/app/controllers/concerns/hyrax/works_controller_behavior.rb +87 -68
  112. data/app/controllers/hyrax/admin/admin_sets_controller.rb +105 -19
  113. data/app/controllers/hyrax/admin/permission_template_accesses_controller.rb +12 -19
  114. data/app/controllers/hyrax/batch_edits_controller.rb +13 -4
  115. data/app/controllers/hyrax/batch_uploads_controller.rb +4 -0
  116. data/app/controllers/hyrax/citations_controller.rb +1 -1
  117. data/app/controllers/hyrax/dashboard/collections_controller.rb +176 -83
  118. data/app/controllers/hyrax/dashboard/nest_collections_controller.rb +0 -32
  119. data/app/controllers/hyrax/file_sets_controller.rb +3 -0
  120. data/app/controllers/hyrax/homepage_controller.rb +0 -1
  121. data/app/controllers/hyrax/my_controller.rb +0 -6
  122. data/app/controllers/hyrax/single_use_links_controller.rb +1 -2
  123. data/app/controllers/hyrax/single_use_links_viewer_controller.rb +1 -1
  124. data/app/forms/hyrax/forms/administrative_set_form.rb +19 -1
  125. data/app/forms/hyrax/forms/batch_edit_form.rb +1 -1
  126. data/app/forms/hyrax/forms/dashboard/nest_collection_form.rb +21 -6
  127. data/app/forms/hyrax/forms/pcdm_collection_form.rb +30 -2
  128. data/app/forms/hyrax/forms/permission_template_form.rb +17 -9
  129. data/app/forms/hyrax/forms/resource_form.rb +23 -5
  130. data/app/forms/hyrax/forms/widgets/admin_set_visibility.rb +1 -1
  131. data/app/helpers/hyrax/collections_helper.rb +14 -0
  132. data/app/helpers/hyrax/facets_helper.rb +150 -0
  133. data/app/helpers/hyrax/hyrax_helper_behavior.rb +5 -5
  134. data/app/helpers/hyrax/membership_helper.rb +1 -1
  135. data/app/helpers/hyrax/trophy_helper.rb +1 -1
  136. data/app/indexers/hyrax/administrative_set_indexer.rb +8 -2
  137. data/app/indexers/hyrax/basic_metadata_indexer.rb +3 -9
  138. data/app/indexers/hyrax/deep_indexing_service.rb +1 -1
  139. data/app/indexers/hyrax/file_set_indexer.rb +1 -0
  140. data/app/indexers/hyrax/pcdm_collection_indexer.rb +3 -2
  141. data/app/indexers/hyrax/thumbnail_indexer.rb +31 -0
  142. data/app/indexers/hyrax/valkyrie_file_set_indexer.rb +6 -6
  143. data/app/indexers/hyrax/valkyrie_indexer.rb +4 -2
  144. data/app/indexers/hyrax/valkyrie_work_indexer.rb +13 -0
  145. data/app/inputs/controlled_vocabulary_input.rb +2 -0
  146. data/app/jobs/change_depositor_event_job.rb +47 -0
  147. data/app/jobs/characterize_job.rb +40 -3
  148. data/app/jobs/concerns/hyrax/members_permission_job_behavior.rb +1 -1
  149. data/app/jobs/create_derivatives_job.rb +4 -2
  150. data/app/jobs/hyrax/propagate_change_depositor_job.rb +32 -0
  151. data/app/jobs/import_url_job.rb +4 -6
  152. data/app/jobs/ingest_local_file_job.rb +5 -13
  153. data/app/jobs/inherit_permissions_job.rb +2 -6
  154. data/app/jobs/valkyrie_create_derivatives_job.rb +25 -0
  155. data/app/jobs/valkyrie_ingest_job.rb +41 -35
  156. data/app/models/admin_set.rb +2 -2
  157. data/app/models/collection_branding_info.rb +8 -6
  158. data/app/models/concerns/hyrax/collection_behavior.rb +4 -4
  159. data/app/models/concerns/hyrax/file_set/characterization.rb +7 -1
  160. data/app/models/concerns/hyrax/file_set_behavior.rb +1 -1
  161. data/app/models/concerns/hyrax/in_admin_set.rb +0 -7
  162. data/app/models/concerns/hyrax/solr_document/metadata.rb +1 -0
  163. data/app/models/concerns/hyrax/solr_document_behavior.rb +9 -3
  164. data/app/models/concerns/hyrax/user.rb +14 -3
  165. data/app/models/concerns/hyrax/work_behavior.rb +1 -2
  166. data/app/models/content_block.rb +0 -6
  167. data/app/models/featured_work_list.rb +0 -1
  168. data/app/models/hyrax/administrative_set.rb +36 -1
  169. data/app/models/hyrax/collection_type.rb +2 -2
  170. data/app/models/hyrax/file_metadata.rb +36 -2
  171. data/app/models/hyrax/file_set.rb +43 -4
  172. data/app/models/hyrax/group.rb +19 -0
  173. data/app/models/hyrax/pcdm_collection.rb +56 -1
  174. data/app/models/hyrax/permission_template.rb +5 -34
  175. data/app/models/hyrax/work.rb +91 -0
  176. data/app/models/job_io_wrapper.rb +1 -1
  177. data/app/models/proxy_deposit_request.rb +1 -1
  178. data/app/presenters/hyrax/admin/repository_object_presenter.rb +0 -2
  179. data/app/presenters/hyrax/admin_set_presenter.rb +2 -2
  180. data/app/presenters/hyrax/collapsable_section_presenter.rb +2 -2
  181. data/app/presenters/hyrax/collection_presenter.rb +1 -1
  182. data/app/presenters/hyrax/fixity_status_presenter.rb +2 -2
  183. data/app/presenters/hyrax/member_presenter_factory.rb +2 -4
  184. data/app/presenters/hyrax/menu_presenter.rb +1 -1
  185. data/app/presenters/hyrax/pcdm_member_presenter_factory.rb +2 -2
  186. data/app/presenters/hyrax/permission_badge.rb +7 -7
  187. data/app/presenters/hyrax/work_show_presenter.rb +10 -6
  188. data/app/presenters/hyrax/workflow_presenter.rb +1 -1
  189. data/app/renderers/hyrax/renderers/external_link_attribute_renderer.rb +1 -1
  190. data/app/search_builders/hyrax/dashboard/collections_search_builder.rb +2 -2
  191. data/app/search_builders/hyrax/dashboard/managed_search_filters.rb +44 -4
  192. data/app/search_builders/hyrax/dashboard/nested_collections_search_builder.rb +2 -2
  193. data/app/search_builders/hyrax/deposit_search_builder.rb +1 -1
  194. data/app/search_builders/hyrax/my/collections_search_builder.rb +11 -4
  195. data/app/search_builders/hyrax/nested_collections_parent_search_builder.rb +10 -1
  196. data/app/search_builders/hyrax/single_result.rb +1 -1
  197. data/app/search_builders/hyrax/stats/work_status_search_builder.rb +1 -1
  198. data/app/services/hyrax/access_control_list.rb +20 -6
  199. data/app/services/hyrax/adapters/nesting_index_adapter.rb +4 -4
  200. data/app/services/hyrax/admin_set_create_service.rb +21 -37
  201. data/app/services/hyrax/change_content_depositor_service.rb +2 -2
  202. data/app/services/hyrax/change_depositor_service.rb +70 -0
  203. data/app/services/hyrax/characterization/valkyrie_characterization_service.rb +4 -6
  204. data/app/services/hyrax/collection_member_service.rb +1 -2
  205. data/app/services/hyrax/collections/collection_member_service.rb +3 -5
  206. data/app/services/hyrax/collections/nested_collection_query_service.rb +24 -12
  207. data/app/services/hyrax/collections/search_service.rb +0 -1
  208. data/app/services/hyrax/custom_queries/navigators/child_file_sets_navigator.rb +45 -0
  209. data/app/services/hyrax/custom_queries/navigators/child_filesets_navigator.rb +7 -2
  210. data/app/services/hyrax/custom_queries/navigators/parent_work_navigator.rb +54 -0
  211. data/app/services/hyrax/custom_queries.rb +25 -0
  212. data/app/services/hyrax/default_middleware_stack.rb +3 -0
  213. data/app/services/hyrax/file_set_csv_service.rb +1 -1
  214. data/app/services/hyrax/file_set_derivatives_service.rb +21 -2
  215. data/app/services/hyrax/file_set_type_service.rb +2 -5
  216. data/app/services/hyrax/graph_exporter.rb +3 -8
  217. data/app/services/hyrax/iiif_authorization_service.rb +1 -1
  218. data/app/services/hyrax/listeners/file_metadata_listener.rb +20 -1
  219. data/app/services/hyrax/listeners/member_cleanup_listener.rb +27 -11
  220. data/app/services/hyrax/listeners/metadata_index_listener.rb +39 -0
  221. data/app/services/hyrax/listeners/proxy_deposit_listener.rb +14 -8
  222. data/app/services/hyrax/location_service.rb +33 -0
  223. data/app/services/hyrax/multiple_membership_checker.rb +46 -1
  224. data/app/services/hyrax/resource_visibility_propagator.rb +1 -1
  225. data/app/services/hyrax/search_service.rb +1 -81
  226. data/app/services/hyrax/simple_schema_loader.rb +5 -1
  227. data/app/services/hyrax/solr_query_service.rb +12 -7
  228. data/app/services/hyrax/statistics/depositors/summary.rb +1 -3
  229. data/app/services/hyrax/thumbnail_path_service.rb +1 -1
  230. data/app/services/hyrax/valkyrie_persist_derivatives.rb +50 -0
  231. data/app/services/hyrax/valkyrie_upload.rb +106 -0
  232. data/app/services/hyrax/work_query_service.rb +1 -1
  233. data/app/services/hyrax/work_uploads_handler.rb +0 -10
  234. data/app/services/hyrax/workflow/workflow_importer.rb +7 -9
  235. data/app/services/hyrax/workflow/workflow_schema.rb +3 -5
  236. data/app/services/hyrax/working_directory.rb +2 -0
  237. data/app/strategies/hyrax/strategies/yaml_strategy.rb +4 -6
  238. data/app/uploaders/hyrax/uploaded_file_uploader.rb +4 -4
  239. data/app/utils/hyrax/data_destroyers/collection_branding_destroyer.rb +29 -0
  240. data/app/utils/hyrax/data_destroyers/collection_types_destroyer.rb +26 -0
  241. data/app/utils/hyrax/data_destroyers/default_admin_set_id_cache_destroyer.rb +26 -0
  242. data/app/utils/hyrax/data_destroyers/featured_works_destroyer.rb +27 -0
  243. data/app/utils/hyrax/data_destroyers/permission_templates_destroyer.rb +30 -0
  244. data/app/utils/hyrax/data_destroyers/repository_metadata_destroyer.rb +42 -0
  245. data/app/utils/hyrax/data_destroyers/stats_destroyer.rb +33 -0
  246. data/app/utils/hyrax/data_maintenance.rb +51 -0
  247. data/app/utils/hyrax/required_data_seeder.rb +21 -0
  248. data/app/utils/hyrax/required_data_seeders/collection_seeder.rb +26 -0
  249. data/app/utils/hyrax/required_data_seeders/collection_type_seeder.rb +36 -0
  250. data/app/utils/hyrax/test_data_seeder.rb +24 -0
  251. data/app/utils/hyrax/test_data_seeders/collection_seeder.rb +91 -0
  252. data/app/utils/hyrax/test_data_seeders/collection_type_seeder.rb +72 -0
  253. data/app/utils/hyrax/test_data_seeders/user_seeder.rb +52 -0
  254. data/app/validators/hyrax/collection_membership_validator.rb +39 -0
  255. data/app/views/_controls.html.erb +14 -18
  256. data/app/views/_logo.html.erb +0 -1
  257. data/app/views/_masthead.html.erb +8 -18
  258. data/app/views/_user_util_links.html.erb +16 -18
  259. data/app/views/catalog/_document.html.erb +2 -2
  260. data/app/views/catalog/_document_list.html.erb +1 -1
  261. data/app/views/catalog/_facet_limit.html.erb +1 -1
  262. data/app/views/catalog/_index_gallery_collection_wrapper.html.erb +1 -1
  263. data/app/views/catalog/_index_header_list_collection.html.erb +2 -2
  264. data/app/views/catalog/_index_header_list_default.html.erb +9 -2
  265. data/app/views/catalog/_index_list_default.html.erb +7 -5
  266. data/app/views/catalog/_search_form.html.erb +13 -15
  267. data/app/views/catalog/_thumbnail_list_collection.html.erb +2 -2
  268. data/app/views/catalog/_thumbnail_list_default.html.erb +9 -4
  269. data/app/views/catalog/facet.html.erb +21 -0
  270. data/app/views/catalog/index.html.erb +6 -4
  271. data/app/views/collections/edit_fields/_based_near.html.erb +7 -7
  272. data/app/views/hyrax/admin/admin_sets/_form.html.erb +16 -16
  273. data/app/views/hyrax/admin/admin_sets/_form_participant_table.html.erb +35 -33
  274. data/app/views/hyrax/admin/admin_sets/_form_participants.html.erb +11 -10
  275. data/app/views/hyrax/admin/admin_sets/_form_visibility.html.erb +26 -26
  276. data/app/views/hyrax/admin/admin_sets/_form_workflow.erb +6 -6
  277. data/app/views/hyrax/admin/admin_sets/_show_actions.html.erb +3 -3
  278. data/app/views/hyrax/admin/admin_sets/_show_document_list_row.html.erb +9 -9
  279. data/app/views/hyrax/admin/admin_sets/index.html.erb +3 -3
  280. data/app/views/hyrax/admin/admin_sets/show.html.erb +4 -4
  281. data/app/views/hyrax/admin/analytics/_date_range_form.html.erb +3 -3
  282. data/app/views/hyrax/admin/analytics/collection_reports/_custom_range.html.erb +3 -3
  283. data/app/views/hyrax/admin/analytics/collection_reports/_monthly_summary.html.erb +3 -3
  284. data/app/views/hyrax/admin/analytics/collection_reports/_summary.html.erb +3 -3
  285. data/app/views/hyrax/admin/analytics/collection_reports/_top_collections.html.erb +7 -7
  286. data/app/views/hyrax/admin/analytics/collection_reports/index.html.erb +6 -6
  287. data/app/views/hyrax/admin/analytics/collection_reports/show.html.erb +10 -10
  288. data/app/views/hyrax/admin/analytics/work_reports/_custom_range.html.erb +3 -3
  289. data/app/views/hyrax/admin/analytics/work_reports/_monthly_summary.html.erb +3 -3
  290. data/app/views/hyrax/admin/analytics/work_reports/_summary.html.erb +3 -3
  291. data/app/views/hyrax/admin/analytics/work_reports/_top_file_set_downloads.html.erb +5 -5
  292. data/app/views/hyrax/admin/analytics/work_reports/_top_works.html.erb +7 -7
  293. data/app/views/hyrax/admin/analytics/work_reports/_work_counts.html.erb +4 -4
  294. data/app/views/hyrax/admin/analytics/work_reports/_work_files.html.erb +5 -5
  295. data/app/views/hyrax/admin/analytics/work_reports/index.html.erb +7 -7
  296. data/app/views/hyrax/admin/analytics/work_reports/show.html.erb +10 -10
  297. data/app/views/hyrax/admin/appearances/show.html.erb +2 -2
  298. data/app/views/hyrax/admin/collection_types/_form.html.erb +24 -23
  299. data/app/views/hyrax/admin/collection_types/_form_appearance.html.erb +2 -2
  300. data/app/views/hyrax/admin/collection_types/_form_participants.html.erb +4 -4
  301. data/app/views/hyrax/admin/collection_types/_form_settings.html.erb +9 -9
  302. data/app/views/hyrax/admin/collection_types/index.html.erb +7 -7
  303. data/app/views/hyrax/admin/features/index.html.erb +3 -3
  304. data/app/views/hyrax/admin/stats/_new_users.html.erb +1 -1
  305. data/app/views/hyrax/admin/stats/show.html.erb +4 -6
  306. data/app/views/hyrax/admin/users/index.html.erb +3 -3
  307. data/app/views/hyrax/admin/workflow_roles/index.html.erb +8 -8
  308. data/app/views/hyrax/admin/workflows/index.html.erb +13 -13
  309. data/app/views/hyrax/base/_citations.html.erb +6 -6
  310. data/app/views/hyrax/base/_currently_shared.html.erb +3 -3
  311. data/app/views/hyrax/base/_file_manager_actions.html.erb +5 -3
  312. data/app/views/hyrax/base/_file_manager_member.html.erb +5 -5
  313. data/app/views/hyrax/base/_file_manager_member_resource_options.html.erb +6 -6
  314. data/app/views/hyrax/base/_file_manager_members.html.erb +1 -1
  315. data/app/views/hyrax/base/_file_manager_thumbnail.html.erb +1 -1
  316. data/app/views/hyrax/base/_form.html.erb +1 -1
  317. data/app/views/hyrax/base/_form_child_work_relationships.html.erb +4 -4
  318. data/app/views/hyrax/base/_form_files.html.erb +9 -9
  319. data/app/views/hyrax/base/_form_member_of_collections.html.erb +3 -3
  320. data/app/views/hyrax/base/_form_metadata.html.erb +1 -1
  321. data/app/views/hyrax/base/_form_permission.html.erb +30 -20
  322. data/app/views/hyrax/base/_form_permission_under_embargo.html.erb +1 -1
  323. data/app/views/hyrax/base/_form_permission_under_lease.html.erb +1 -1
  324. data/app/views/hyrax/base/_form_progress.html.erb +6 -6
  325. data/app/views/hyrax/base/_form_relationships.html.erb +1 -1
  326. data/app/views/hyrax/base/_form_rendering.html.erb +1 -1
  327. data/app/views/hyrax/base/_form_representative.html.erb +1 -1
  328. data/app/views/hyrax/base/_form_share.html.erb +6 -6
  329. data/app/views/hyrax/base/_form_thumbnail.html.erb +1 -1
  330. data/app/views/hyrax/base/_form_visibility_component.html.erb +15 -15
  331. data/app/views/hyrax/base/_guts4form.html.erb +12 -20
  332. data/app/views/hyrax/base/_member.html.erb +1 -1
  333. data/app/views/hyrax/base/_metadata.html.erb +1 -1
  334. data/app/views/hyrax/base/_show_actions.html.erb +9 -9
  335. data/app/views/hyrax/base/_work_button_row.html.erb +16 -15
  336. data/app/views/hyrax/base/_workflow_actions.html.erb +10 -10
  337. data/app/views/hyrax/base/_workflow_actions_widget.erb +1 -1
  338. data/app/views/hyrax/base/file_manager.html.erb +4 -5
  339. data/app/views/hyrax/base/inspect_work.html.erb +1 -1
  340. data/app/views/hyrax/base/show.html.erb +12 -12
  341. data/app/views/hyrax/base/unavailable.html.erb +2 -2
  342. data/app/views/hyrax/batch_edits/_check_all.html.erb +0 -1
  343. data/app/views/hyrax/batch_edits/_delete_selected.html.erb +1 -1
  344. data/app/views/hyrax/batch_edits/edit.html.erb +26 -18
  345. data/app/views/hyrax/collections/_bookmark_control.html.erb +2 -2
  346. data/app/views/hyrax/collections/_list_collections.html.erb +6 -6
  347. data/app/views/hyrax/collections/_list_works.html.erb +3 -1
  348. data/app/views/hyrax/collections/_search_form.html.erb +4 -4
  349. data/app/views/hyrax/collections/_show_document_list_row.html.erb +5 -2
  350. data/app/views/hyrax/collections/_sort_and_per_page.html.erb +3 -3
  351. data/app/views/hyrax/collections/_view_type_group.html.erb +2 -2
  352. data/app/views/hyrax/contact_form/new.html.erb +12 -13
  353. data/app/views/hyrax/content_blocks/_form.html.erb +29 -23
  354. data/app/views/hyrax/content_blocks/templates/agreement.html.erb +3 -3
  355. data/app/views/hyrax/dashboard/_admin_sets.html.erb +22 -28
  356. data/app/views/hyrax/dashboard/_index_partials/_current_proxy_rights.html.erb +2 -2
  357. data/app/views/hyrax/dashboard/_index_partials/_proxy_rights.html.erb +4 -4
  358. data/app/views/hyrax/dashboard/_index_partials/_transfers.html.erb +2 -2
  359. data/app/views/hyrax/dashboard/_repository_growth.html.erb +28 -28
  360. data/app/views/hyrax/dashboard/_resource_type_graph.html.erb +4 -4
  361. data/app/views/hyrax/dashboard/_sidebar.html.erb +3 -3
  362. data/app/views/hyrax/dashboard/_tabs.html.erb +6 -2
  363. data/app/views/hyrax/dashboard/_user_activity.html.erb +22 -19
  364. data/app/views/hyrax/dashboard/_visibility_graph.html.erb +4 -4
  365. data/app/views/hyrax/dashboard/_work_type_graph.html.erb +4 -4
  366. data/app/views/hyrax/dashboard/collections/_batch_edits_actions.html.erb +1 -1
  367. data/app/views/hyrax/dashboard/collections/_bookmark_control.html.erb +2 -2
  368. data/app/views/hyrax/dashboard/collections/_default_group.html.erb +2 -2
  369. data/app/views/hyrax/dashboard/collections/_edit_actions.html.erb +1 -1
  370. data/app/views/hyrax/dashboard/collections/_form.html.erb +48 -33
  371. data/app/views/hyrax/dashboard/collections/_form_branding.html.erb +20 -19
  372. data/app/views/hyrax/dashboard/collections/_form_discovery.html.erb +14 -7
  373. data/app/views/hyrax/dashboard/collections/_form_for_select_collection.html.erb +7 -7
  374. data/app/views/hyrax/dashboard/collections/_form_share.html.erb +13 -11
  375. data/app/views/hyrax/dashboard/collections/_form_share_table.html.erb +34 -31
  376. data/app/views/hyrax/dashboard/collections/_list_collections.html.erb +3 -3
  377. data/app/views/hyrax/dashboard/collections/_list_works.html.erb +3 -1
  378. data/app/views/hyrax/dashboard/collections/_modal_remove_from_collection.html.erb +1 -1
  379. data/app/views/hyrax/dashboard/collections/_modal_remove_sub_collection.html.erb +1 -1
  380. data/app/views/hyrax/dashboard/collections/_show_add_items_actions.html.erb +1 -1
  381. data/app/views/hyrax/dashboard/collections/_show_descriptions.html.erb +5 -3
  382. data/app/views/hyrax/dashboard/collections/_show_document_list_menu.html.erb +4 -4
  383. data/app/views/hyrax/dashboard/collections/_show_document_list_row.html.erb +12 -10
  384. data/app/views/hyrax/dashboard/collections/_show_parent_collection_row.html.erb +2 -2
  385. data/app/views/hyrax/dashboard/collections/_sort_and_per_page.html.erb +4 -4
  386. data/app/views/hyrax/dashboard/collections/_subcollection_list.html.erb +1 -1
  387. data/app/views/hyrax/dashboard/collections/_work_action_menu.html.erb +10 -10
  388. data/app/views/hyrax/dashboard/collections/show.html.erb +4 -4
  389. data/app/views/hyrax/dashboard/profiles/_edit_primary.html.erb +21 -21
  390. data/app/views/hyrax/dashboard/profiles/_trophy_edit.html.erb +5 -5
  391. data/app/views/hyrax/dashboard/profiles/_zotero.html.erb +2 -2
  392. data/app/views/hyrax/dashboard/profiles/edit.html.erb +2 -2
  393. data/app/views/hyrax/dashboard/profiles/show.html.erb +3 -3
  394. data/app/views/hyrax/dashboard/show_admin.html.erb +36 -34
  395. data/app/views/hyrax/dashboard/show_user.html.erb +16 -16
  396. data/app/views/hyrax/dashboard/sidebar/_activity.html.erb +11 -11
  397. data/app/views/hyrax/dashboard/sidebar/_configuration.html.erb +8 -8
  398. data/app/views/hyrax/dashboard/sidebar/_repository_content.html.erb +3 -1
  399. data/app/views/hyrax/dashboard/sidebar/_tasks.html.erb +5 -1
  400. data/app/views/hyrax/dashboard/works/_default_group.html.erb +1 -1
  401. data/app/views/hyrax/dashboard/works/_list_works.html.erb +5 -2
  402. data/app/views/hyrax/depositors/index.html.erb +2 -2
  403. data/app/views/hyrax/embargoes/edit.html.erb +11 -11
  404. data/app/views/hyrax/embargoes/index.html.erb +18 -6
  405. data/app/views/hyrax/file_sets/_actions.html.erb +7 -8
  406. data/app/views/hyrax/file_sets/_descriptions.html.erb +1 -1
  407. data/app/views/hyrax/file_sets/_extra_fields_modal.html.erb +1 -1
  408. data/app/views/hyrax/file_sets/_form.html.erb +1 -1
  409. data/app/views/hyrax/file_sets/_permission_form.html.erb +33 -29
  410. data/app/views/hyrax/file_sets/_show_actions.html.erb +2 -2
  411. data/app/views/hyrax/file_sets/_show_details.html.erb +27 -17
  412. data/app/views/hyrax/file_sets/_single_use_link_rows.html.erb +2 -2
  413. data/app/views/hyrax/file_sets/_single_use_links.html.erb +2 -2
  414. data/app/views/hyrax/file_sets/_versioning.html.erb +9 -9
  415. data/app/views/hyrax/file_sets/edit.html.erb +17 -11
  416. data/app/views/hyrax/file_sets/media_display/_image.html.erb +4 -4
  417. data/app/views/hyrax/file_sets/show.html.erb +2 -2
  418. data/app/views/hyrax/homepage/_announcement.html.erb +2 -2
  419. data/app/views/hyrax/homepage/_explore_collections.html.erb +6 -4
  420. data/app/views/hyrax/homepage/_featured_fields.html.erb +1 -1
  421. data/app/views/hyrax/homepage/_featured_works.html.erb +1 -1
  422. data/app/views/hyrax/homepage/_home_content.html.erb +24 -10
  423. data/app/views/hyrax/homepage/_marketing.html.erb +1 -1
  424. data/app/views/hyrax/homepage/_recent_document.html.erb +4 -1
  425. data/app/views/hyrax/homepage/_sortable_featured.html.erb +3 -3
  426. data/app/views/hyrax/homepage/index.html.erb +4 -4
  427. data/app/views/hyrax/leases/edit.html.erb +11 -11
  428. data/app/views/hyrax/leases/index.html.erb +18 -6
  429. data/app/views/hyrax/my/_admin_set_action_menu.html.erb +5 -5
  430. data/app/views/hyrax/my/_collection_action_menu.html.erb +6 -6
  431. data/app/views/hyrax/my/_constraints.html.erb +2 -2
  432. data/app/views/hyrax/my/_document_list.html.erb +1 -1
  433. data/app/views/hyrax/my/_facet_layout.html.erb +1 -2
  434. data/app/views/hyrax/my/_facet_limit.html.erb +4 -4
  435. data/app/views/hyrax/my/_facet_pagination.html.erb +1 -22
  436. data/app/views/hyrax/my/_facet_pivot.html.erb +1 -1
  437. data/app/views/hyrax/my/_facet_selected.html.erb +1 -1
  438. data/app/views/hyrax/my/_search_form.html.erb +7 -8
  439. data/app/views/hyrax/my/_sort_and_per_page.html.erb +10 -12
  440. data/app/views/hyrax/my/_work_action_menu.html.erb +12 -14
  441. data/app/views/hyrax/my/collections/_default_group.html.erb +2 -2
  442. data/app/views/hyrax/my/collections/_facets.html.erb +2 -2
  443. data/app/views/hyrax/my/collections/_list_collections.html.erb +3 -3
  444. data/app/views/hyrax/my/collections/_modal_add_subcollection.html.erb +2 -2
  445. data/app/views/hyrax/my/collections/_modal_add_to_collection.html.erb +2 -2
  446. data/app/views/hyrax/my/collections/_modal_collection_types_to_create.html.erb +5 -5
  447. data/app/views/hyrax/my/collections/_modal_delete_collection.html.erb +1 -1
  448. data/app/views/hyrax/my/collections/_modal_delete_empty_collection.html.erb +1 -1
  449. data/app/views/hyrax/my/collections/_modal_delete_selected_collections.html.erb +1 -1
  450. data/app/views/hyrax/my/collections/_tabs.html.erb +11 -4
  451. data/app/views/hyrax/my/collections/index.html.erb +6 -5
  452. data/app/views/hyrax/my/facet.html.erb +17 -16
  453. data/app/views/hyrax/my/index.html.erb +2 -2
  454. data/app/views/hyrax/my/works/_batch_actions.html.erb +1 -1
  455. data/app/views/hyrax/my/works/_default_group.html.erb +1 -1
  456. data/app/views/hyrax/my/works/_facets.html.erb +2 -2
  457. data/app/views/hyrax/my/works/_list_works.html.erb +7 -9
  458. data/app/views/hyrax/my/works/_tabs.html.erb +9 -4
  459. data/app/views/hyrax/my/works/index.html.erb +22 -18
  460. data/app/views/hyrax/notifications/_notifications.html.erb +1 -1
  461. data/app/views/hyrax/notifications/index.html.erb +4 -4
  462. data/app/views/hyrax/operations/index.html.erb +1 -1
  463. data/app/views/hyrax/operations/show.html.erb +2 -2
  464. data/app/views/hyrax/pages/_form.html.erb +76 -64
  465. data/app/views/hyrax/permissions/confirm.html.erb +4 -4
  466. data/app/views/hyrax/permissions/confirm_access.html.erb +4 -4
  467. data/app/views/hyrax/stats/file.html.erb +1 -1
  468. data/app/views/hyrax/stats/work.html.erb +1 -1
  469. data/app/views/hyrax/transfers/_received.html.erb +4 -4
  470. data/app/views/hyrax/transfers/index.html.erb +8 -8
  471. data/app/views/hyrax/uploads/_js_templates.html.erb +14 -14
  472. data/app/views/hyrax/uploads/_js_templates_branding.html.erb +5 -5
  473. data/app/views/hyrax/uploads/_js_templates_versioning.html.erb +15 -15
  474. data/app/views/hyrax/users/_activity.html.erb +3 -3
  475. data/app/views/hyrax/users/_contributions.html.erb +3 -3
  476. data/app/views/hyrax/users/_left_sidebar.html.erb +1 -1
  477. data/app/views/hyrax/users/_profile_tabs.html.erb +16 -8
  478. data/app/views/hyrax/users/_search_form.html.erb +2 -2
  479. data/app/views/hyrax/users/_user.html.erb +5 -5
  480. data/app/views/hyrax/users/_user_info.html.erb +4 -4
  481. data/app/views/hyrax/users/_vitals.html.erb +3 -3
  482. data/app/views/hyrax/users/show.html.erb +2 -2
  483. data/app/views/layouts/hyrax/dashboard.html.erb +4 -4
  484. data/app/views/layouts/hyrax.html.erb +4 -3
  485. data/app/views/shared/_appearance_styles.html.erb +8 -8
  486. data/app/views/shared/_footer.html.erb +1 -1
  487. data/app/views/shared/_locale_picker.html.erb +5 -8
  488. data/app/views/shared/_nav_safety_modal.html.erb +2 -2
  489. data/app/views/shared/_select_work_type_modal.html.erb +2 -2
  490. data/chart/hyrax/Chart.yaml +11 -7
  491. data/chart/hyrax/README.md +22 -1
  492. data/chart/hyrax/templates/_helpers.tpl +4 -0
  493. data/chart/hyrax/templates/cron-embargo.yaml +5 -0
  494. data/chart/hyrax/templates/cron-lease.yaml +5 -0
  495. data/chart/hyrax/templates/deployment-worker.yaml +11 -0
  496. data/chart/hyrax/templates/ingress.yaml +7 -6
  497. data/chart/hyrax/values.yaml +152 -0
  498. data/config/features.rb +48 -50
  499. data/config/initializers/listeners.rb +0 -1
  500. data/config/initializers/{valkryrie_storage.rb → storage_adapter_initializer.rb} +5 -0
  501. data/config/locales/hyrax.de.yml +22 -21
  502. data/config/locales/hyrax.en.yml +34 -32
  503. data/config/locales/hyrax.es.yml +16 -15
  504. data/config/locales/hyrax.fr.yml +9 -8
  505. data/config/locales/hyrax.it.yml +9 -8
  506. data/config/locales/hyrax.pt-BR.yml +8 -7
  507. data/config/locales/hyrax.zh.yml +8 -7
  508. data/config/metadata/basic_metadata.yaml +2 -0
  509. data/config/metadata/core_metadata.yaml +1 -1
  510. data/docker-compose.yml +49 -43
  511. data/documentation/developing-your-hyrax-based-app.md +1 -1
  512. data/documentation/legacyREADME.md +1 -1
  513. data/hyrax.gemspec +15 -22
  514. data/karma.conf.js +104 -0
  515. data/lib/generators/hyrax/assets_generator.rb +2 -5
  516. data/lib/generators/hyrax/collection_resource/USAGE +20 -0
  517. data/lib/generators/hyrax/collection_resource/collection_resource_generator.rb +133 -0
  518. data/lib/generators/hyrax/collection_resource/templates/collection.rb.erb +34 -0
  519. data/lib/generators/hyrax/collection_resource/templates/collection_form.rb.erb +7 -0
  520. data/lib/generators/hyrax/collection_resource/templates/collection_form_spec.rb.erb +13 -0
  521. data/lib/generators/hyrax/collection_resource/templates/collection_indexer.rb.erb +7 -0
  522. data/lib/generators/hyrax/collection_resource/templates/collection_indexer_spec.rb.erb +13 -0
  523. data/lib/generators/hyrax/collection_resource/templates/collection_metadata.yaml +22 -0
  524. data/lib/generators/hyrax/collection_resource/templates/collection_spec.rb.erb +12 -0
  525. data/lib/generators/hyrax/install_generator.rb +9 -24
  526. data/lib/generators/hyrax/templates/catalog_controller.rb +20 -13
  527. data/lib/generators/hyrax/templates/config/initializers/riiif.rb +1 -1
  528. data/lib/generators/hyrax/templates/config/locales/hyrax.de.yml +1 -1
  529. data/lib/generators/hyrax/templates/config/locales/hyrax.en.yml +1 -1
  530. data/lib/generators/hyrax/templates/config/locales/hyrax.es.yml +1 -1
  531. data/lib/generators/hyrax/templates/config/locales/hyrax.fr.yml +1 -1
  532. data/lib/generators/hyrax/templates/config/locales/hyrax.it.yml +1 -1
  533. data/lib/generators/hyrax/templates/config/locales/hyrax.pt-BR.yml +1 -1
  534. data/lib/generators/hyrax/templates/config/locales/hyrax.zh.yml +1 -1
  535. data/lib/generators/hyrax/templates/hyrax.scss +1 -2
  536. data/lib/generators/hyrax/templates/package.json +7 -8
  537. data/lib/hyrax/administrative_set_name.rb +18 -0
  538. data/lib/hyrax/collection_name.rb +2 -0
  539. data/lib/hyrax/configuration.rb +22 -40
  540. data/lib/hyrax/controlled_vocabularies/location.rb +9 -2
  541. data/lib/hyrax/controlled_vocabularies/resource_label_caching.rb +42 -0
  542. data/lib/hyrax/controlled_vocabularies.rb +1 -0
  543. data/lib/hyrax/engine.rb +1 -2
  544. data/lib/hyrax/publisher.rb +45 -0
  545. data/lib/hyrax/schema.rb +16 -13
  546. data/lib/hyrax/specs/capybara.rb +6 -4
  547. data/lib/hyrax/specs/shared_specs/hydra_works.rb +11 -5
  548. data/lib/hyrax/specs/shared_specs/indexers.rb +117 -3
  549. data/lib/hyrax/transactions/admin_set_create.rb +2 -1
  550. data/lib/hyrax/transactions/admin_set_destroy.rb +22 -0
  551. data/lib/hyrax/transactions/admin_set_update.rb +21 -0
  552. data/lib/hyrax/transactions/collection_destroy.rb +22 -0
  553. data/lib/hyrax/transactions/collection_update.rb +5 -2
  554. data/lib/hyrax/transactions/container.rb +76 -56
  555. data/lib/hyrax/transactions/steps/change_depositor.rb +46 -0
  556. data/lib/hyrax/transactions/steps/check_for_empty_admin_set.rb +36 -0
  557. data/lib/hyrax/transactions/steps/delete_access_control.rb +32 -0
  558. data/lib/hyrax/transactions/steps/delete_resource.rb +19 -3
  559. data/lib/hyrax/transactions/steps/save.rb +24 -6
  560. data/lib/hyrax/transactions/steps/save_access_control.rb +2 -2
  561. data/lib/hyrax/transactions/steps/save_collection_banner.rb +59 -0
  562. data/lib/hyrax/transactions/steps/save_collection_logo.rb +109 -0
  563. data/lib/hyrax/transactions/steps/set_user_as_creator.rb +41 -0
  564. data/lib/hyrax/transactions/steps/update_work_members.rb +51 -0
  565. data/lib/hyrax/transactions/work_create.rb +1 -1
  566. data/lib/hyrax/transactions/work_destroy.rb +2 -1
  567. data/lib/hyrax/transactions/{update_work.rb → work_update.rb} +4 -3
  568. data/lib/hyrax/version.rb +1 -1
  569. data/lib/valkyrie/indexing/solr/indexing_adapter.rb +1 -1
  570. data/lib/wings/active_fedora_converter/file_metadata_node.rb +48 -0
  571. data/lib/wings/active_fedora_converter/instance_builder.rb +68 -0
  572. data/lib/wings/active_fedora_converter.rb +3 -3
  573. data/lib/wings/attribute_transformer.rb +5 -1
  574. data/lib/wings/services/custom_queries/find_file_metadata.rb +19 -8
  575. data/lib/wings/setup.rb +3 -1
  576. data/lib/wings/valkyrie/persister.rb +4 -1
  577. data/lib/wings/valkyrie/query_service.rb +6 -7
  578. data/lib/wings/valkyrie/storage.rb +7 -1
  579. data/package.json +11 -0
  580. data/tasks/hyrax_dev.rake +32 -0
  581. data/template.rb +1 -1
  582. data/vendor/assets/javascripts/dataTables.bootstrap4.js +184 -0
  583. data/vendor/assets/javascripts/fileupload/jquery.fileupload-ui.js +1 -1
  584. data/vendor/assets/javascripts/fileupload/jquery.fileupload.js +2 -2
  585. data/vendor/assets/javascripts/fileupload/jquery.iframe-transport.js +1 -1
  586. data/vendor/assets/javascripts/handlebars.js +5214 -0
  587. data/vendor/assets/javascripts/jquery-ui.js +19057 -0
  588. data/vendor/assets/javascripts/jquery.dataTables.js +15336 -0
  589. data/vendor/assets/javascripts/morris/morris.min.js +9 -1
  590. data/vendor/assets/javascripts/morris/raphael-min.js +4 -6
  591. data/vendor/assets/javascripts/nestable.js +1 -1
  592. data/vendor/assets/stylesheets/dataTables.bootstrap4.css +307 -0
  593. data/vendor/assets/stylesheets/jquery-ui.css +1315 -0
  594. data/vendor/assets/stylesheets/morris.css +3 -0
  595. metadata +162 -155
  596. data/app/actors/hyrax/actors/initialize_workflow_actor.rb +0 -35
  597. data/app/helpers/hyrax/url_helper.rb +0 -13
  598. data/app/jobs/content_depositor_change_event_job.rb +0 -47
  599. data/app/models/concerns/hyrax/with_file_sets.rb +0 -17
  600. data/lib/hyrax/transactions/create_work.rb +0 -62
  601. data/lib/hyrax/transactions/destroy_work.rb +0 -25
  602. data/lib/hyrax/transactions/steps/apply_collection_permission_template.rb +0 -32
  603. data/lib/hyrax/transactions/steps/apply_permission_template.rb +0 -30
  604. data/lib/hyrax/transactions/steps/apply_visibility.rb +0 -39
  605. data/lib/hyrax/transactions/steps/destroy_work.rb +0 -25
  606. data/lib/hyrax/transactions/steps/ensure_permission_template.rb +0 -27
  607. data/lib/hyrax/transactions/steps/save_work.rb +0 -35
  608. data/lib/wings/services/file_converter_service.rb +0 -19
  609. data/lib/wings/services/file_metadata_builder.rb +0 -94
  610. data/vendor/assets/javascripts/handlebars-v4.0.5.js +0 -4612
  611. data/vendor/assets/stylesheets/morris.js/0.5.1/morris.css +0 -2
@@ -70,38 +70,6 @@ module Hyrax
70
70
 
71
71
  private
72
72
 
73
- ##
74
- # @deprecated
75
- def build_within_form
76
- authorize! :read, form_params[:child_id]
77
- form_class.new(context: self, **form_params.to_h.symbolize_keys)
78
- end
79
- deprecation_deprecate :build_within_form
80
-
81
- ##
82
- # @deprecated
83
- def build_under_form
84
- authorize! :read, form_params[:parent_id]
85
- form_class.new(context: self, **form_params.to_h.symbolize_keys)
86
- end
87
- deprecation_deprecate :build_under_form
88
-
89
- ##
90
- # @deprecated
91
- def build_create_collection_form
92
- authorize! :deposit, form_params[:parent_id]
93
- form_class.new(context: self, **form_params.to_h.symbolize_keys)
94
- end
95
- deprecation_deprecate :build_create_collection_form
96
-
97
- ##
98
- # @deprecated
99
- def build_remove_form
100
- authorize! :edit, form_params[:parent_id]
101
- form_class.new(context: self, **form_params.to_h.symbolize_keys)
102
- end
103
- deprecation_deprecate :build_create_collection_form
104
-
105
73
  ##
106
74
  # @api public
107
75
  # @since 3.2.0
@@ -10,6 +10,9 @@ module Hyrax
10
10
  before_action :authenticate_user!, except: [:show, :citation, :stats]
11
11
  load_and_authorize_resource class: ::FileSet, except: :show
12
12
  before_action :build_breadcrumbs, only: [:show, :edit, :stats]
13
+ before_action do
14
+ blacklight_config.track_search_session = false
15
+ end
13
16
 
14
17
  # provides the help_text view method
15
18
  helper PermissionsHelper
@@ -2,7 +2,6 @@
2
2
  class Hyrax::HomepageController < ApplicationController
3
3
  # Adds Hydra behaviors into the application controller
4
4
  include Blacklight::SearchContext
5
- include Blacklight::SearchHelper
6
5
  include Blacklight::AccessControls::Catalog
7
6
 
8
7
  class_attribute :presenter_class
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Hyrax
3
3
  class MyController < ApplicationController
4
- extend Deprecation
5
4
  include Hydra::Catalog
6
5
  include Hyrax::Collections::AcceptsBatches
7
6
 
@@ -63,11 +62,6 @@ module Hyrax
63
62
  @add_works_to_collection_label = params.fetch(:add_works_to_collection_label, '')
64
63
  end
65
64
 
66
- def query_solr
67
- search_service.search_results
68
- end
69
- deprecation_deprecate :query_solr
70
-
71
65
  def search_service
72
66
  Hyrax::SearchService.new(config: blacklight_config, user_params: params, scope: self)
73
67
  end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Hyrax
3
3
  class SingleUseLinksController < ApplicationController
4
- include Blacklight::SearchHelper
5
4
  class_attribute :show_presenter
6
5
  self.show_presenter = Hyrax::SingleUseLinkPresenter
7
6
  before_action :authenticate_user!
@@ -45,7 +44,7 @@ module Hyrax
45
44
  end
46
45
 
47
46
  def asset_show_path
48
- polymorphic_path([main_app, fetch(params[:id]).last])
47
+ polymorphic_path([main_app, search_service.fetch(params[:id]).last])
49
48
  end
50
49
  end
51
50
  end
@@ -75,7 +75,7 @@ module Hyrax
75
75
 
76
76
  def render_single_use_error(exception)
77
77
  logger.error("Rendering PAGE due to exception: #{exception.inspect} - #{exception.backtrace if exception.respond_to? :backtrace}")
78
- render 'single_use_error', layout: "error", status: 404
78
+ render 'single_use_error', layout: "error", status: :not_found
79
79
  end
80
80
 
81
81
  def _prefixes
@@ -6,6 +6,20 @@ module Hyrax
6
6
  # @api public
7
7
  # @see https://github.com/samvera/valkyrie/wiki/ChangeSets-and-Dirty-Tracking
8
8
  class AdministrativeSetForm < Valkyrie::ChangeSet
9
+ ##
10
+ # @api private
11
+ AdminSetMembersPopulator = lambda do |_options|
12
+ self.member_ids =
13
+ if model.new_record
14
+ []
15
+ else
16
+ Hyrax
17
+ .query_service
18
+ .find_inverse_references_by(property: :admin_set_id, resource: model)
19
+ .map(&:id)
20
+ end
21
+ end
22
+
9
23
  property :title, required: true, primary: true
10
24
  property :description, primary: true
11
25
 
@@ -13,7 +27,11 @@ module Hyrax
13
27
  property :date_modified, readable: false
14
28
  property :date_uploaded, readable: false
15
29
 
16
- property :depositor
30
+ property :creator
31
+
32
+ validates :title, presence: true
33
+
34
+ property :member_ids, virtual: true, default: [], prepopulator: AdminSetMembersPopulator
17
35
 
18
36
  class << self
19
37
  def model_class
@@ -65,7 +65,7 @@ module Hyrax
65
65
  def initialize_combined_fields
66
66
  # For each of the files in the batch, set the attributes to be the concatenation of all the attributes
67
67
  batch_document_ids.each_with_object({}) do |doc_id, combined_attributes|
68
- work = ActiveFedora::Base.find(doc_id)
68
+ work = Hyrax.query_service.find_by(id: doc_id)
69
69
  terms.each do |field|
70
70
  combined_attributes[field] ||= []
71
71
  combined_attributes[field] = (combined_attributes[field] + work[field].to_a).uniq
@@ -26,11 +26,11 @@ module Hyrax
26
26
  context:,
27
27
  query_service: default_query_service,
28
28
  persistence_service: default_persistence_service)
29
- self.parent = parent || (parent_id.present? && Hyrax.config.collection_class.find(parent_id))
30
- self.child = child || (child_id.present? && Hyrax.config.collection_class.find(child_id))
31
29
  self.context = context
32
30
  self.query_service = query_service
33
31
  self.persistence_service = persistence_service
32
+ self.parent = parent || (parent_id.present? && find_parent(parent_id))
33
+ self.child = child || (child_id.present? && find_child(child_id))
34
34
  end # rubocop:enable Metrics/ParameterLists
35
35
 
36
36
  attr_accessor :parent, :child
@@ -83,7 +83,7 @@ module Hyrax
83
83
  # rerouting to new_dashboard_collection_path to add the new collection as
84
84
  # a child. Since we don't yet have a child collection, the valid? option can't be used here.
85
85
  def validate_add
86
- if parent.try(:nestable?)
86
+ if nestable?(parent)
87
87
  nesting_within_maximum_depth
88
88
  else
89
89
  errors.add(:parent, :cannot_have_child_nested)
@@ -116,15 +116,30 @@ module Hyrax
116
116
  end
117
117
 
118
118
  def parent_and_child_can_be_nested
119
- if parent.try(:nestable?) && child.try(:nestable?)
119
+ if nestable?(parent) && nestable?(child)
120
120
  return true if query_service.parent_and_child_can_nest?(parent: parent, child: child, scope: context)
121
121
  errors.add(:parent, :cannot_have_child_nested)
122
122
  errors.add(:child, :cannot_nest_in_parent)
123
123
  else
124
- errors.add(:parent, :is_not_nestable) unless parent.try(:nestable?)
125
- errors.add(:child, :is_not_nestable) unless child.try(:nestable?)
124
+ errors.add(:parent, :is_not_nestable) unless nestable?(parent)
125
+ errors.add(:child, :is_not_nestable) unless nestable?(child)
126
126
  end
127
127
  end
128
+
129
+ def find_parent(parent_id)
130
+ Hyrax.query_service.find_by(id: parent_id)
131
+ end
132
+
133
+ def find_child(child_id)
134
+ Hyrax.query_service.find_by(id: child_id)
135
+ end
136
+
137
+ def nestable?(collection)
138
+ return false if collection.blank?
139
+ return collection.nestable? if collection.respond_to? :nestable?
140
+ collection_type = Hyrax::CollectionType.find_by_gid!(collection.collection_type_gid)
141
+ collection_type.nestable?
142
+ end
128
143
  end
129
144
  end
130
145
  end
@@ -6,7 +6,32 @@ module Hyrax
6
6
  # @api public
7
7
  # @see https://github.com/samvera/valkyrie/wiki/ChangeSets-and-Dirty-Tracking
8
8
  class PcdmCollectionForm < Valkyrie::ChangeSet # rubocop:disable Metrics/ClassLength
9
- property :title, required: true, primary: true
9
+ include Hyrax::FormFields(:core_metadata)
10
+
11
+ BannerInfoPrepopulator = lambda do |_options|
12
+ self.banner_info ||= begin
13
+ banner_info = CollectionBrandingInfo.where(collection_id: id.to_s, role: "banner")
14
+ banner_file = File.split(banner_info.first.local_path).last unless banner_info.empty?
15
+ alttext = banner_info.first.alt_text unless banner_info.empty?
16
+ file_location = banner_info.first.local_path unless banner_info.empty?
17
+ relative_path = "/" + banner_info.first.local_path.split("/")[-4..-1].join("/") unless banner_info.empty?
18
+ { file: banner_file, full_path: file_location, relative_path: relative_path, alttext: alttext }
19
+ end
20
+ end
21
+
22
+ LogoInfoPrepopulator = lambda do |_options|
23
+ self.logo_info ||= begin
24
+ logos_info = CollectionBrandingInfo.where(collection_id: id.to_s, role: "logo")
25
+
26
+ logos_info.map do |logo_info|
27
+ logo_file = File.split(logo_info.local_path).last
28
+ relative_path = "/" + logo_info.local_path.split("/")[-4..-1].join("/")
29
+ alttext = logo_info.alt_text
30
+ linkurl = logo_info.target_url
31
+ { file: logo_file, full_path: logo_info.local_path, relative_path: relative_path, alttext: alttext, linkurl: linkurl }
32
+ end
33
+ end
34
+ end
10
35
 
11
36
  property :human_readable_type, writable: false
12
37
  property :date_modified, readable: false
@@ -14,12 +39,15 @@ module Hyrax
14
39
 
15
40
  property :depositor, required: true
16
41
  property :collection_type_gid, required: true
42
+ property :visibility, default: VisibilityIntention::PRIVATE
17
43
 
18
44
  property :member_of_collection_ids, default: [], type: Valkyrie::Types::Array
19
45
 
20
- validates :title, presence: true
21
46
  validates :collection_type_gid, presence: true
22
47
 
48
+ property :banner_info, virtual: true, prepopulator: BannerInfoPrepopulator
49
+ property :logo_info, virtual: true, prepopulator: LogoInfoPrepopulator
50
+
23
51
  class << self
24
52
  def model_class
25
53
  Hyrax::PcdmCollection
@@ -7,16 +7,12 @@ module Hyrax
7
7
  self.model_class = PermissionTemplate
8
8
  self.terms = []
9
9
  delegate :access_grants, :access_grants_attributes=, :release_date, :release_period, :visibility, to: :model
10
- delegate :available_workflows, :active_workflow, :source_model, to: :model
11
-
12
- # @return [#to_s] the primary key of the associated admin_set or collection
13
- # def source_id (because you might come looking for this method)
14
- delegate :id, to: :source_model, prefix: :source
10
+ delegate :available_workflows, :active_workflow, :source, :source_id, to: :model
15
11
 
16
12
  ##
17
- # @deprecated use PermissionTemplate#reset_access_controls instead.
13
+ # @deprecated use PermissionTemplate#reset_access_controls_for instead.
18
14
  def reset_access_controls!
19
- Deprecation.warn("reset_access_controls! is deprecated; use PermissionTemplate#reset_access_controls instead.")
15
+ Deprecation.warn("reset_access_controls! is deprecated; use PermissionTemplate#reset_access_controls_for instead.")
20
16
  source_model.reset_access_controls!
21
17
  end
22
18
 
@@ -73,8 +69,8 @@ module Hyrax
73
69
  # Copy this access to the permissions of the Admin Set or Collection and to
74
70
  # the WorkflowResponsibilities of the active workflow if this is an Admin Set
75
71
  def update_access(remove_agent: false)
76
- source_model.reset_access_controls!
77
- update_workflow_responsibilities(remove_agent: remove_agent) if source_model.is_a?(AdminSet)
72
+ model.reset_access_controls_for(collection: source)
73
+ update_workflow_responsibilities(remove_agent: remove_agent) if source.is_a?(Hyrax::AdministrativeSet)
78
74
  end
79
75
 
80
76
  # This method is used to revoke access to a Collection or Admin Set and its workflows
@@ -85,6 +81,18 @@ module Hyrax
85
81
  update_access(remove_agent: true)
86
82
  end
87
83
 
84
+ ##
85
+ # A bit of an analogue for a `belongs_to :source_model` as it crosses from Fedora to the DB
86
+ # @return [AdminSet, ::Collection]
87
+ # @raise [Hyrax::ObjectNotFoundError] when neither an AdminSet or Collection is found
88
+ # @note This method will eventually be replaced by #source which returns a Hyrax::Resource
89
+ # object. Many methods are equally able to process both Hyrax::Resource and
90
+ # ActiveFedora::Base. Only call this method if you need the ActiveFedora::Base object.
91
+ # @see #source
92
+ def source_model # rubocop:disable Rails/Delegate
93
+ model.source_model
94
+ end
95
+
88
96
  private
89
97
 
90
98
  # @return [String]
@@ -33,7 +33,7 @@ module Hyrax
33
33
  class ResourceForm < Hyrax::ChangeSet # rubocop:disable Metrics/ClassLength
34
34
  ##
35
35
  # @api private
36
- InWorksPopulator = lambda do |_options|
36
+ InWorksPrepopulator = lambda do |_options|
37
37
  self.in_works_ids =
38
38
  if persisted?
39
39
  Hyrax.query_service
@@ -52,7 +52,7 @@ module Hyrax
52
52
  # with `etag`-driven, application-side lock checks. for non-wings adapters
53
53
  # we want to move away from application side lock validation and rely
54
54
  # on the adapter/database features instead.
55
- LockKeyPopulator = lambda do |_options|
55
+ LockKeyPrepopulator = lambda do |_options|
56
56
  if Hyrax.config.disable_wings || !Hyrax.metadata_adapter.is_a?(Wings::Valkyrie::MetadataAdapter)
57
57
  Hyrax.logger.info "trying to prepopulate a lock token for " \
58
58
  "#{self.class.inspect}, but optimistic locking isn't " \
@@ -95,10 +95,12 @@ module Hyrax
95
95
  property :visibility_during_lease, virtual: true, prepopulator: ->(_opts) { self.visibility_during_lease = model.lease&.visibility_during_lease }
96
96
 
97
97
  # pcdm relationships
98
- property :admin_set_id, prepopulator: ->(_opts) { self.admin_set_id = AdminSet::DEFAULT_ID }
99
- property :in_works_ids, virtual: true, prepopulator: InWorksPopulator
98
+ property :admin_set_id, prepopulator: ->(_opts) { self.admin_set_id = Hyrax::AdminSetCreateService.find_or_create_default_admin_set.id.to_s }
99
+ property :in_works_ids, virtual: true, prepopulator: InWorksPrepopulator
100
100
  property :member_ids, default: [], type: Valkyrie::Types::Array
101
101
  property :member_of_collection_ids, default: [], type: Valkyrie::Types::Array
102
+ property :member_of_collections_attributes, virtual: true, populator: :in_collections_populator
103
+ validates_with CollectionMembershipValidator
102
104
 
103
105
  property :representative_id, type: Valkyrie::Types::String
104
106
  property :thumbnail_id, type: Valkyrie::Types::String
@@ -112,7 +114,7 @@ module Hyrax
112
114
  # the model is disabled
113
115
  #
114
116
  # @see https://github.com/samvera/valkyrie/wiki/Optimistic-Locking
115
- property :version, virtual: true, prepopulator: LockKeyPopulator
117
+ property :version, virtual: true, prepopulator: LockKeyPrepopulator
116
118
 
117
119
  # backs the child work search element;
118
120
  # @todo: look for a way for the view template not to depend on this
@@ -131,6 +133,8 @@ module Hyrax
131
133
  "#{resource.class.name}Form".constantize.new(resource)
132
134
  rescue NameError => _err
133
135
  case resource
136
+ when Hyrax::AdministrativeSet
137
+ Hyrax::Forms::AdministrativeSetForm.new(resource)
134
138
  when Hyrax::FileSet
135
139
  Hyrax::Forms::FileSetForm.new(resource)
136
140
  when Hyrax::PcdmCollection
@@ -204,6 +208,20 @@ module Hyrax
204
208
 
205
209
  private
206
210
 
211
+ def in_collections_populator(fragment:, **_options)
212
+ adds = []
213
+ deletes = []
214
+ fragment.each do |_, h|
215
+ if h["_destroy"] == "true"
216
+ deletes << Valkyrie::ID.new(h["id"])
217
+ else
218
+ adds << Valkyrie::ID.new(h["id"])
219
+ end
220
+ end
221
+
222
+ self.member_of_collection_ids = ((member_of_collection_ids + adds) - deletes).uniq
223
+ end
224
+
207
225
  # https://trailblazer.to/2.1/docs/reform.html#reform-populators-populator-collections
208
226
  def permission_populator(collection:, index:, **)
209
227
  Hyrax::Forms::Permission.new(collection[index])
@@ -6,7 +6,7 @@ module Hyrax
6
6
  # Visibility options for permission templates
7
7
  def options
8
8
  i18n_prefix = "hyrax.admin.admin_sets.form_visibility.visibility"
9
- # Note: Visibility 'varies' = '' implies no constraints
9
+ # NOTE: Visibility 'varies' = '' implies no constraints
10
10
  [[Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_PUBLIC, I18n.t('.everyone', scope: i18n_prefix)],
11
11
  ['', I18n.t('.varies', scope: i18n_prefix)],
12
12
  [Hydra::AccessControls::AccessRight::VISIBILITY_TEXT_VALUE_AUTHENTICATED, I18n.t('.institution', scope: i18n_prefix)],
@@ -191,6 +191,20 @@ module Hyrax
191
191
  CollectionType.find_or_create_default_collection_type.title
192
192
  end
193
193
 
194
+ ##
195
+ # @param collection [Object]
196
+ #
197
+ # @return [PermissionTemplateForm]
198
+ def collection_permission_template_form_for(form:)
199
+ case form
200
+ when Valkyrie::ChangeSet
201
+ template_model = Hyrax::PermissionTemplate.find_or_create_by(source_id: form.id.to_s)
202
+ Hyrax::Forms::PermissionTemplateForm.new(template_model)
203
+ else
204
+ form.permission_template
205
+ end
206
+ end
207
+
194
208
  private
195
209
 
196
210
  # add hidden fields to a form for performing an action on a single document on a collection
@@ -0,0 +1,150 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Hyrax
4
+ module FacetsHelper
5
+ # Methods in this module are from Blacklight::FacetsHelperBehavior, blacklight v6.24.0
6
+ # This module is used to ensure Hyrax facet views that rely on deprecated Blacklight helper methods are still functional
7
+
8
+ include Blacklight::Facet
9
+
10
+ ##
11
+ # Renders the list of values
12
+ # removes any elements where render_facet_item returns a nil value. This enables an application
13
+ # to filter undesireable facet items so they don't appear in the UI
14
+ def render_facet_limit_list(paginator, facet_field, wrapping_element = :li)
15
+ safe_join(paginator.items.map { |item| render_facet_item(facet_field, item) }.compact.map { |item| content_tag(wrapping_element, item) })
16
+ end
17
+
18
+ ##
19
+ # Renders a single facet item
20
+ def render_facet_item(facet_field, item)
21
+ if facet_in_params?(facet_field, item.value)
22
+ render_selected_facet_value(facet_field, item)
23
+ else
24
+ render_facet_value(facet_field, item)
25
+ end
26
+ end
27
+
28
+ ##
29
+ # Standard display of a facet value in a list. Used in both _facets sidebar
30
+ # partial and catalog/facet expanded list. Will output facet value name as
31
+ # a link to add that to your restrictions, with count in parens.
32
+ #
33
+ # @param [Blacklight::Solr::Response::Facets::FacetField] facet_field
34
+ # @param [Blacklight::Solr::Response::Facets::FacetItem] item
35
+ # @param [Hash] options
36
+ # @option options [Boolean] :suppress_link display the facet, but don't link to it
37
+ # @return [String]
38
+ def render_facet_value(facet_field, item, options = {})
39
+ path = path_for_facet(facet_field, item)
40
+ content_tag(:span, class: "facet-label") do
41
+ link_to_unless(options[:suppress_link], facet_display_value(facet_field, item), path, class: "facet_select")
42
+ end + render_facet_count(item.hits)
43
+ end
44
+
45
+ ##
46
+ # Where should this facet link to?
47
+ # @param [Blacklight::Solr::Response::Facets::FacetField] facet_field
48
+ # @param [String] item
49
+ # @return [String]
50
+ def path_for_facet(facet_field, item)
51
+ facet_config = facet_configuration_for_field(facet_field)
52
+ if facet_config.url_method
53
+ send(facet_config.url_method, facet_field, item)
54
+ else
55
+ search_action_path(search_state.add_facet_params_and_redirect(facet_field, item))
56
+ end
57
+ end
58
+
59
+ ##
60
+ # Standard display of a SELECTED facet value (e.g. without a link and with a remove button)
61
+ # @see #render_facet_value
62
+ # @param [Blacklight::Solr::Response::Facets::FacetField] facet_field
63
+ # @param [String] item
64
+ def render_selected_facet_value(facet_field, item)
65
+ remove_href = search_action_path(search_state.remove_facet_params(facet_field, item))
66
+ content_tag(:span, class: "facet-label") do
67
+ content_tag(:span, facet_display_value(facet_field, item), class: "selected") +
68
+ # remove link
69
+ link_to(remove_href, class: "remove") do
70
+ content_tag(:i, '', class: "fa fa-times") +
71
+ content_tag(:span, '[remove]', class: 'sr-only')
72
+ end
73
+ end + render_facet_count(item.hits, classes: ["selected"])
74
+ end
75
+
76
+ ##
77
+ # Renders a count value for facet limits. Can be over-ridden locally
78
+ # to change style. And can be called by plugins to get consistent display.
79
+ #
80
+ # @param [Integer] num number of facet results
81
+ # @param [Hash] options
82
+ # @option options [Array<String>] an array of classes to add to count span.
83
+ # @return [String]
84
+ def render_facet_count(num, options = {})
85
+ classes = (options[:classes] || []) << "facet-count"
86
+ content_tag("span", t('blacklight.search.facets.count', number: number_with_delimiter(num)), class: classes)
87
+ end
88
+
89
+ ##
90
+ # Check if the query parameters have the given facet field with the
91
+ # given value.
92
+ #
93
+ # @param [Object] field
94
+ # @param [Object] item facet value
95
+ # @return [Boolean]
96
+ def facet_in_params?(field, item)
97
+ value = facet_value_for_facet_item(item)
98
+
99
+ (facet_params(field) || []).include? value
100
+ end
101
+
102
+ ##
103
+ # Get the values of the facet set in the blacklight query string
104
+ def facet_params(field)
105
+ config = facet_configuration_for_field(field)
106
+
107
+ params[:f][config.key] if params[:f]
108
+ end
109
+
110
+ ##
111
+ # Get the displayable version of a facet's value
112
+ #
113
+ # @param [Object] field
114
+ # @param [String] item value
115
+ # @return [String]
116
+ # rubocop:disable Metrics/MethodLength
117
+ def facet_display_value(field, item)
118
+ facet_config = facet_configuration_for_field(field)
119
+
120
+ value = if item.respond_to? :label
121
+ item.label
122
+ else
123
+ facet_value_for_facet_item(item)
124
+ end
125
+
126
+ if facet_config.helper_method
127
+ send facet_config.helper_method, value
128
+ elsif facet_config.query && facet_config.query[value]
129
+ facet_config.query[value][:label]
130
+ elsif facet_config.date
131
+ localization_options = facet_config.date == true ? {} : facet_config.date
132
+
133
+ l(value.to_datetime, localization_options)
134
+ else
135
+ value
136
+ end
137
+ end
138
+ # rubocop:enable Metrics/MethodLength
139
+
140
+ private
141
+
142
+ def facet_value_for_facet_item(item)
143
+ if item.respond_to? :value
144
+ item.value
145
+ else
146
+ item
147
+ end
148
+ end
149
+ end
150
+ end
@@ -8,7 +8,6 @@ module Hyrax
8
8
  include Hyrax::TitleHelper
9
9
  include Hyrax::FileSetHelper
10
10
  include Hyrax::AbilityHelper
11
- include Hyrax::UrlHelper
12
11
  include Hyrax::EmbargoHelper
13
12
  include Hyrax::LeaseHelper
14
13
  include Hyrax::CollectionsHelper
@@ -19,6 +18,7 @@ module Hyrax
19
18
  include Hyrax::PermissionLevelsHelper
20
19
  include Hyrax::WorkFormHelper
21
20
  include Hyrax::WorkflowsHelper
21
+ include Hyrax::FacetsHelper
22
22
 
23
23
  ##
24
24
  # @return [Array<String>] the list of all user groups
@@ -69,7 +69,7 @@ module Hyrax
69
69
  unread_notifications = mailbox.unread_count
70
70
  link_to(hyrax.notifications_path,
71
71
  'aria-label' => mailbox.label(params[:locale]),
72
- class: 'notify-number') do
72
+ class: 'notify-number nav-link') do
73
73
  capture do
74
74
  concat tag.span('', class: 'fa fa-bell')
75
75
  concat "\n"
@@ -195,7 +195,7 @@ module Hyrax
195
195
  # this block is only executed when a link is inserted;
196
196
  # if we pass text containing no links, it just returns text.
197
197
  auto_link(html_escape(text)) do |value|
198
- "<span class='glyphicon glyphicon-new-window'></span>#{('&nbsp;' + value) if show_link}"
198
+ "<span class='fa fa-external-link'></span>#{('&nbsp;' + value) if show_link}"
199
199
  end
200
200
  end
201
201
 
@@ -312,9 +312,9 @@ module Hyrax
312
312
  end
313
313
 
314
314
  def count_classes_for(unread_count)
315
- classes = unread_count.zero? ? 'invisible label-default' : 'label-danger'
315
+ classes = unread_count.zero? ? 'invisible badge-secondary' : 'badge-danger'
316
316
 
317
- "count label #{classes}"
317
+ "count badge #{classes}"
318
318
  end
319
319
 
320
320
  def search_action_for_dashboard
@@ -41,7 +41,7 @@ module Hyrax
41
41
  Hyrax.custom_queries.find_child_works(resource: resource).map do |member|
42
42
  { id: member.id.to_s,
43
43
  label: member.title.first,
44
- path: url_for(member) }
44
+ path: main_app.url_for([member, { only_path: true }]) }
45
45
  end.to_json
46
46
  end
47
47
  end
@@ -15,7 +15,7 @@ module Hyrax
15
15
  args[:data]['remove-text'] = args[:remove_text]
16
16
 
17
17
  args[:data][:url] = hyrax.trophy_work_path(id)
18
- link_to '#', class: args[:class], data: args[:data] do
18
+ link_to '#', id: 'action-highlight-work', class: args[:class], data: args[:data] do
19
19
  yield(text)
20
20
  end
21
21
  end
@@ -4,14 +4,20 @@ module Hyrax
4
4
  ##
5
5
  # Indexes Hyrax::AdministrativeSet objects
6
6
  class AdministrativeSetIndexer < Hyrax::ValkyrieIndexer
7
+ include Hyrax::ResourceIndexer
8
+ include Hyrax::PermissionIndexer
9
+ include Hyrax::VisibilityIndexer
7
10
  include Hyrax::Indexer(:core_metadata)
8
11
 
9
12
  def to_solr # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength
10
13
  super.tap do |solr_doc|
11
- solr_doc[:generic_type_si] = 'Admin Set'
14
+ solr_doc[Hyrax.config.collection_type_index_field.to_sym] = Array(resource.try(:collection_type_gid)&.to_s)
12
15
  solr_doc[:alternative_title_tesim] = resource.alternative_title
13
- solr_doc[:creator_ssim] = resource.creator
16
+ solr_doc[:creator_ssim] = [resource.creator]
17
+ solr_doc[:creator_tesim] = [resource.creator]
14
18
  solr_doc[:description_tesim] = resource.description
19
+ solr_doc[:generic_type_sim] = ['Admin Set']
20
+ solr_doc[:thumbnail_path_ss] = Hyrax::CollectionThumbnailPathService.call(resource)
15
21
  end
16
22
  end
17
23
  end