blacklight-spotlight 3.0.0.alpha.9 → 3.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (262) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
  4. data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
  5. data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
  6. data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
  7. data/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +55 -1
  8. data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
  9. data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
  10. data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
  11. data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +7 -2
  12. data/app/assets/javascripts/spotlight/admin/crop.es6 +11 -0
  13. data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
  14. data/app/assets/javascripts/spotlight/admin/index.js +0 -2
  15. data/app/assets/javascripts/spotlight/admin/reindex_monitor.js +1 -0
  16. data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
  17. data/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +21 -12
  18. data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +11 -3
  19. data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
  20. data/app/assets/javascripts/spotlight/user/index.js +1 -0
  21. data/app/assets/stylesheets/spotlight/_accessibility.scss +1 -1
  22. data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
  23. data/app/assets/stylesheets/spotlight/_browse.scss +16 -0
  24. data/app/assets/stylesheets/spotlight/_catalog.scss +6 -6
  25. data/app/assets/stylesheets/spotlight/_curation.scss +6 -0
  26. data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +214 -83
  27. data/app/assets/stylesheets/spotlight/_header.scss +1 -1
  28. data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
  29. data/app/assets/stylesheets/spotlight/_pages.scss +9 -4
  30. data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
  31. data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
  32. data/app/assets/stylesheets/spotlight/_translations.scss +7 -0
  33. data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +92 -0
  34. data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +1 -2
  35. data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
  36. data/app/controllers/spotlight/appearances_controller.rb +0 -12
  37. data/app/controllers/spotlight/browse_controller.rb +7 -3
  38. data/app/controllers/spotlight/catalog_controller.rb +5 -2
  39. data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
  40. data/app/controllers/spotlight/dashboards_controller.rb +1 -1
  41. data/app/controllers/spotlight/exhibits_controller.rb +2 -3
  42. data/app/controllers/spotlight/featured_images_controller.rb +1 -1
  43. data/app/controllers/spotlight/groups_controller.rb +80 -0
  44. data/app/controllers/spotlight/pages_controller.rb +6 -9
  45. data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
  46. data/app/controllers/spotlight/searches_controller.rb +7 -19
  47. data/app/controllers/spotlight/translations_controller.rb +46 -0
  48. data/app/helpers/spotlight/application_helper.rb +20 -1
  49. data/app/helpers/spotlight/crop_helper.rb +4 -1
  50. data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
  51. data/app/helpers/spotlight/main_app_helpers.rb +1 -1
  52. data/app/helpers/spotlight/pages_helper.rb +1 -1
  53. data/app/jobs/concerns/spotlight/job_tracking.rb +47 -0
  54. data/app/jobs/concerns/spotlight/limit_concurrency.rb +33 -0
  55. data/app/jobs/spotlight/add_uploads_from_csv.rb +34 -6
  56. data/app/jobs/spotlight/application_job.rb +8 -0
  57. data/app/jobs/spotlight/cleanup_job_trackers_job.rb +13 -0
  58. data/app/jobs/spotlight/default_thumbnail_job.rb +1 -3
  59. data/app/jobs/spotlight/reindex_exhibit_job.rb +36 -0
  60. data/app/jobs/spotlight/reindex_job.rb +49 -41
  61. data/app/jobs/spotlight/rename_sidecar_field_job.rb +2 -2
  62. data/app/jobs/spotlight/update_job_trackers_job.rb +20 -0
  63. data/app/mailers/spotlight/indexing_complete_mailer.rb +3 -2
  64. data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
  65. data/app/models/concerns/spotlight/translatables.rb +17 -1
  66. data/app/models/concerns/spotlight/user.rb +2 -1
  67. data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
  68. data/app/models/spotlight/ability.rb +2 -0
  69. data/app/models/spotlight/about_page.rb +3 -1
  70. data/app/models/spotlight/blacklight_configuration.rb +2 -1
  71. data/app/models/spotlight/contact.rb +1 -1
  72. data/app/models/spotlight/custom_field.rb +3 -3
  73. data/app/models/spotlight/event.rb +13 -0
  74. data/app/models/spotlight/exhibit.rb +18 -14
  75. data/app/models/spotlight/feature_page.rb +3 -1
  76. data/app/models/spotlight/featured_image.rb +29 -12
  77. data/app/models/spotlight/group.rb +22 -0
  78. data/app/models/spotlight/group_member.rb +11 -0
  79. data/app/models/spotlight/home_page.rb +3 -1
  80. data/app/models/spotlight/job_tracker.rb +105 -0
  81. data/app/models/spotlight/main_navigation.rb +2 -2
  82. data/app/models/spotlight/masthead.rb +1 -1
  83. data/app/models/spotlight/page.rb +5 -1
  84. data/app/models/spotlight/page_configurations.rb +6 -0
  85. data/app/models/spotlight/page_content.rb +2 -0
  86. data/app/models/spotlight/reindex_progress.rb +44 -27
  87. data/app/models/spotlight/resource.rb +24 -58
  88. data/app/models/spotlight/resources/csv_upload.rb +2 -1
  89. data/app/models/spotlight/resources/iiif_harvester.rb +10 -1
  90. data/app/models/spotlight/resources/iiif_manifest.rb +11 -7
  91. data/app/models/spotlight/resources/iiif_service.rb +1 -1
  92. data/app/models/spotlight/resources/json_upload.rb +12 -0
  93. data/app/models/spotlight/resources/upload.rb +25 -2
  94. data/app/models/spotlight/search.rb +10 -1
  95. data/app/models/spotlight/solr_document_sidecar.rb +9 -6
  96. data/app/models/spotlight/temporary_image.rb +8 -0
  97. data/app/services/spotlight/etl.rb +7 -0
  98. data/app/services/spotlight/etl/context.rb +52 -0
  99. data/app/services/spotlight/etl/executor.rb +194 -0
  100. data/app/services/spotlight/etl/loaders.rb +12 -0
  101. data/app/services/spotlight/etl/pipeline.rb +81 -0
  102. data/app/services/spotlight/etl/solr_loader.rb +96 -0
  103. data/app/services/spotlight/etl/sources.rb +25 -0
  104. data/app/services/spotlight/etl/step.rb +82 -0
  105. data/app/services/spotlight/etl/transforms.rb +64 -0
  106. data/app/services/spotlight/exhibit_import_export_service.rb +482 -0
  107. data/app/services/spotlight/validity_checker.rb +5 -5
  108. data/app/values/custom_field_name.rb +1 -0
  109. data/app/views/catalog/_save_search.html.erb +1 -1
  110. data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
  111. data/app/views/spotlight/browse/_search.html.erb +5 -3
  112. data/app/views/spotlight/browse/_search_title.html.erb +2 -1
  113. data/app/views/spotlight/browse/index.html.erb +13 -0
  114. data/app/views/spotlight/catalog/_document.html.erb +2 -4
  115. data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
  116. data/app/views/spotlight/contacts/_form.html.erb +1 -1
  117. data/app/views/spotlight/dashboards/_reindexing_activity.html.erb +6 -6
  118. data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
  119. data/app/views/spotlight/featured_images/_form.html.erb +1 -1
  120. data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
  121. data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
  122. data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
  123. data/app/views/spotlight/pages/_form.html.erb +2 -2
  124. data/app/views/spotlight/searches/_form.html.erb +13 -0
  125. data/app/views/spotlight/searches/_group.html.erb +27 -0
  126. data/app/views/spotlight/searches/_search.html.erb +1 -0
  127. data/app/views/spotlight/searches/index.html.erb +58 -17
  128. data/app/views/spotlight/shared/_honeypot_field.html.erb +4 -0
  129. data/app/views/spotlight/shared/_locale_picker.html.erb +1 -1
  130. data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
  131. data/app/views/spotlight/sir_trevor/blocks/_browse_block.html.erb +1 -0
  132. data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +45 -0
  133. data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +7 -1
  134. data/app/views/spotlight/translations/_browse_categories.html.erb +29 -3
  135. data/app/views/spotlight/translations/_general.html.erb +7 -7
  136. data/app/views/spotlight/translations/_groups.html.erb +34 -0
  137. data/app/views/spotlight/translations/_import.html.erb +24 -0
  138. data/app/views/spotlight/translations/_metadata.html.erb +1 -1
  139. data/app/views/spotlight/translations/_page.html.erb +5 -5
  140. data/app/views/spotlight/translations/_pages.html.erb +4 -4
  141. data/app/views/spotlight/translations/_pages_table.html.erb +5 -5
  142. data/app/views/spotlight/translations/_search_fields.html.erb +3 -3
  143. data/app/views/spotlight/translations/edit.html.erb +14 -6
  144. data/app/views/spotlight/translations/show.yaml.yamlbuilder +81 -0
  145. data/config/i18n-tasks.yml +7 -0
  146. data/config/locales/spotlight.ar.yml +57 -24
  147. data/config/locales/spotlight.en.yml +184 -128
  148. data/config/routes.rb +16 -1
  149. data/db/migrate/20200403161512_add_subtitle_to_searches.rb +7 -0
  150. data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
  151. data/db/migrate/20210122082032_create_job_trackers.rb +22 -0
  152. data/db/migrate/20210126123041_create_events.rb +15 -0
  153. data/lib/generators/spotlight/install_generator.rb +23 -2
  154. data/lib/generators/spotlight/scaffold_resource_generator.rb +5 -13
  155. data/lib/generators/spotlight/templates/config/initializers/sir_trevor_rails.rb +10 -0
  156. data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
  157. data/lib/spotlight/engine.rb +35 -4
  158. data/lib/spotlight/upload_field_config.rb +1 -0
  159. data/lib/spotlight/version.rb +1 -1
  160. data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
  161. data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
  162. data/spec/controllers/spotlight/catalog_controller_spec.rb +4 -2
  163. data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
  164. data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
  165. data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
  166. data/spec/controllers/spotlight/home_pages_controller_spec.rb +2 -2
  167. data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
  168. data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
  169. data/spec/controllers/spotlight/translations_controller_spec.rb +53 -2
  170. data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
  171. data/spec/examples.txt +1448 -125
  172. data/spec/factories/featured_images.rb +4 -0
  173. data/spec/factories/group.rb +17 -0
  174. data/spec/factories/job_trackers.rb +9 -0
  175. data/spec/factories/searches.rb +11 -1
  176. data/spec/features/add_contacts_spec.rb +1 -1
  177. data/spec/features/add_items_spec.rb +9 -4
  178. data/spec/features/browse_category_admin_spec.rb +39 -7
  179. data/spec/features/browse_category_navigation_spec.rb +44 -0
  180. data/spec/features/browse_category_spec.rb +2 -2
  181. data/spec/features/catalog_spec.rb +2 -2
  182. data/spec/features/create_exhibit_spec.rb +5 -4
  183. data/spec/features/dashboard_spec.rb +7 -7
  184. data/spec/features/edit_search_fields_spec.rb +2 -2
  185. data/spec/features/exhibits/administration_spec.rb +3 -3
  186. data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
  187. data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
  188. data/spec/features/exhibits/translation_editing_spec.rb +57 -8
  189. data/spec/features/home_page_spec.rb +13 -4
  190. data/spec/features/item_admin_spec.rb +4 -4
  191. data/spec/features/javascript/about_page_admin_spec.rb +1 -1
  192. data/spec/features/javascript/block_controls_spec.rb +3 -1
  193. data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
  194. data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +4 -1
  195. data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
  196. data/spec/features/javascript/edit_in_place_spec.rb +3 -3
  197. data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
  198. data/spec/features/javascript/reindex_monitor_spec.rb +1 -1
  199. data/spec/features/javascript/search_config_admin_spec.rb +1 -1
  200. data/spec/features/report_a_problem_spec.rb +6 -5
  201. data/spec/features/site_users_management_spec.rb +4 -4
  202. data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
  203. data/spec/helpers/spotlight/pages_helper_spec.rb +10 -2
  204. data/spec/i18n_spec.rb +0 -2
  205. data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +13 -1
  206. data/spec/jobs/spotlight/reindex_exhibit_job_spec.rb +43 -0
  207. data/spec/jobs/spotlight/reindex_job_spec.rb +30 -59
  208. data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
  209. data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
  210. data/spec/models/solr_document_spec.rb +2 -3
  211. data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
  212. data/spec/models/spotlight/exhibit_spec.rb +21 -59
  213. data/spec/models/spotlight/featured_image_spec.rb +27 -0
  214. data/spec/models/spotlight/group_spec.rb +19 -0
  215. data/spec/models/spotlight/main_navigation_spec.rb +1 -1
  216. data/spec/models/spotlight/page_spec.rb +6 -1
  217. data/spec/models/spotlight/reindex_progress_spec.rb +89 -87
  218. data/spec/models/spotlight/resource_spec.rb +69 -90
  219. data/spec/models/spotlight/resources/iiif_harvester_spec.rb +9 -10
  220. data/spec/models/spotlight/resources/upload_spec.rb +43 -79
  221. data/spec/models/spotlight/role_spec.rb +3 -3
  222. data/spec/models/spotlight/search_spec.rb +30 -3
  223. data/spec/models/spotlight/solr_document_sidecar_spec.rb +1 -0
  224. data/spec/services/spotlight/etl/context_spec.rb +66 -0
  225. data/spec/services/spotlight/etl/executor_spec.rb +149 -0
  226. data/spec/services/spotlight/etl/pipeline_spec.rb +22 -0
  227. data/spec/services/spotlight/etl/solr_loader_spec.rb +76 -0
  228. data/spec/services/spotlight/etl/step_spec.rb +70 -0
  229. data/spec/{serializers/spotlight/exhibit_export_serializer_spec.rb → services/spotlight/exhibit_import_export_service_spec.rb} +168 -23
  230. data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -1
  231. data/spec/spec_helper.rb +3 -6
  232. data/spec/support/features/test_features_helpers.rb +15 -0
  233. data/spec/test_app_templates/Gemfile.extra +1 -3
  234. data/spec/test_app_templates/catalog_controller.rb +6 -3
  235. data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
  236. data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
  237. data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
  238. data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
  239. data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +28 -25
  240. data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -3
  241. data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
  242. data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
  243. data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
  244. data/spec/views/spotlight/translations/_import.html.erb_spec.rb +24 -0
  245. data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
  246. data/vendor/assets/javascripts/tiny-slider.js +3218 -0
  247. data/vendor/assets/stylesheets/tiny-slider.css +1 -0
  248. metadata +444 -289
  249. data/app/models/concerns/spotlight/resources/open_graph.rb +0 -36
  250. data/app/models/spotlight/reindexing_log_entry.rb +0 -42
  251. data/app/serializers/spotlight/exhibit_export_serializer.rb +0 -205
  252. data/app/serializers/spotlight/featured_image_representer.rb +0 -29
  253. data/app/serializers/spotlight/main_navigation_representer.rb +0 -13
  254. data/app/serializers/spotlight/page_representer.rb +0 -33
  255. data/app/services/spotlight/resources/iiif_builder.rb +0 -19
  256. data/app/services/spotlight/solr_document_builder.rb +0 -76
  257. data/app/services/spotlight/upload_solr_document_builder.rb +0 -57
  258. data/spec/factories/reindexing_log_entries.rb +0 -54
  259. data/spec/models/spotlight/reindexing_log_entry_spec.rb +0 -129
  260. data/spec/models/spotlight/resources/open_graph_spec.rb +0 -65
  261. data/spec/services/spotlight/solr_document_builder_spec.rb +0 -66
  262. data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
data/config/routes.rb CHANGED
@@ -100,6 +100,15 @@ Spotlight::Engine.routes.draw do
100
100
  end
101
101
  end
102
102
  resources :browse, only: %i[index show]
103
+ get 'browse/group/:group_id', to: 'browse#index', as: 'browse_groups'
104
+ get 'browse/group/:group_id/:id', to: 'browse#show', as: 'browse_group'
105
+
106
+ resources :groups, except: %i[show] do
107
+ collection do
108
+ patch :update_all
109
+ end
110
+ end
111
+
103
112
  resources :tags, only: %i[index destroy]
104
113
 
105
114
  resources :contacts, only: %i[edit update destroy]
@@ -143,7 +152,13 @@ Spotlight::Engine.routes.draw do
143
152
  end
144
153
  end
145
154
  post 'solr/update' => 'solr#update'
146
- resource :translations, only: %i[edit update]
155
+ resource :translations, only: %i[edit update show] do
156
+ collection do
157
+ post 'import'
158
+ patch 'import'
159
+ end
160
+ end
161
+ get 'iiif/collection' => 'catalog#index', defaults: { q: '*:*', format: :iiif_json }
147
162
  end
148
163
 
149
164
  get '/:exhibit_id' => 'home_pages#show', as: :exhibit_root
@@ -0,0 +1,7 @@
1
+ class AddSubtitleToSearches < ActiveRecord::Migration[5.2]
2
+ def change
3
+ change_table :spotlight_searches do |t|
4
+ t.string :subtitle
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,23 @@
1
+ class CreateSpotlightGroups < ActiveRecord::Migration[5.2]
2
+ def self.up
3
+ create_table :spotlight_groups do |t|
4
+ t.string :slug
5
+ t.text :title
6
+ t.references :exhibit
7
+ t.integer :weight, default: 50
8
+ t.boolean :published
9
+
10
+ t.timestamps
11
+ end
12
+
13
+ create_table :spotlight_groups_members, id: false do |t|
14
+ t.references :group
15
+ t.references :member, polymorphic: true
16
+ end
17
+ end
18
+
19
+ def self.down
20
+ drop_table :spotlight_groups
21
+ drop_table :spotlight_groups_members
22
+ end
23
+ end
@@ -0,0 +1,22 @@
1
+ # frozen_string_literal: true
2
+
3
+ class CreateJobTrackers < ActiveRecord::Migration[5.2]
4
+ def change
5
+ create_table :spotlight_job_trackers do |t|
6
+ t.references :on, null: false, polymorphic: true, index: true
7
+ t.references :resource, null: false, polymorphic: true, index: true
8
+ t.string :job_id
9
+ t.string :job_class
10
+ t.string :parent_job_id
11
+ t.string :parent_job_class
12
+ t.string :status
13
+ t.references :user
14
+ t.text :log
15
+ t.text :data
16
+
17
+ t.timestamps
18
+ end
19
+
20
+ add_index :spotlight_job_trackers, :job_id
21
+ end
22
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ class CreateEvents < ActiveRecord::Migration[5.2]
4
+ def change
5
+ create_table :spotlight_events do |t|
6
+ t.references :exhibit, null: false, polymorphic: true
7
+ t.references :resource, null: false, polymorphic: true, index: true
8
+ t.string :type
9
+ t.string :collation_key
10
+ t.text :data
11
+
12
+ t.timestamps
13
+ end
14
+ end
15
+ end
@@ -10,6 +10,25 @@ module Spotlight
10
10
  class_option :solr_update_class, type: :string, default: 'Spotlight::SolrDocument::AtomicUpdates'
11
11
  class_option :mailer_default_url_host, type: :string, default: '' # e.g. localhost:3000
12
12
 
13
+ # we're not (yet) using webpacker, so we need to re-add sprockets functionality
14
+ def add_js
15
+ return unless Rails.version.to_i == 6
16
+
17
+ gem 'coffee-rails', '~> 4.2'
18
+ gem 'uglifier', '>= 1.3.0'
19
+
20
+ append_to_file 'app/assets/config/manifest.js', "\n//= link_directory ../javascripts .js\n"
21
+ append_to_file 'app/assets/javascripts/application.js', "\n//= require_tree .\n"
22
+ gsub_file 'app/views/layouts/application.html.erb', /pack/, 'include'
23
+ inject_into_file 'config/environments/production.rb', after: ' # config.assets.css_compressor = :sass' do
24
+ "\n config.assets.js_compressor = :uglifier"
25
+ end
26
+
27
+ # but since webpacker exists in the gemfile, we still need to run the
28
+ # install before rails will start
29
+ run 'bundle exec rails webpacker:install'
30
+ end
31
+
13
32
  def inject_spotlight_routes
14
33
  route "mount Spotlight::Engine, at: 'spotlight'"
15
34
  gsub_file 'config/routes.rb', /^\s*root.*/ do |match|
@@ -53,7 +72,9 @@ module Spotlight
53
72
  end
54
73
 
55
74
  def add_roles_to_user
56
- inject_into_class 'app/models/user.rb', User, ' include Spotlight::User'
75
+ inject_into_file 'app/models/user.rb', after: 'include Blacklight::User' do
76
+ "\n include Spotlight::User\n"
77
+ end
57
78
  end
58
79
 
59
80
  def add_controller_mixin
@@ -104,7 +125,7 @@ module Spotlight
104
125
  end
105
126
 
106
127
  def add_osd_viewer
107
- gem 'blacklight-gallery', '~> 1.1'
128
+ gem 'blacklight-gallery', '~> 3.0'
108
129
  generate 'blacklight_gallery:install'
109
130
  end
110
131
 
@@ -7,23 +7,15 @@ module Spotlight
7
7
  # spotlight:scaffold_resource generator
8
8
  class ScaffoldResource < Rails::Generators::NamedBase
9
9
  source_root File.expand_path('templates', __dir__)
10
- def create_document_builder
11
- create_file "app/services/#{file_name}_builder.rb", <<-FILE.strip_heredoc
12
- class #{class_name}Builder < Spotlight::SolrDocumentBuilder
13
- def to_solr
14
- return to_enum(:to_solr) unless block_given?
15
-
16
- # TODO: your implementation here
17
- # yield { id: resource.id }
18
- end
19
- end
20
- FILE
21
- end
22
10
 
23
11
  def create_model
24
12
  create_file "app/models/#{file_name}_resource.rb", <<-FILE.strip_heredoc
25
13
  class #{class_name}Resource < Spotlight::Resource
26
- self.document_builder_class = #{class_name}Builder
14
+ def self.indexing_pipeline
15
+ @indexing_pipeline ||= super.dup.tap do |pipeline|
16
+ # your pipeline here...
17
+ end
18
+ end
27
19
  end
28
20
  FILE
29
21
  end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Required for 0.6 and up:
4
+ # https://github.com/madebymany/sir-trevor-rails#upgrade-guide-to-v060
5
+ class SirTrevorRails::Block
6
+ def self.custom_block_types
7
+ # You can define your custom block types directly here or in your engine config.
8
+ Spotlight::Engine.config.sir_trevor_widgets
9
+ end
10
+ end
@@ -70,8 +70,10 @@
70
70
  # Spotlight::Engine.config.ga_anonymize_ip = false # false for backwards compatibility
71
71
 
72
72
  # ==> Sir Trevor Widget Configuration
73
+ # These are set by default by Spotlight's configuration,
74
+ # but you can customize them here, or in the SirTrevorRails::Block#custom_block_types method
73
75
  # Spotlight::Engine.config.sir_trevor_widgets = %w(
74
- # Heading Text List Quote Iframe Video Oembed Rule UploadedItems Browse
76
+ # Heading Text List Quote Iframe Video Oembed Rule UploadedItems Browse BrowseGroupCategories
75
77
  # FeaturedPages SolrDocuments SolrDocumentsCarousel SolrDocumentsEmbed
76
78
  # SolrDocumentsFeatures SolrDocumentsGrid SearchResults
77
79
  # )
@@ -6,6 +6,7 @@
6
6
  require 'devise'
7
7
  require 'devise_invitable'
8
8
 
9
+ require 'activejob-status'
9
10
  require 'blacklight'
10
11
  require 'autoprefixer-rails'
11
12
  require 'friendly_id'
@@ -38,8 +39,8 @@ module Spotlight
38
39
  require 'github/markup'
39
40
  require 'sir_trevor_rails'
40
41
  require 'openseadragon'
42
+ require 'handlebars_assets'
41
43
  require 'sprockets/es6'
42
- require 'almond-rails'
43
44
 
44
45
  config.assets.precompile += %w[spotlight/fallback/*.png]
45
46
 
@@ -55,6 +56,7 @@ module Spotlight
55
56
  require 'acts-as-taggable-on'
56
57
 
57
58
  Mime::Type.register 'application/solr+json', :solr_json
59
+ Mime::Type.register 'application/iiif+json', :iiif_json
58
60
  end
59
61
 
60
62
  initializer 'spotlight.factories', after: 'factory_bot.set_factory_paths' do
@@ -64,7 +66,7 @@ module Spotlight
64
66
  initializer 'spotlight.assets.precompile' do |app|
65
67
  app.config.assets.precompile += %w[spotlight/default_thumbnail.jpg spotlight/default_browse_thumbnail.jpg]
66
68
 
67
- Sprockets::ES6.configuration = { 'modules' => 'amd', 'moduleIds' => true }
69
+ Sprockets::ES6.configuration = { 'modules' => 'umd', 'moduleIds' => true }
68
70
  # When we upgrade to Sprockets 4, we can ditch sprockets-es6 and config AMD
69
71
  # in this way:
70
72
  # https://github.com/rails/sprockets/issues/73#issuecomment-139113466
@@ -99,7 +101,7 @@ module Spotlight
99
101
  config.external_resources_partials = []
100
102
  config.solr_batch_size = 20
101
103
 
102
- Spotlight::Engine.config.reindex_progress_window = 10
104
+ Spotlight::Engine.config.reindex_progress_window = 1.hour
103
105
 
104
106
  # Filter resources by exhibit by default
105
107
  config.filter_resources_by_exhibit = true
@@ -124,6 +126,7 @@ module Spotlight
124
126
  }
125
127
 
126
128
  config.resource_global_id_field = :"#{config.solr_fields.prefix}spotlight_resource_id#{config.solr_fields.string_suffix}"
129
+ config.job_tracker_id_field = :"#{config.solr_fields.prefix}spotlight_job_tracker_id#{config.solr_fields.string_suffix}"
127
130
 
128
131
  # Set to nil if you don't want to pull thumbnails from the index
129
132
  config.full_image_field = :full_image_url_ssm
@@ -160,6 +163,7 @@ module Spotlight
160
163
 
161
164
  # Configure the CarrierWave file storage mechanism
162
165
  config.uploader_storage = :file
166
+ config.featured_image_masthead_size = [1800, 180]
163
167
  config.featured_image_thumb_size = [400, 300]
164
168
  config.featured_image_square_size = [400, 400]
165
169
  config.contact_square_size = [70, 70]
@@ -214,6 +218,25 @@ module Spotlight
214
218
  # add could add an available locale which could break things if unexpected.
215
219
  config.i18n.available_locales = config.i18n_locales.keys
216
220
 
221
+ # Copy of JbuilderHandler tweaked to spit out YAML for translation exports
222
+ class TranslationYamlHandler
223
+ cattr_accessor :default_format
224
+ self.default_format = :yaml
225
+
226
+ def self.call(template, source = nil)
227
+ source ||= template.source
228
+ # this juggling is required to keep line numbers right in the error
229
+ %{__already_defined = defined?(json); json||=JbuilderTemplate.new(self); #{source}
230
+ json.attributes!.to_yaml unless (__already_defined && __already_defined != "method")}
231
+ end
232
+ end
233
+
234
+ initializer :yamlbuilder do
235
+ ActiveSupport.on_load :action_view do
236
+ ActionView::Template.register_template_handler :yamlbuilder, TranslationYamlHandler
237
+ end
238
+ end
239
+
217
240
  # Query parameters for autocomplete requests
218
241
  config.autocomplete_search_field = 'autocomplete'
219
242
  config.default_autocomplete_params = { qf: 'id^1000 full_title_tesim^100 id_ng full_title_ng',
@@ -243,8 +266,11 @@ module Spotlight
243
266
  config.exhibit_themes = ['default']
244
267
 
245
268
  config.default_page_content_type = 'SirTrevor'
269
+
270
+ # Added here for backwards compatability with SirTrevor 0.6
271
+ # and apps who have customized their avaialble widgets
246
272
  config.sir_trevor_widgets = %w[
247
- Heading Text List Quote Iframe Video Oembed Rule UploadedItems Browse LinkToSearch
273
+ Heading Text List Quote Iframe Video Oembed Rule UploadedItems Browse BrowseGroupCategories LinkToSearch
248
274
  FeaturedPages SolrDocuments SolrDocumentsCarousel SolrDocumentsEmbed
249
275
  SolrDocumentsFeatures SolrDocumentsGrid SearchResults
250
276
  ]
@@ -261,5 +287,10 @@ module Spotlight
261
287
  pages: true,
262
288
  resources: true
263
289
  }
290
+
291
+ config.reindexing_batch_size = nil
292
+ config.reindexing_batch_count = nil
293
+
294
+ config.assign_default_roles_to_first_user = true
264
295
  end
265
296
  end
@@ -8,6 +8,7 @@ module Spotlight
8
8
  # We should look into changing this to a standard blacklight field config in Blacklight 7
9
9
  class UploadFieldConfig
10
10
  attr_reader :blacklight_options, :field_name, :form_field_type
11
+
11
12
  def initialize(blacklight_options: {}, field_name:, form_field_type: :text_field, label: nil, solr_fields: nil)
12
13
  @blacklight_options = blacklight_options
13
14
  @field_name = field_name
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Spotlight
4
- VERSION = '3.0.0.alpha.9'
4
+ VERSION = '3.0.0.rc4'
5
5
  end
@@ -112,7 +112,7 @@ describe Spotlight::AboutPagesController, type: :controller, versioning: true do
112
112
  describe 'on the main about page' do
113
113
  it 'is successful' do
114
114
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
115
- expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
115
+ expect(controller).to receive(:add_breadcrumb).with('About pages', exhibit_about_pages_path(exhibit))
116
116
  get :edit, params: { id: page, exhibit_id: exhibit }
117
117
  expect(assigns(:page)).to eq page
118
118
  expect(assigns(:exhibit)).to eq exhibit
@@ -122,7 +122,7 @@ describe Spotlight::AboutPagesController, type: :controller, versioning: true do
122
122
  describe 'on a different about page' do
123
123
  it 'is successful' do
124
124
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
125
- expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
125
+ expect(controller).to receive(:add_breadcrumb).with('About pages', exhibit_about_pages_path(exhibit))
126
126
  expect(controller).to receive(:add_breadcrumb).with(page2.title, [:edit, exhibit, page2])
127
127
  get :edit, params: { id: page2, exhibit_id: exhibit }
128
128
  expect(assigns(:page)).to eq page2
@@ -137,7 +137,7 @@ describe Spotlight::AboutPagesController, type: :controller, versioning: true do
137
137
  it 'is successful' do
138
138
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_root_path(exhibit))
139
139
  expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
140
- expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
140
+ expect(controller).to receive(:add_breadcrumb).with('About pages', exhibit_about_pages_path(exhibit))
141
141
  get :index, params: { exhibit_id: exhibit }
142
142
  expect(assigns(:page)).to be_kind_of Spotlight::Page
143
143
  expect(assigns(:page)).to be_new_record
@@ -4,6 +4,8 @@ describe Spotlight::BrowseController, type: :controller do
4
4
  routes { Spotlight::Engine.routes }
5
5
  let(:exhibit) { FactoryBot.create(:exhibit) }
6
6
  let!(:search) { FactoryBot.create(:published_search, exhibit: exhibit) }
7
+ let(:group) { FactoryBot.create(:group, published: true, title: 'Good group', exhibit: exhibit, searches: [search]) }
8
+ let(:group_unpublished) { FactoryBot.create(:group, title: 'Secret group', exhibit: exhibit, searches: [search]) }
7
9
  let!(:unpublished) { FactoryBot.create(:search, exhibit: exhibit) }
8
10
  let(:admin) { FactoryBot.create(:site_admin) }
9
11
 
@@ -53,6 +55,16 @@ describe Spotlight::BrowseController, type: :controller do
53
55
  expect(assigns[:exhibit]).to eq exhibit
54
56
  expect(response).to render_template 'spotlight/browse/index'
55
57
  end
58
+
59
+ it 'includes the browse groups' do
60
+ expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
61
+ expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
62
+ expect(controller).to receive(:add_breadcrumb).with('Good group', exhibit_browse_groups_path(exhibit, group))
63
+ get :index, params: { exhibit_id: exhibit, group_id: group.id }
64
+ expect(response).to be_successful
65
+ expect(assigns[:groups]).to eq [group]
66
+ expect(response).to render_template 'spotlight/browse/index'
67
+ end
56
68
  end
57
69
  end
58
70
 
@@ -90,6 +102,17 @@ describe Spotlight::BrowseController, type: :controller do
90
102
  expect(response).to render_template 'spotlight/browse/show'
91
103
  end
92
104
 
105
+ it 'includes the browse group when a group_id is provided' do
106
+ expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
107
+ expect(controller).to receive(:add_breadcrumb).with('Browse', exhibit_browse_index_path(exhibit))
108
+ expect(controller).to receive(:add_breadcrumb).with('Good group', exhibit_browse_groups_path(exhibit, group))
109
+ expect(controller).to receive(:add_breadcrumb).with(search.title, exhibit_browse_group_path(exhibit, group, search))
110
+ get :show, params: { id: search, exhibit_id: exhibit, group_id: group.id }
111
+ expect(response).to be_successful
112
+ expect(assigns[:group]).to eq group
113
+ expect(response).to render_template 'spotlight/browse/show'
114
+ end
115
+
93
116
  it 'removes all the document actions' do
94
117
  get :show, params: { id: search, exhibit_id: exhibit }
95
118
  expect(controller.blacklight_config.index.document_actions).to be_blank
@@ -100,7 +123,7 @@ describe Spotlight::BrowseController, type: :controller do
100
123
  c.browse.document_actions = %i[a b c]
101
124
  end
102
125
 
103
- allow(controller). to receive(:blacklight_config).and_return(config)
126
+ allow(controller).to receive(:blacklight_config).and_return(config)
104
127
 
105
128
  get :show, params: { id: search, exhibit_id: exhibit }
106
129
  expect(controller.blacklight_config.index.document_actions).to match_array %i[a b c]
@@ -81,7 +81,7 @@ describe Spotlight::CatalogController, type: :controller do
81
81
  describe 'GET index' do
82
82
  it 'shows the index when there are parameters' do
83
83
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit_path(exhibit, q: ''))
84
- expect(controller).to receive(:add_breadcrumb).with('Search Results', search_exhibit_catalog_path(exhibit, q: 'map'))
84
+ expect(controller).to receive(:add_breadcrumb).with('Search results', search_exhibit_catalog_path(exhibit, q: 'map'))
85
85
  get :index, params: { exhibit_id: exhibit, q: 'map' }
86
86
  expect(response).to be_successful
87
87
  end
@@ -120,8 +120,9 @@ describe Spotlight::CatalogController, type: :controller do
120
120
 
121
121
  describe 'GET manifest' do
122
122
  context 'document is an uploaded resource' do
123
+ let(:uploaded_resource) { FactoryBot.create(:uploaded_resource) }
124
+
123
125
  it 'returns the json manifest produced by Spotlight::IiifManifestPresenter, based on the retrieved document and the controller' do
124
- uploaded_resource = FactoryBot.create(:uploaded_resource)
125
126
  compound_id = uploaded_resource.compound_id
126
127
  slug = uploaded_resource.exhibit.slug
127
128
 
@@ -146,6 +147,7 @@ describe Spotlight::CatalogController, type: :controller do
146
147
  expect(image['resource']['@id']).to eq compound_id
147
148
  expect(image['resource']['format']).to eq 'image/jpeg'
148
149
 
150
+ ensure
149
151
  # clean up solr document created by save_and_index above
150
152
  Blacklight.default_index.connection.delete_by_id uploaded_resource.compound_id
151
153
  Blacklight.default_index.connection.commit
@@ -24,7 +24,7 @@ describe Spotlight::ContactsController, type: :controller do
24
24
  it 'is successful' do
25
25
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
26
26
  expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
27
- expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
27
+ expect(controller).to receive(:add_breadcrumb).with('About pages', exhibit_about_pages_path(exhibit))
28
28
  expect(controller).to receive(:add_breadcrumb).with(contact.name, edit_exhibit_contact_path(exhibit, contact))
29
29
  get :edit, params: { id: contact, exhibit_id: contact.exhibit }
30
30
  expect(response).to be_successful
@@ -76,7 +76,7 @@ describe Spotlight::ContactsController, type: :controller do
76
76
  it 'is successful' do
77
77
  expect(controller).to receive(:add_breadcrumb).with('Home', exhibit)
78
78
  expect(controller).to receive(:add_breadcrumb).with('Curation', exhibit_dashboard_path(exhibit))
79
- expect(controller).to receive(:add_breadcrumb).with('About Pages', exhibit_about_pages_path(exhibit))
79
+ expect(controller).to receive(:add_breadcrumb).with('About pages', exhibit_about_pages_path(exhibit))
80
80
  expect(controller).to receive(:add_breadcrumb).with('Add contact', new_exhibit_contact_path(exhibit))
81
81
  get :new, params: { exhibit_id: exhibit }
82
82
  expect(response).to be_successful