blacklight 6.21.0 → 7.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (428) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.jshintrc +3 -1
  4. data/.npmignore +23 -0
  5. data/.rubocop.yml +40 -16
  6. data/.rubocop_todo.yml +478 -382
  7. data/.travis.yml +25 -28
  8. data/CONTRIBUTING.md +50 -0
  9. data/Gemfile +4 -3
  10. data/README.md +22 -5
  11. data/Rakefile +3 -2
  12. data/VERSION +1 -1
  13. data/Vagrantfile +2 -0
  14. data/app/assets/images/blacklight/list.svg +1 -0
  15. data/app/assets/images/blacklight/search.svg +1 -0
  16. data/app/assets/javascripts/blacklight/blacklight.js +495 -57
  17. data/app/assets/stylesheets/blacklight/_balanced_list.scss +7 -12
  18. data/app/assets/stylesheets/blacklight/_blacklight_base.scss +18 -15
  19. data/app/assets/stylesheets/blacklight/_bookmark.scss +1 -13
  20. data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +31 -0
  21. data/app/assets/stylesheets/blacklight/_constraints.scss +17 -25
  22. data/app/assets/stylesheets/blacklight/_controls.scss +8 -16
  23. data/app/assets/stylesheets/blacklight/_facets.scss +66 -92
  24. data/app/assets/stylesheets/blacklight/_header.scss +60 -47
  25. data/app/assets/stylesheets/blacklight/_icons.scss +35 -0
  26. data/app/assets/stylesheets/blacklight/_layout.scss +0 -10
  27. data/app/assets/stylesheets/blacklight/_mixins.scss +15 -0
  28. data/app/assets/stylesheets/blacklight/_modal.scss +9 -17
  29. data/app/assets/stylesheets/blacklight/_pagination.scss +4 -13
  30. data/app/assets/stylesheets/blacklight/_search_form.scss +7 -0
  31. data/app/assets/stylesheets/blacklight/_search_history.scss +5 -13
  32. data/app/assets/stylesheets/blacklight/_search_results.scss +9 -8
  33. data/app/assets/stylesheets/blacklight/_twitter_typeahead.scss +1 -2
  34. data/app/assets/stylesheets/blacklight/blacklight.scss +1 -1
  35. data/app/builders/blacklight/action_builder.rb +57 -0
  36. data/app/controllers/bookmarks_controller.rb +2 -2
  37. data/app/controllers/catalog_controller.rb +2 -2
  38. data/app/controllers/concerns/blacklight/base.rb +0 -33
  39. data/app/controllers/concerns/blacklight/bookmarks.rb +20 -30
  40. data/app/controllers/concerns/blacklight/catalog.rb +256 -210
  41. data/app/controllers/concerns/blacklight/controller.rb +102 -124
  42. data/app/controllers/concerns/blacklight/default_component_configuration.rb +12 -43
  43. data/app/controllers/concerns/blacklight/facet.rb +22 -8
  44. data/app/controllers/concerns/blacklight/search_context.rb +11 -11
  45. data/app/controllers/concerns/blacklight/search_fields.rb +4 -14
  46. data/app/controllers/concerns/blacklight/search_history.rb +1 -6
  47. data/app/controllers/concerns/blacklight/searchable.rb +17 -0
  48. data/app/controllers/concerns/blacklight/token_based_user.rb +5 -7
  49. data/app/helpers/blacklight/blacklight_helper_behavior.rb +37 -119
  50. data/app/helpers/blacklight/catalog_helper_behavior.rb +103 -93
  51. data/app/helpers/blacklight/component_helper_behavior.rb +21 -21
  52. data/app/helpers/blacklight/configuration_helper_behavior.rb +30 -58
  53. data/app/helpers/blacklight/facets_helper_behavior.rb +79 -54
  54. data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +9 -11
  55. data/app/helpers/blacklight/icon_helper_behavior.rb +18 -0
  56. data/app/helpers/blacklight/layout_helper_behavior.rb +3 -10
  57. data/app/helpers/blacklight/render_constraints_helper_behavior.rb +8 -6
  58. data/app/helpers/blacklight/render_partials_helper_behavior.rb +207 -0
  59. data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +19 -11
  60. data/app/helpers/blacklight/suggest_helper_behavior.rb +1 -0
  61. data/app/helpers/blacklight/url_helper_behavior.rb +51 -42
  62. data/app/{assets/javascripts → javascript}/blacklight/autocomplete.js +3 -2
  63. data/app/javascript/blacklight/bookmark_toggle.js +25 -0
  64. data/app/javascript/blacklight/button_focus.js +9 -0
  65. data/app/javascript/blacklight/checkbox_submit.js +134 -0
  66. data/app/javascript/blacklight/core.js +41 -0
  67. data/app/javascript/blacklight/facet_load.js +22 -0
  68. data/app/{assets/javascripts/blacklight/ajax_modal.js → javascript/blacklight/modal.js} +62 -64
  69. data/app/javascript/blacklight/search_context.js +67 -0
  70. data/app/models/blacklight/facet_paginator.rb +3 -3
  71. data/app/models/blacklight/icon.rb +79 -0
  72. data/app/models/blacklight/suggest_search.rb +1 -1
  73. data/app/models/bookmark.rb +5 -10
  74. data/app/models/concerns/blacklight/configurable.rb +13 -13
  75. data/app/models/concerns/blacklight/document.rb +23 -39
  76. data/app/models/concerns/blacklight/document/active_model_shim.rb +8 -11
  77. data/app/models/concerns/blacklight/document/cache_key.rb +1 -1
  78. data/app/models/concerns/blacklight/document/dublin_core.rb +2 -2
  79. data/app/models/concerns/blacklight/document/email.rb +5 -5
  80. data/app/models/concerns/blacklight/document/extensions.rb +5 -5
  81. data/app/models/concerns/blacklight/document/semantic_fields.rb +9 -9
  82. data/app/models/concerns/blacklight/document/sms.rb +3 -3
  83. data/app/models/concerns/blacklight/user.rb +7 -6
  84. data/app/models/record_mailer.rb +8 -6
  85. data/app/models/search.rb +5 -7
  86. data/app/presenters/blacklight/document_presenter.rb +25 -140
  87. data/app/presenters/blacklight/field_presenter.rb +19 -14
  88. data/app/presenters/blacklight/index_presenter.rb +43 -71
  89. data/app/presenters/blacklight/json_presenter.rb +10 -14
  90. data/app/presenters/blacklight/link_alternate_presenter.rb +3 -1
  91. data/app/presenters/blacklight/rendering/abstract_step.rb +7 -5
  92. data/app/presenters/blacklight/rendering/helper_method.rb +10 -8
  93. data/app/presenters/blacklight/rendering/join.rb +5 -3
  94. data/app/presenters/blacklight/rendering/link_to_facet.rb +23 -19
  95. data/app/presenters/blacklight/rendering/microdata.rb +6 -3
  96. data/app/presenters/blacklight/rendering/pipeline.rb +27 -10
  97. data/app/presenters/blacklight/rendering/terminator.rb +2 -0
  98. data/app/presenters/blacklight/search_bar_presenter.rb +41 -0
  99. data/app/presenters/blacklight/show_presenter.rb +26 -72
  100. data/app/presenters/blacklight/thumbnail_presenter.rb +74 -0
  101. data/app/services/blacklight/document_factory.rb +13 -0
  102. data/app/services/blacklight/field_retriever.rb +26 -24
  103. data/app/services/blacklight/search_service.rb +153 -0
  104. data/app/values/blacklight/types.rb +31 -0
  105. data/app/views/blacklight/nav/_bookmark.html.erb +2 -2
  106. data/app/views/blacklight/nav/_search_history.html.erb +1 -1
  107. data/app/views/bookmarks/_tools.html.erb +2 -2
  108. data/app/views/bookmarks/index.html.erb +12 -13
  109. data/app/views/catalog/_bookmark_control.html.erb +27 -13
  110. data/app/views/catalog/_constraints.html.erb +6 -7
  111. data/app/views/catalog/_constraints_element.html.erb +6 -6
  112. data/app/views/catalog/_did_you_mean.html.erb +1 -1
  113. data/app/views/catalog/{_document_default.atom.builder → _document.atom.builder} +20 -19
  114. data/app/views/catalog/_document.html.erb +5 -3
  115. data/app/views/catalog/{_document_default.rss.builder → _document.rss.builder} +2 -0
  116. data/app/views/catalog/_document_action.html.erb +2 -1
  117. data/app/views/catalog/_email_form.html.erb +8 -4
  118. data/app/views/catalog/_facet_group.html.erb +19 -0
  119. data/app/views/catalog/_facet_index_navigation.html.erb +5 -4
  120. data/app/views/catalog/_facet_layout.html.erb +13 -8
  121. data/app/views/catalog/_facet_limit.html.erb +3 -2
  122. data/app/views/catalog/_facet_pagination.html.erb +8 -8
  123. data/app/views/catalog/_facet_pivot.html.erb +2 -2
  124. data/app/views/catalog/_facets.html.erb +3 -21
  125. data/app/views/catalog/_field.json.jbuilder +10 -0
  126. data/app/views/catalog/{_group_default.html.erb → _group.html.erb} +1 -1
  127. data/app/views/catalog/_home_text.html.erb +32 -36
  128. data/app/views/catalog/_index.html.erb +10 -0
  129. data/app/views/catalog/{_index_header_default.html.erb → _index_header.html.erb} +3 -3
  130. data/app/views/catalog/_per_page_widget.html.erb +7 -8
  131. data/app/views/catalog/_previous_next_doc.html.erb +6 -14
  132. data/app/views/catalog/_results_pagination.html.erb +2 -2
  133. data/app/views/catalog/_search_form.html.erb +12 -8
  134. data/app/views/catalog/_search_header.html.erb +0 -3
  135. data/app/views/catalog/_search_results.html.erb +10 -2
  136. data/app/views/catalog/_show.html.erb +8 -0
  137. data/app/views/catalog/{_show_header_default.html.erb → _show_header.html.erb} +0 -0
  138. data/app/views/catalog/_show_main_content.html.erb +4 -4
  139. data/app/views/catalog/_show_more_like_this.html.erb +1 -1
  140. data/app/views/catalog/_show_sidebar.html.erb +10 -8
  141. data/app/views/catalog/_show_tools.html.erb +10 -21
  142. data/app/views/catalog/_sms_form.html.erb +8 -4
  143. data/app/views/catalog/_sort_and_per_page.html.erb +3 -3
  144. data/app/views/catalog/_sort_widget.html.erb +8 -8
  145. data/app/views/catalog/_thumbnail.html.erb +5 -0
  146. data/app/views/catalog/_view_type_group.html.erb +2 -2
  147. data/app/views/catalog/_zero_results.html.erb +1 -1
  148. data/app/views/catalog/email.html.erb +5 -3
  149. data/app/views/catalog/email_success.html.erb +12 -8
  150. data/app/views/catalog/facet.html.erb +10 -8
  151. data/app/views/catalog/facet.json.jbuilder +2 -0
  152. data/app/views/catalog/index.atom.builder +28 -30
  153. data/app/views/catalog/index.html.erb +9 -11
  154. data/app/views/catalog/index.json.jbuilder +84 -3
  155. data/app/views/catalog/index.rss.builder +8 -6
  156. data/app/views/catalog/opensearch.xml.builder +12 -10
  157. data/app/views/catalog/show.html.erb +11 -6
  158. data/app/views/catalog/show.json.jbuilder +21 -0
  159. data/app/views/catalog/sms.html.erb +3 -1
  160. data/app/views/catalog/sms_success.html.erb +12 -8
  161. data/app/views/kaminari/blacklight/_first_page.html.erb +2 -2
  162. data/app/views/kaminari/blacklight/_gap.html.erb +2 -2
  163. data/app/views/kaminari/blacklight/_last_page.html.erb +2 -2
  164. data/app/views/kaminari/blacklight/_next_page.html.erb +5 -5
  165. data/app/views/kaminari/blacklight/_page.html.erb +5 -3
  166. data/app/views/kaminari/blacklight/_prev_page.html.erb +4 -4
  167. data/app/views/kaminari/blacklight_compact/_paginator.html.erb +4 -4
  168. data/app/views/layouts/blacklight.html.erb +14 -41
  169. data/app/views/layouts/blacklight/base.html.erb +40 -0
  170. data/app/views/layouts/catalog_result.html.erb +11 -0
  171. data/app/views/record_mailer/email_record.text.erb +6 -5
  172. data/app/views/search_history/index.html.erb +16 -21
  173. data/app/views/{_flash_msg.html.erb → shared/_flash_msg.html.erb} +5 -3
  174. data/app/views/shared/_header_navbar.html.erb +8 -13
  175. data/app/views/shared/_modal.html.erb +6 -0
  176. data/app/views/shared/_user_util_links.html.erb +22 -0
  177. data/blacklight.gemspec +7 -11
  178. data/config/i18n-tasks.yml +17 -0
  179. data/config/locales/blacklight.de.yml +87 -83
  180. data/config/locales/blacklight.en.yml +32 -29
  181. data/config/locales/blacklight.es.yml +31 -28
  182. data/config/locales/blacklight.fr.yml +33 -35
  183. data/config/locales/blacklight.hu.yml +226 -0
  184. data/config/locales/blacklight.it.yml +32 -28
  185. data/config/locales/blacklight.nl.yml +226 -0
  186. data/config/locales/blacklight.pt-BR.yml +41 -31
  187. data/config/locales/blacklight.sq.yml +21 -30
  188. data/config/locales/blacklight.zh.yml +20 -28
  189. data/config/routes.rb +2 -10
  190. data/db/migrate/20140202020202_create_bookmarks.rb +0 -1
  191. data/db/migrate/20140320000000_add_polymorphic_type_to_bookmarks.rb +1 -1
  192. data/lib/blacklight.rb +6 -4
  193. data/lib/blacklight/abstract_repository.rb +9 -9
  194. data/lib/blacklight/configuration.rb +106 -88
  195. data/lib/blacklight/configuration/context.rb +12 -1
  196. data/lib/blacklight/configuration/facet_field.rb +16 -9
  197. data/lib/blacklight/configuration/field.rb +32 -3
  198. data/lib/blacklight/configuration/fields.rb +15 -17
  199. data/lib/blacklight/configuration/null_field.rb +2 -0
  200. data/lib/blacklight/configuration/search_field.rb +2 -2
  201. data/lib/blacklight/configuration/sort_field.rb +2 -2
  202. data/lib/blacklight/configuration/view_config.rb +4 -0
  203. data/lib/blacklight/engine.rb +10 -10
  204. data/lib/blacklight/exceptions.rb +4 -7
  205. data/lib/blacklight/{utils.rb → nested_open_struct_with_hash_access.rb} +9 -81
  206. data/lib/blacklight/open_struct_with_hash_access.rb +49 -0
  207. data/lib/blacklight/parameters.rb +1 -1
  208. data/lib/blacklight/routes/exportable.rb +1 -3
  209. data/lib/blacklight/routes/searchable.rb +3 -3
  210. data/lib/blacklight/runtime_registry.rb +2 -0
  211. data/lib/blacklight/search_builder.rb +28 -35
  212. data/lib/blacklight/search_state.rb +10 -8
  213. data/lib/blacklight/solr.rb +2 -0
  214. data/{app/models/concerns → lib}/blacklight/solr/document.rb +8 -8
  215. data/{app/models → lib}/blacklight/solr/facet_paginator.rb +3 -3
  216. data/lib/blacklight/solr/repository.rb +4 -3
  217. data/lib/blacklight/solr/request.rb +1 -1
  218. data/lib/blacklight/solr/response.rb +29 -30
  219. data/lib/blacklight/solr/response/facets.rb +38 -31
  220. data/lib/blacklight/solr/response/group.rb +3 -3
  221. data/lib/blacklight/solr/response/group_response.rb +11 -1
  222. data/lib/blacklight/solr/response/more_like_this.rb +2 -2
  223. data/lib/blacklight/solr/response/pagination_methods.rb +12 -0
  224. data/lib/blacklight/solr/response/response.rb +2 -2
  225. data/lib/blacklight/solr/response/spelling.rb +4 -3
  226. data/lib/blacklight/solr/search_builder_behavior.rb +27 -31
  227. data/lib/blacklight/version.rb +1 -1
  228. data/lib/generators/blacklight/assets_generator.rb +28 -12
  229. data/lib/generators/blacklight/controller_generator.rb +4 -5
  230. data/lib/generators/blacklight/document_generator.rb +1 -1
  231. data/lib/generators/blacklight/install_generator.rb +15 -34
  232. data/lib/generators/blacklight/search_builder_generator.rb +1 -1
  233. data/lib/generators/blacklight/{solr5_generator.rb → solr_generator.rb} +12 -6
  234. data/{.solr_wrapper.yml → lib/generators/blacklight/templates/.solr_wrapper.yml} +0 -0
  235. data/lib/generators/blacklight/templates/alternate_controller.rb +4 -4
  236. data/lib/generators/blacklight/templates/blacklight.scss +0 -2
  237. data/lib/generators/blacklight/templates/catalog_controller.rb +57 -50
  238. data/lib/generators/blacklight/templates/config/blacklight.yml +1 -13
  239. data/{solr → lib/generators/blacklight/templates/solr}/conf/_rest_managed.json +0 -0
  240. data/{solr → lib/generators/blacklight/templates/solr}/conf/admin-extra.html +0 -0
  241. data/{solr → lib/generators/blacklight/templates/solr}/conf/elevate.xml +0 -0
  242. data/{solr → lib/generators/blacklight/templates/solr}/conf/mapping-ISOLatin1Accent.txt +0 -0
  243. data/{solr → lib/generators/blacklight/templates/solr}/conf/protwords.txt +0 -0
  244. data/lib/generators/blacklight/templates/solr/conf/schema.xml +388 -0
  245. data/{solr → lib/generators/blacklight/templates/solr}/conf/scripts.conf +0 -0
  246. data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +195 -0
  247. data/{solr → lib/generators/blacklight/templates/solr}/conf/spellings.txt +0 -0
  248. data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords.txt +0 -0
  249. data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords_en.txt +0 -0
  250. data/{solr → lib/generators/blacklight/templates/solr}/conf/synonyms.txt +0 -0
  251. data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example.xsl +0 -0
  252. data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_atom.xsl +0 -0
  253. data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_rss.xsl +0 -0
  254. data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/luke.xsl +0 -0
  255. data/lib/generators/blacklight/test_support_generator.rb +10 -10
  256. data/lib/generators/blacklight/user_generator.rb +5 -6
  257. data/lib/railties/blacklight.rake +7 -6
  258. data/package-lock.json +2793 -0
  259. data/package.json +30 -0
  260. data/spec/controllers/alternate_controller_spec.rb +5 -4
  261. data/spec/controllers/application_controller_spec.rb +1 -5
  262. data/spec/controllers/blacklight/base_spec.rb +6 -3
  263. data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +11 -7
  264. data/spec/controllers/blacklight/facet_spec.rb +1 -2
  265. data/spec/controllers/blacklight/search_fields_spec.rb +25 -34
  266. data/spec/controllers/bookmarks_controller_spec.rb +17 -13
  267. data/spec/controllers/catalog_controller_spec.rb +329 -161
  268. data/spec/controllers/search_history_controller_spec.rb +6 -6
  269. data/spec/features/alternate_controller_spec.rb +4 -4
  270. data/spec/features/autocomplete_spec.rb +4 -2
  271. data/spec/features/bookmarks_spec.rb +10 -10
  272. data/spec/features/did_you_mean_spec.rb +7 -12
  273. data/spec/features/facets_spec.rb +38 -17
  274. data/spec/features/record_view_spec.rb +12 -18
  275. data/spec/features/search_context_spec.rb +6 -7
  276. data/spec/features/search_crawler_spec.rb +3 -5
  277. data/spec/features/search_filters_spec.rb +100 -80
  278. data/spec/features/search_formats_spec.rb +4 -5
  279. data/spec/features/search_history_spec.rb +6 -29
  280. data/spec/features/search_pagination_spec.rb +4 -2
  281. data/spec/features/search_results_spec.rb +14 -12
  282. data/spec/features/search_sort_spec.rb +2 -2
  283. data/spec/features/search_spec.rb +7 -12
  284. data/spec/features/sitelinks_search_box.rb +4 -4
  285. data/{solr → spec/fixtures}/sample_solr_documents.yml +688 -688
  286. data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb} +97 -98
  287. data/spec/helpers/{facets_helper_spec.rb → blacklight/facets_helper_behavior_spec.rb} +82 -73
  288. data/spec/helpers/{hash_as_hidden_fields_spec.rb → blacklight/hash_as_hidden_fields_behavior_spec.rb} +2 -2
  289. data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +10 -0
  290. data/spec/helpers/{layout_helper_spec.rb → blacklight/layout_helper_behavior_spec.rb} +5 -15
  291. data/spec/helpers/{render_constraints_helper_spec.rb → blacklight/render_constraints_helper_behavior_spec.rb} +10 -6
  292. data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +92 -0
  293. data/spec/helpers/{search_history_constraints_helper_spec.rb → blacklight/search_history_constraints_helper_behavior_spec.rb} +29 -30
  294. data/spec/helpers/{suggest_helper_spec.rb → blacklight/suggest_helper_behavior_spec.rb} +9 -2
  295. data/spec/helpers/{url_helper_spec.rb → blacklight/url_helper_behavior_spec.rb} +61 -54
  296. data/spec/helpers/blacklight_helper_spec.rb +104 -151
  297. data/spec/helpers/catalog_helper_spec.rb +89 -105
  298. data/spec/i18n_spec.rb +18 -0
  299. data/spec/integration/generators/blacklight/{solr5_generator_spec.rb → solr_generator_spec.rb} +21 -13
  300. data/spec/lib/blacklight/configuration/facet_field_spec.rb +13 -0
  301. data/spec/lib/blacklight/configuration/field_spec.rb +15 -0
  302. data/spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb +17 -0
  303. data/spec/lib/blacklight/open_struct_with_hash_access_spec.rb +148 -0
  304. data/spec/lib/blacklight/parameters_spec.rb +4 -2
  305. data/spec/lib/blacklight/search_state_spec.rb +53 -36
  306. data/spec/lib/blacklight_spec.rb +14 -15
  307. data/spec/lib/tasks/blacklight_task_spec.rb +4 -6
  308. data/spec/models/blacklight/configurable_spec.rb +24 -27
  309. data/spec/models/blacklight/configuration/context_spec.rb +9 -10
  310. data/spec/models/blacklight/configuration_spec.rb +188 -165
  311. data/spec/models/blacklight/document/active_model_shim_spec.rb +15 -6
  312. data/spec/models/blacklight/document/cache_key_spec.rb +10 -3
  313. data/spec/models/blacklight/document/dublin_core_spec.rb +17 -20
  314. data/spec/models/blacklight/document/email_spec.rb +10 -10
  315. data/spec/models/blacklight/document/sms_spec.rb +10 -10
  316. data/spec/models/blacklight/document_spec.rb +10 -22
  317. data/spec/models/blacklight/facet_paginator_spec.rb +40 -30
  318. data/spec/models/blacklight/icon_spec.rb +82 -0
  319. data/spec/models/blacklight/search_builder_spec.rb +41 -26
  320. data/spec/models/blacklight/solr/document_spec.rb +224 -216
  321. data/spec/models/blacklight/solr/facet_paginator_spec.rb +6 -4
  322. data/spec/models/blacklight/solr/repository_spec.rb +50 -42
  323. data/spec/models/blacklight/solr/request_spec.rb +17 -18
  324. data/spec/models/blacklight/solr/response/facets_spec.rb +97 -60
  325. data/spec/models/blacklight/solr/response/group_response_spec.rb +29 -22
  326. data/spec/models/blacklight/solr/response/group_spec.rb +18 -25
  327. data/spec/models/blacklight/solr/response_spec.rb +72 -68
  328. data/spec/models/blacklight/solr/search_builder_spec.rb +150 -164
  329. data/spec/models/blacklight/suggest/response_spec.rb +2 -1
  330. data/spec/models/blacklight/suggest_search_spec.rb +4 -4
  331. data/spec/models/blacklight/user_spec.rb +9 -11
  332. data/spec/models/bookmark_spec.rb +7 -6
  333. data/spec/models/record_mailer_spec.rb +23 -21
  334. data/spec/models/search_spec.rb +19 -18
  335. data/spec/models/solr_document_spec.rb +33 -5
  336. data/spec/presenters/blacklight/document_presenter_spec.rb +86 -0
  337. data/spec/presenters/{index_presenter_spec.rb → blacklight/index_presenter_spec.rb} +25 -62
  338. data/spec/presenters/blacklight/json_presenter_spec.rb +59 -0
  339. data/spec/presenters/blacklight/link_alternate_presenter_spec.rb +3 -0
  340. data/spec/presenters/blacklight/search_bar_presenter_spec.rb +94 -0
  341. data/spec/presenters/{show_presenter_spec.rb → blacklight/show_presenter_spec.rb} +47 -62
  342. data/spec/presenters/pipeline_spec.rb +43 -16
  343. data/spec/presenters/thumbnail_presenter_spec.rb +174 -0
  344. data/spec/routing/catalog_routing_spec.rb +13 -31
  345. data/spec/services/blacklight/search_service_spec.rb +495 -0
  346. data/spec/spec_helper.rb +12 -14
  347. data/spec/support/features.rb +1 -1
  348. data/spec/support/features/session_helpers.rb +4 -4
  349. data/spec/test_app_templates/Gemfile.extra +2 -5
  350. data/spec/test_app_templates/lib/generators/test_app_generator.rb +12 -13
  351. data/spec/views/catalog/_constraints.html.erb_spec.rb +3 -6
  352. data/spec/views/catalog/_constraints_element.html.erb_spec.rb +17 -13
  353. data/spec/views/catalog/_document.html.erb_spec.rb +11 -11
  354. data/spec/views/catalog/_document_list.html.erb_spec.rb +2 -1
  355. data/spec/views/catalog/_facet_group.html.erb_spec.rb +82 -0
  356. data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +5 -5
  357. data/spec/views/catalog/_facet_layout.html.erb_spec.rb +6 -6
  358. data/spec/views/catalog/_facets.html.erb_spec.rb +6 -46
  359. data/spec/views/catalog/{_index_default.erb_spec.rb → _index.html.erb_spec.rb} +14 -15
  360. data/spec/views/catalog/{_index_header_default.html.erb_spec.rb → _index_header.html.erb_spec.rb} +6 -9
  361. data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +7 -30
  362. data/spec/views/catalog/_search_header.erb_spec.rb +1 -3
  363. data/spec/views/catalog/{_show_default.erb_spec.rb → _show.html.erb_spec.rb} +13 -14
  364. data/spec/views/catalog/_show_sidebar.erb_spec.rb +7 -10
  365. data/spec/views/catalog/_show_tools.html.erb_spec.rb +6 -6
  366. data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +1 -2
  367. data/spec/views/catalog/_sort_widget.html.erb_spec.rb +3 -1
  368. data/spec/views/catalog/{_thumbnail_default.erb_spec.rb → _thumbnail.html.erb_spec.rb} +7 -9
  369. data/spec/views/catalog/_view_type_group.html.erb_spec.rb +12 -10
  370. data/spec/views/catalog/email_success.html.erb_spec.rb +8 -0
  371. data/spec/views/catalog/facet.html.erb_spec.rb +4 -3
  372. data/spec/views/catalog/facet.json.jbuilder_spec.rb +3 -2
  373. data/spec/views/catalog/index.atom.builder_spec.rb +11 -6
  374. data/spec/views/catalog/index.html.erb_spec.rb +6 -8
  375. data/spec/views/catalog/index.json.jbuilder_spec.rb +119 -26
  376. data/spec/views/catalog/opensearch.xml.builder_spec.rb +1 -1
  377. data/spec/views/catalog/show.html.erb_spec.rb +8 -8
  378. data/spec/views/catalog/show.json.jbuilder_spec.rb +40 -0
  379. data/spec/views/catalog/sms_success.html.erb_spec.rb +8 -0
  380. data/spec/views/{_user_util_links.html.erb_spec.rb → shared/_user_util_links.html.erb_spec.rb} +4 -7
  381. data/tasks/blacklight.rake +9 -12
  382. data/template.demo.rb +4 -12
  383. metadata +172 -211
  384. data/app/assets/javascripts/blacklight/autofocus.js +0 -16
  385. data/app/assets/javascripts/blacklight/bookmark_toggle.js +0 -23
  386. data/app/assets/javascripts/blacklight/checkbox_submit.js +0 -139
  387. data/app/assets/javascripts/blacklight/collapsable.js +0 -9
  388. data/app/assets/javascripts/blacklight/core.js +0 -30
  389. data/app/assets/javascripts/blacklight/facet_load.js +0 -23
  390. data/app/assets/javascripts/blacklight/search_context.js +0 -42
  391. data/app/controllers/concerns/blacklight/request_builders.rb +0 -77
  392. data/app/controllers/concerns/blacklight/saved_searches.rb +0 -70
  393. data/app/controllers/concerns/blacklight/search_helper.rb +0 -161
  394. data/app/controllers/concerns/blacklight/suggest.rb +0 -25
  395. data/app/controllers/saved_searches_controller.rb +0 -4
  396. data/app/controllers/suggest_controller.rb +0 -4
  397. data/app/helpers/blacklight/deprecated_url_helper_behavior.rb +0 -57
  398. data/app/helpers/blacklight/render_partials_helper.rb +0 -205
  399. data/app/helpers/blacklight_configuration_helper.rb +0 -4
  400. data/app/helpers/blacklight_url_helper.rb +0 -4
  401. data/app/helpers/component_helper.rb +0 -4
  402. data/app/helpers/facets_helper.rb +0 -4
  403. data/app/helpers/hash_as_hidden_fields_helper.rb +0 -4
  404. data/app/helpers/layout_helper.rb +0 -4
  405. data/app/helpers/render_constraints_helper.rb +0 -4
  406. data/app/helpers/search_history_constraints_helper.rb +0 -4
  407. data/app/helpers/suggest_helper.rb +0 -4
  408. data/app/models/concerns/blacklight/solr/document/more_like_this.rb +0 -6
  409. data/app/views/_user_util_links.html.erb +0 -26
  410. data/app/views/blacklight/nav/_saved_searches.html.erb +0 -1
  411. data/app/views/catalog/_index_default.html.erb +0 -12
  412. data/app/views/catalog/_show_default.html.erb +0 -10
  413. data/app/views/catalog/_thumbnail_default.html.erb +0 -5
  414. data/app/views/saved_searches/index.html.erb +0 -32
  415. data/app/views/shared/_ajax_modal.html.erb +0 -6
  416. data/lib/generators/blacklight/solr4_generator.rb +0 -31
  417. data/lib/generators/blacklight/templates/config/jetty.yml +0 -13
  418. data/solr/conf/schema.xml +0 -627
  419. data/solr/conf/solrconfig.xml +0 -411
  420. data/spec/controllers/blacklight/search_helper_spec.rb +0 -489
  421. data/spec/controllers/saved_searches_controller_spec.rb +0 -32
  422. data/spec/controllers/suggest_controller_spec.rb +0 -17
  423. data/spec/features/saved_searches_spec.rb +0 -47
  424. data/spec/helpers/deprecated_url_helper_behavior_spec.rb +0 -101
  425. data/spec/lib/blacklight/utils_spec.rb +0 -167
  426. data/spec/models/blacklight/solr/document/more_like_this_spec.rb +0 -18
  427. data/spec/presenters/document_presenter_spec.rb +0 -438
  428. data/spec/support/backport_test.rb +0 -14
@@ -24,8 +24,8 @@ module Blacklight::Document::Extensions
24
24
  # Needs to be called in initializer of class including this module, to
25
25
  # apply all registered extensions on a per-document basis
26
26
  def apply_extensions
27
- self.class.registered_extensions.each do | registration|
28
- self.extend( registration[:module_obj] ) if registration[:condition_proc].nil? || registration[:condition_proc].call( self )
27
+ self.class.registered_extensions.each do |registration|
28
+ extend(registration[:module_obj]) if registration[:condition_proc].nil? || registration[:condition_proc].call(self)
29
29
  end
30
30
  end
31
31
 
@@ -43,15 +43,15 @@ module Blacklight::Document::Extensions
43
43
  end
44
44
 
45
45
  # Register an extension module with the class. A block taking one
46
- # parameter can be supplied; the block will be passed an instance of
46
+ # parameter can be supplied; the block will be passed an instance of
47
47
  # a Document, and the extension will be applied only if the block
48
48
  # evaluates as true. If no condition is given, the extension will
49
49
  # be applied to every instance of the class.
50
50
  #
51
51
  # SolrDocument.use_extension( SomeExtensionModule ) { | document | should_apply_some_extension?(document) }
52
52
  # SolrDocument.use_extension( SomeExtensionModule) # will be applied to all docs
53
- def use_extension( module_obj, &condition )
54
- registered_extensions << {module_obj: module_obj, condition_proc: condition}
53
+ def use_extension(module_obj, &condition)
54
+ registered_extensions << { module_obj: module_obj, condition_proc: condition }
55
55
  end
56
56
  end
57
57
  end
@@ -7,7 +7,7 @@ module Blacklight::Document
7
7
  # Returns array of hashes of registered extensions. Each hash
8
8
  # has a :module_obj key and a :condition_proc key. Usually this
9
9
  # method is only used internally in #apply_extensions, but if you
10
-
10
+
11
11
  # Class-level method for accessing/setting semantic mappings
12
12
  # for solr stored fields. Can be set by local app, key is
13
13
  # a symbol for a semantic, value is a solr _stored_ field.
@@ -17,22 +17,22 @@ module Blacklight::Document
17
17
  #
18
18
  # Currently documented semantic tokens, not all may be
19
19
  # used by core BL, but some may be used by plugins present
20
- # or future.
21
- # :title, :author, :year, :language => User-presentable strings.
20
+ # or future.
21
+ # :title, :author, :year, :language => User-presentable strings.
22
22
  def field_semantics
23
23
  @field_semantics ||= {}
24
- end
24
+ end
25
25
  end
26
-
26
+
27
27
  # Returns a hash keyed by semantic tokens, value is an array of
28
28
  # strings. (Array to handle multi-value fields). If no value(s)
29
- # available, empty array is returned.
29
+ # available, empty array is returned.
30
30
  #
31
31
  # Default implementation here uses field_semantics
32
- # to just take values from Solr stored fields.
32
+ # to just take values from Solr stored fields.
33
33
  # Extensions can over-ride this method to provide better/different lookup,
34
34
  # but extensions should call super and modify hash returned, to avoid
35
- # unintentionally erasing values provided by other extensions.
35
+ # unintentionally erasing values provided by other extensions.
36
36
  def to_semantic_values
37
37
  @semantic_value_hash ||= self.class.field_semantics.each_with_object(Hash.new([])) do |(key, field_names), hash|
38
38
  ##
@@ -45,6 +45,6 @@ module Blacklight::Document
45
45
  end
46
46
 
47
47
  @semantic_value_hash ||= {}
48
- end
48
+ end
49
49
  end
50
50
  end
@@ -3,10 +3,10 @@
3
3
  module Blacklight::Document::Sms
4
4
  # Return a text string that will be the body of the email
5
5
  def to_sms_text
6
- semantics = self.to_semantic_values
6
+ semantics = to_semantic_values
7
7
  body = []
8
- body << I18n.t('blacklight.sms.text.title', value: semantics[:title].first) unless semantics[:title].blank?
9
- body << I18n.t('blacklight.sms.text.author', value: semantics[:author].first) unless semantics[:author].blank?
8
+ body << I18n.t('blacklight.sms.text.title', value: semantics[:title].first) if semantics[:title].present?
9
+ body << I18n.t('blacklight.sms.text.author', value: semantics[:author].first) if semantics[:author].present?
10
10
  return body.join unless body.empty?
11
11
  end
12
12
  end
@@ -1,13 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
  module Blacklight::User
3
3
  # This gives us an is_blacklight_user method that can be included in
4
- # the containing applications models.
5
- # SEE ALSO: The /lib/blacklight/engine.rb class for how when this
4
+ # the containing applications models.
5
+ # SEE ALSO: The /lib/blacklight/engine.rb class for how when this
6
6
  # is injected into the hosting application through ActiveRecord::Base extend
7
7
  def self.included(base)
8
8
  return unless base.respond_to? :has_many
9
- base.send :has_many, :bookmarks, :dependent => :destroy, :as => :user
10
- base.send :has_many, :searches, :dependent => :destroy, :as => :user
9
+
10
+ base.send :has_many, :bookmarks, dependent: :destroy, as: :user
11
+ base.send :has_many, :searches, dependent: :destroy, as: :user
11
12
  end
12
13
 
13
14
  def bookmarks_for_documents documents = []
@@ -21,9 +22,9 @@ module Blacklight::User
21
22
  def document_is_bookmarked?(document)
22
23
  bookmarks_for_documents([document]).any?
23
24
  end
24
-
25
+
25
26
  # returns a Bookmark object if there is one for document_id, else
26
- # nil.
27
+ # nil.
27
28
  def existing_bookmark_for(document)
28
29
  bookmarks_for_documents([document]).first
29
30
  end
@@ -1,25 +1,27 @@
1
1
  # frozen_string_literal: true
2
- # Only works for documents with a #to_marc right now.
2
+ # Only works for documents with a #to_marc right now.
3
3
  class RecordMailer < ActionMailer::Base
4
4
  def email_record(documents, details, url_gen_params)
5
-
6
5
  title = begin
7
6
  documents.first.to_semantic_values[:title]
8
7
  rescue
9
8
  I18n.t('blacklight.email.text.default_title')
10
9
  end
11
- subject = I18n.t('blacklight.email.text.subject', :count => documents.length, :title => title )
10
+
11
+ subject = I18n.t('blacklight.email.text.subject',
12
+ count: documents.length,
13
+ title: Array(title).first)
12
14
 
13
15
  @documents = documents
14
16
  @message = details[:message]
15
17
  @url_gen_params = url_gen_params
16
18
 
17
- mail(:to => details[:to], :subject => subject)
19
+ mail(to: details[:to], subject: subject)
18
20
  end
19
-
21
+
20
22
  def sms_record(documents, details, url_gen_params)
21
23
  @documents = documents
22
24
  @url_gen_params = url_gen_params
23
- mail(:to => details[:to], :subject => "")
25
+ mail(to: details[:to], subject: "")
24
26
  end
25
27
  end
data/app/models/search.rb CHANGED
@@ -1,22 +1,20 @@
1
1
  # frozen_string_literal: true
2
- class Search < ActiveRecord::Base
3
- belongs_to_arguments = { optional: true } if Rails.version >= '5.0.0'
4
2
 
5
- belongs_to :user, belongs_to_arguments
3
+ class Search < ApplicationRecord
4
+ belongs_to :user, optional: true
6
5
 
7
6
  serialize :query_params
8
7
 
9
- attr_accessible :query_params if Blacklight::Utils.needs_attr_accessible?
10
-
11
8
  # A Search instance is considered a saved search if it has a user_id.
12
9
  def saved?
13
- self.user_id?
10
+ user_id?
14
11
  end
15
12
 
16
13
  # delete old, unsaved searches
17
14
  def self.delete_old_searches(days_old)
18
15
  raise ArgumentError, 'days_old is expected to be a number' unless days_old.is_a?(Numeric)
19
16
  raise ArgumentError, 'days_old is expected to be greater than 0' if days_old <= 0
20
- self.where(['created_at < ? AND user_id IS NULL', Time.zone.today - days_old]).destroy_all
17
+
18
+ where(['created_at < ? AND user_id IS NULL', Time.zone.today - days_old]).delete_all
21
19
  end
22
20
  end
@@ -1,153 +1,38 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module Blacklight
3
- # @deprecated
4
+ # An abstract class that the view presenters for SolrDocuments descend from
4
5
  class DocumentPresenter
5
- extend Deprecation
6
- self.deprecation_horizon = 'Blacklight version 7.0.0'
7
-
8
- # @param [SolrDocument] document
9
- # @param [ActionController::Base] controller scope for linking and generating urls
10
- # @param [Blacklight::Configuration] configuration
11
- def initialize(document, controller, configuration = controller.blacklight_config)
12
- @document = document
13
- @configuration = configuration
14
- @controller = controller
15
- end
16
-
17
- ##
18
- # Get the value of the document's "title" field, or a placeholder
19
- # value (if empty)
20
- #
21
- # @return [String]
22
- # @deprecated use ShowPresenter#heading instead
23
- def document_heading
24
- show_presenter.heading
25
- end
26
- deprecation_deprecate document_heading: "use ShowPresenter#heading instead"
27
-
28
- ##
29
- # Create <link rel="alternate"> links from a documents dynamically
30
- # provided export formats. Returns empty string if no links available.
31
- #
32
- # @param [Hash] options
33
- # @option options [Boolean] :unique ensures only one link is output for every
34
- # content type, e.g. as required by atom
35
- # @option options [Array<String>] :exclude array of format shortnames to not include in the output
36
- # @deprecated moved to ShowPresenter#link_rel_alternates
37
- def link_rel_alternates(options = {})
38
- show_presenter.link_rel_alternates(options)
39
- end
40
- deprecation_deprecate link_rel_alternates: "use ShowPresenter#link_rel_alternates instead"
41
-
42
- ##
43
- # Get the document's "title" to display in the <title> element.
44
- # (by default, use the #document_heading)
45
- #
46
- # @see #document_heading
47
- # @return [String]
48
- # @deprecated use ShowPresenter#html_title instead
49
- def document_show_html_title
50
- show_presenter.html_title
51
- end
52
- deprecation_deprecate document_show_html_title: "use ShowPresenter#html_title instead"
53
-
54
- ##
55
- # Render the document index heading
56
- #
57
- # @overload render_document_index_label(field, opts)
58
- # @param [Symbol, Proc, String] field Render the given field or evaluate the proc or render the given string
59
- # @param [Hash] opts
60
- # @deprecated use IndexPresenter#label instead
61
- def render_document_index_label(*args)
62
- index_presenter.label(*args)
63
- end
64
- deprecation_deprecate render_document_index_label: "use IndexPresenter#label instead"
65
-
66
- ##
67
- # Render the index field label for a document
68
- #
69
- # Allow an extention point where information in the document
70
- # may drive the value of the field
71
- # @overload render_index_field_value(field, opts)
72
- # @param [String] field
73
- # @param [Hash] opts
74
- # @option opts [String] :value
75
- # @deprecated use IndexPresenter#field_value instead
76
- def render_index_field_value *args
77
- index_presenter.field_value(*args)
6
+ attr_reader :document, :configuration, :view_context
7
+
8
+ # @return [Hash<String,Configuration::Field>] all the fields for this index view that should be rendered
9
+ def fields_to_render
10
+ fields.select do |_name, field_config|
11
+ # rubocop:disable Style/PreferredHashMethods
12
+ render_field?(field_config) && has_value?(field_config)
13
+ # rubocop:enable Style/PreferredHashMethods
14
+ end
78
15
  end
79
- deprecation_deprecate render_index_field_value: "use IndexPresenter#field_value instead"
80
16
 
81
- ##
82
- # Render the show field value for a document
83
- #
84
- # Allow an extention point where information in the document
85
- # may drive the value of the field
86
- #
87
- # @overload render_index_field_value(field, options)
88
- # @param [String] field
89
- # @param [Hash] options
90
- # @option options [String] :value
91
- # @deprecated use ShowPresenter#field_value
92
- def render_document_show_field_value *args
93
- show_presenter.field_value(*args)
94
- end
95
- deprecation_deprecate render_document_show_field_value: "use ShowPresenter#field_value instead"
17
+ private
96
18
 
97
19
  ##
98
- # Get the value for a document's field, and prepare to render it.
99
- # - highlight_field
100
- # - accessor
101
- # - solr field
102
- #
103
- # Rendering:
104
- # - helper_method
105
- # - link_to_search
106
- # @param [String] _field name
107
- # @param [Blacklight::Configuration::Field] field_config solr field configuration
108
- # @param [Hash] options additional options to pass to the rendering helpers
109
- # @deprecated
110
- def get_field_values _field, field_config, options = {}
111
- field_values(field_config, options)
20
+ # Check to see if the given field should be rendered in this context
21
+ # @param [Blacklight::Configuration::Field] field_config
22
+ # @return [Boolean]
23
+ def render_field?(field_config)
24
+ view_context.should_render_field?(field_config, document)
112
25
  end
113
- deprecation_deprecate get_field_values: 'Use field_values instead'
114
26
 
115
27
  ##
116
- # Get the value for a document's field, and prepare to render it.
117
- # - highlight_field
118
- # - accessor
119
- # - solr field
120
- #
121
- # Rendering:
122
- # - helper_method
123
- # - link_to_search
124
- # @param [Blacklight::Configuration::Field] field_config solr field configuration
125
- # @param [Hash] options additional options to pass to the rendering helpers
126
- def field_values(field_config, options={})
127
- FieldPresenter.new(@controller, @document, field_config, options).render
128
- end
129
- deprecation_deprecate field_values: 'Use ShowPresenter or IndexPresenter field_values instead'
130
-
131
- # @deprecated
132
- def render_field_value(values, field_config = Configuration::NullField.new)
133
- field_values(field_config, value: Array(values))
28
+ # Check if a document has (or, might have, in the case of accessor methods) a value for
29
+ # the given solr field
30
+ # @param [Blacklight::Configuration::Field] field_config
31
+ # @return [Boolean]
32
+ def has_value? field_config
33
+ document.has?(field_config.field) ||
34
+ (document.has_highlight_field? field_config.field if field_config.highlight) ||
35
+ field_config.accessor
134
36
  end
135
- deprecation_deprecate render_field_value: 'Use FieldPresenter instead'
136
-
137
- # @deprecated
138
- def render_values(values, field_config = Configuration::NullField.new)
139
- field_values(field_config, value: Array(values))
140
- end
141
- deprecation_deprecate render_values: 'Use FieldPresenter instead'
142
-
143
- private
144
-
145
- def index_presenter
146
- @controller.index_presenter(@document)
147
- end
148
-
149
- def show_presenter
150
- @controller.show_presenter(@document)
151
- end
152
37
  end
153
38
  end
@@ -1,6 +1,14 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Blacklight
2
- # Renders a field and handles link_to_search or helper_method if supplied
4
+ # Renders a field and handles link_to_facet or helper_method if supplied
3
5
  class FieldPresenter
6
+ # @param controller [Object] the context in which to execute helper methods
7
+ # @param document [SolrDocument] the document
8
+ # @param field_config [Blacklight::Configuration::Field] the field's configuration
9
+ # @param options [Hash]
10
+ # @option options [Object] :value when this is provided, we don't want the pipeline to deal with helper methods.
11
+ # this happens when drawing the label for the document
4
12
  def initialize(controller, document, field_config, options)
5
13
  @controller = controller
6
14
  @document = document
@@ -9,23 +17,20 @@ module Blacklight
9
17
  end
10
18
 
11
19
  attr_reader :controller, :document, :field_config, :options
12
-
20
+
13
21
  def render
14
- if options[:value]
15
- # This prevents helper methods from drawing.
16
- config = Configuration::NullField.new(field_config.to_h.except(:helper_method))
17
- values = Array.wrap(options[:value])
18
- else
19
- config = field_config
20
- values = retrieve_values
21
- end
22
- Rendering::Pipeline.render(values, config, document, controller, options)
22
+ return Rendering::Pipeline.render(retrieve_values, field_config, document, controller, options) unless options[:value]
23
+
24
+ values = Array.wrap(options[:value])
25
+ # Prevents helper methods from drawing.
26
+ steps = Rendering::Pipeline.operations - [Rendering::HelperMethod]
27
+ Rendering::Pipeline.new(values, field_config, document, controller, steps, options).render
23
28
  end
24
29
 
25
30
  private
26
31
 
27
- def retrieve_values
28
- FieldRetriever.new(document, field_config).fetch
29
- end
32
+ def retrieve_values
33
+ FieldRetriever.new(document, field_config).fetch
34
+ end
30
35
  end
31
36
  end
@@ -1,10 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
  module Blacklight
3
- class IndexPresenter
4
- extend Deprecation
5
- self.deprecation_horizon = 'Blacklight version 7.0.0'
3
+ class IndexPresenter < DocumentPresenter
4
+ class_attribute :thumbnail_presenter
5
+ self.thumbnail_presenter = ThumbnailPresenter
6
6
 
7
- attr_reader :document, :configuration, :view_context
7
+ attr_reader :view_config
8
8
 
9
9
  # @param [SolrDocument] document
10
10
  # @param [ActionView::Base] view_context scope for linking and generating urls
@@ -13,10 +13,12 @@ module Blacklight
13
13
  @document = document
14
14
  @view_context = view_context
15
15
  @configuration = configuration
16
+ @view_config = configuration.view_config(view_context.document_index_view_type)
16
17
  end
17
18
 
18
19
  ##
19
- # Render the document index heading
20
+ # Render the document index heading. This is used when making a link to a
21
+ # document, where we don't want any HTML markup added from the pipeline.
20
22
  #
21
23
  # @param [Symbol, Proc, String] field_or_string_or_proc Render the given field or evaluate the proc or render the given string
22
24
  # @param [Hash] opts
@@ -24,93 +26,63 @@ module Blacklight
24
26
  def label(field_or_string_or_proc, opts = {})
25
27
  config = Configuration::NullField.new
26
28
  value = case field_or_string_or_proc
27
- when Symbol
28
- config = field_config(field_or_string_or_proc)
29
- document[field_or_string_or_proc]
30
- when Proc
31
- field_or_string_or_proc.call(document, opts)
32
- when String
33
- field_or_string_or_proc
34
- end
29
+ when Symbol
30
+ config = field_config(field_or_string_or_proc)
31
+ document[field_or_string_or_proc]
32
+ when Proc
33
+ Deprecation.warn(self, "calling IndexPresenter.label with a Proc is deprecated. " \
34
+ "First argument must be a symbol. This will be removed in Blacklight 8")
35
+ field_or_string_or_proc.call(document, opts)
36
+ when String
37
+ Deprecation.warn(self, "calling IndexPresenter.label with a String is deprecated. " \
38
+ "First argument must be a symbol. This will be removed in Blacklight 8")
39
+ field_or_string_or_proc
40
+ end
35
41
 
36
42
  value ||= document.id
37
43
  field_values(config, value: value)
38
44
  end
39
45
 
40
- # @deprecated
41
- def render_document_index_label(*args)
42
- label(*args)
43
- end
44
- deprecation_deprecate render_document_index_label: 'Use #label instead'
45
-
46
46
  ##
47
47
  # Render the index field label for a document
48
48
  #
49
49
  # Allow an extention point where information in the document
50
50
  # may drive the value of the field
51
- # @param [Configuration::Field, String] field_or_name
51
+ # @param [Configuration::Field] field
52
52
  # @param [Hash] options
53
53
  # @option options [String] :value
54
- def field_value field_or_name, options = {}
55
- field = case field_or_name
56
- when Blacklight::Configuration::Field
57
- field_or_name
58
- when String, Symbol
59
- Deprecation.warn(self, "You provided a #{field_or_name.class} value to IndexPresenter#field_value " \
60
- "Provide a Blacklight::Configuration::Field instead. This behavior is deprecated in Blacklight 7")
61
- field_config(field_or_name)
62
- else
63
- Deprecation.warn(self, "You provided a #{field_or_name.class} value to IndexPresenter#field_value. " \
64
- "This will be silently ignored and will be an error in Blacklight 7.")
65
-
66
- Configuration::NullField.new
67
- end
54
+ def field_value field, options = {}
68
55
  field_values(field, options)
69
56
  end
70
57
 
71
- # @deprecated
72
- def render_index_field_value(*args)
73
- field_value(*args)
58
+ def thumbnail
59
+ @thumbnail ||= thumbnail_presenter.new(document, view_context, view_config)
74
60
  end
75
- deprecation_deprecate render_index_field_value: 'replaced by #field_value'
76
61
 
77
- # @deprecated
78
- def get_field_values(field_config, options={})
79
- field_values(field_config, options)
80
- end
81
- deprecation_deprecate get_field_values: "replaced by #field_value"
62
+ private
82
63
 
83
- # @deprecated
84
- def render_field_values(values, field_config = Configuration::NullField.new)
85
- field_values(field_config, value: Array(values))
64
+ # @return [Hash<String,Configuration::Field>] all the fields for this index view
65
+ def fields
66
+ configuration.index_fields_for(document)
86
67
  end
87
- deprecation_deprecate render_field_values: "replaced by #field_value"
88
68
 
89
- # @deprecated
90
- def render_values(values, field_config = Configuration::NullField.new)
91
- field_values(field_config, value: Array(values))
69
+ ##
70
+ # Get the value for a document's field, and prepare to render it.
71
+ # - highlight_field
72
+ # - accessor
73
+ # - solr field
74
+ #
75
+ # Rendering:
76
+ # - helper_method
77
+ # - link_to_facet
78
+ # @param [Blacklight::Configuration::Field] field_config solr field configuration
79
+ # @param [Hash] options additional options to pass to the rendering helpers
80
+ def field_values(field_config, options = {})
81
+ FieldPresenter.new(view_context, document, field_config, options).render
92
82
  end
93
- deprecation_deprecate render_values: "replaced by #field_value"
94
-
95
- private
96
-
97
- ##
98
- # Get the value for a document's field, and prepare to render it.
99
- # - highlight_field
100
- # - accessor
101
- # - solr field
102
- #
103
- # Rendering:
104
- # - helper_method
105
- # - link_to_search
106
- # @param [Blacklight::Configuration::Field] field_config solr field configuration
107
- # @param [Hash] options additional options to pass to the rendering helpers
108
- def field_values(field_config, options={})
109
- FieldPresenter.new(view_context, document, field_config, options).render
110
- end
111
83
 
112
- def field_config(field)
113
- configuration.index_fields.fetch(field) { Configuration::NullField.new(field) }
114
- end
84
+ def field_config(field)
85
+ configuration.index_fields.fetch(field) { Configuration::NullField.new(field) }
86
+ end
115
87
  end
116
88
  end