blacklight 7.40.0 → 8.0.0.beta1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.env +2 -3
- data/.github/workflows/ruby.yml +36 -114
- data/.rubocop.yml +243 -14
- data/.rubocop_todo.yml +137 -429
- data/Gemfile +11 -6
- data/README.md +11 -3
- data/VERSION +1 -1
- data/app/assets/javascripts/blacklight/blacklight.esm.js +384 -0
- data/app/assets/javascripts/blacklight/blacklight.esm.js.map +1 -0
- data/app/assets/javascripts/blacklight/blacklight.js +374 -493
- data/app/assets/javascripts/blacklight/blacklight.js.map +1 -0
- data/app/assets/stylesheets/blacklight/_autocomplete.scss +25 -0
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +1 -1
- data/app/assets/stylesheets/blacklight/_bookmark.scss +16 -0
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +8 -0
- data/app/assets/stylesheets/blacklight/_constraints.scss +4 -4
- data/app/assets/stylesheets/blacklight/_facets.scss +72 -44
- data/app/assets/stylesheets/blacklight/_header.scss +0 -15
- data/app/assets/stylesheets/blacklight/_icons.scss +0 -14
- data/app/assets/stylesheets/blacklight/_mixins.scss +20 -0
- data/app/assets/stylesheets/blacklight/_modal.scss +8 -2
- data/app/assets/stylesheets/blacklight/_search_form.scss +30 -3
- data/app/assets/stylesheets/blacklight/_search_history.scss +10 -1
- data/app/assets/stylesheets/blacklight/_search_results.scss +6 -2
- data/app/assets/stylesheets/blacklight/blacklight_defaults.scss +4 -1
- data/app/builders/blacklight/action_builder.rb +18 -9
- data/app/components/blacklight/advanced_search_form_component.html.erb +3 -3
- data/app/components/blacklight/advanced_search_form_component.rb +8 -10
- data/app/components/blacklight/constraints_component.rb +27 -37
- data/app/components/blacklight/document/action_component.rb +9 -9
- data/app/components/blacklight/document/actions_component.rb +2 -2
- data/app/components/blacklight/document/bookmark_component.html.erb +9 -0
- data/app/components/blacklight/document/bookmark_component.rb +4 -2
- data/app/components/blacklight/document/citation_component.rb +5 -3
- data/app/components/blacklight/document/group_component.rb +7 -3
- data/app/components/blacklight/document/sidebar_component.html.erb +2 -0
- data/app/components/blacklight/document/sidebar_component.rb +16 -0
- data/app/components/blacklight/document/thumbnail_component.html.erb +2 -7
- data/app/components/blacklight/document/thumbnail_component.rb +1 -9
- data/app/components/blacklight/document_component.html.erb +1 -1
- data/app/components/blacklight/document_component.rb +16 -78
- data/app/components/blacklight/document_metadata_component.html.erb +2 -4
- data/app/components/blacklight/document_metadata_component.rb +5 -10
- data/app/components/blacklight/facet_component.rb +3 -3
- data/app/components/blacklight/facet_field_checkboxes_component.html.erb +4 -4
- data/app/components/blacklight/facet_field_checkboxes_component.rb +1 -1
- data/app/components/blacklight/facet_field_component.html.erb +4 -5
- data/app/components/blacklight/facet_field_component.rb +9 -2
- data/app/components/blacklight/facet_field_list_component.html.erb +3 -3
- data/app/components/blacklight/facet_field_list_component.rb +37 -5
- data/app/components/blacklight/facet_field_no_layout_component.rb +0 -2
- data/app/components/blacklight/facet_item_component.rb +1 -43
- data/app/components/blacklight/facet_item_pivot_component.rb +21 -23
- data/app/components/blacklight/header_component.rb +1 -1
- data/app/components/blacklight/hidden_search_state_component.rb +1 -2
- data/app/components/blacklight/icons/icon_component.rb +4 -9
- data/app/components/blacklight/icons/legacy_icon_component.rb +30 -0
- data/app/components/blacklight/icons/list_component.rb +16 -0
- data/app/components/blacklight/icons/search_component.rb +16 -0
- data/app/components/blacklight/metadata_field_component.html.erb +2 -2
- data/app/components/blacklight/metadata_field_component.rb +24 -8
- data/app/components/blacklight/metadata_field_layout_component.rb +4 -25
- data/app/components/blacklight/response/facet_group_component.html.erb +3 -5
- data/app/components/blacklight/response/facet_group_component.rb +29 -8
- data/app/components/blacklight/response/pagination_component.html.erb +1 -1
- data/app/components/blacklight/response/pagination_component.rb +2 -11
- data/app/components/blacklight/response/sort_component.html.erb +6 -1
- data/app/components/blacklight/response/sort_component.rb +1 -16
- data/app/components/blacklight/response/spellcheck_component.rb +18 -7
- data/app/components/blacklight/response/view_type_button_component.rb +3 -7
- data/app/components/blacklight/response/view_type_component.rb +4 -6
- data/app/components/blacklight/search/sidebar_component.html.erb +8 -0
- data/app/components/blacklight/search/sidebar_component.rb +17 -0
- data/app/components/blacklight/search_bar_component.html.erb +20 -15
- data/app/components/blacklight/search_bar_component.rb +2 -16
- data/app/components/blacklight/search_button_component.rb +3 -3
- data/app/components/blacklight/search_context_component.rb +43 -9
- data/app/components/blacklight/search_header_component.html.erb +2 -0
- data/app/components/blacklight/search_header_component.rb +6 -0
- data/app/components/blacklight/start_over_button_component.rb +5 -3
- data/app/components/blacklight/system/dropdown_component.rb +8 -5
- data/app/components/blacklight/system/flash_message_component.html.erb +4 -2
- data/app/components/blacklight/system/flash_message_component.rb +12 -3
- data/app/components/blacklight/system/modal_component.html.erb +1 -1
- data/app/components/blacklight/system/modal_component.rb +1 -3
- data/app/components/blacklight/top_navbar_component.html.erb +1 -1
- data/app/components/blacklight/top_navbar_component.rb +0 -4
- data/app/controllers/bookmarks_controller.rb +1 -0
- data/app/controllers/catalog_controller.rb +1 -0
- data/app/controllers/concerns/blacklight/bookmarks.rb +10 -9
- data/app/controllers/concerns/blacklight/catalog.rb +21 -83
- data/app/controllers/concerns/blacklight/controller.rb +3 -41
- data/app/controllers/concerns/blacklight/search_context.rb +25 -7
- data/app/controllers/concerns/blacklight/search_history.rb +2 -0
- data/app/controllers/concerns/blacklight/searchable.rb +12 -1
- data/app/controllers/concerns/blacklight/token_based_user.rb +13 -1
- data/app/controllers/search_history_controller.rb +1 -0
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +12 -310
- data/app/helpers/blacklight/catalog_helper_behavior.rb +22 -139
- data/app/helpers/blacklight/component_helper_behavior.rb +2 -53
- data/app/helpers/blacklight/configuration_helper_behavior.rb +2 -119
- data/app/helpers/blacklight/facets_helper_behavior.rb +4 -321
- data/app/helpers/blacklight/icon_helper_behavior.rb +5 -7
- data/app/helpers/blacklight/layout_helper_behavior.rb +4 -3
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +11 -31
- data/app/helpers/blacklight/url_helper_behavior.rb +12 -97
- data/app/helpers/blacklight_helper.rb +1 -0
- data/app/helpers/catalog_helper.rb +1 -0
- data/app/javascript/blacklight/bookmark_toggle.js +13 -19
- data/app/javascript/blacklight/button_focus.js +12 -10
- data/app/javascript/blacklight/checkbox_submit.js +68 -123
- data/app/javascript/blacklight/core.js +5 -7
- data/app/javascript/blacklight/index.js +13 -0
- data/app/javascript/blacklight/modal.js +99 -164
- data/app/javascript/blacklight/modalForm.js +60 -0
- data/app/javascript/blacklight/search_context.js +46 -54
- data/app/models/blacklight/facet_paginator.rb +3 -2
- data/app/models/blacklight/icon.rb +4 -2
- data/app/models/bookmark.rb +0 -2
- data/app/models/concerns/blacklight/configurable.rb +5 -4
- data/app/models/concerns/blacklight/document/active_model_shim.rb +1 -10
- data/app/models/concerns/blacklight/document/cache_key.rb +1 -0
- data/app/models/concerns/blacklight/document/dublin_core.rb +2 -1
- data/app/models/concerns/blacklight/document/email.rb +1 -0
- data/app/models/concerns/blacklight/document/export.rb +2 -1
- data/app/models/concerns/blacklight/document/extensions.rb +1 -0
- data/app/models/concerns/blacklight/document/schema_org.rb +1 -0
- data/app/models/concerns/blacklight/document/semantic_fields.rb +2 -1
- data/app/models/concerns/blacklight/document/sms.rb +1 -0
- data/app/models/concerns/blacklight/suggest/response.rb +1 -0
- data/app/models/concerns/blacklight/user.rb +17 -8
- data/app/models/record_mailer.rb +13 -12
- data/app/models/search.rb +1 -7
- data/app/models/solr_document.rb +1 -0
- data/app/presenters/blacklight/clause_presenter.rb +1 -1
- data/app/presenters/blacklight/document_presenter.rb +23 -50
- data/app/presenters/blacklight/facet_field_presenter.rb +39 -14
- data/app/presenters/blacklight/facet_grouped_item_presenter.rb +1 -5
- data/app/presenters/blacklight/facet_item_pivot_presenter.rb +60 -0
- data/app/presenters/blacklight/facet_item_presenter.rb +3 -9
- data/app/presenters/blacklight/field_presenter.rb +1 -0
- data/app/presenters/blacklight/index_presenter.rb +2 -40
- data/app/presenters/blacklight/json_presenter.rb +7 -5
- data/app/presenters/blacklight/rendering/link_to_facet.rb +2 -5
- data/app/presenters/blacklight/show_presenter.rb +1 -9
- data/app/presenters/blacklight/thumbnail_presenter.rb +1 -1
- data/app/services/blacklight/bookmarks_search_builder.rb +22 -0
- data/app/services/blacklight/field_retriever.rb +12 -21
- data/app/services/blacklight/search_service.rb +10 -17
- data/app/values/blacklight/types.rb +0 -18
- data/app/views/bookmarks/_clear_bookmarks_widget.html.erb +8 -1
- data/app/views/bookmarks/_tools.html.erb +7 -12
- data/app/views/catalog/_advanced_search_form.html.erb +0 -1
- data/app/views/catalog/_bookmark_control.html.erb +1 -1
- data/app/views/catalog/_citation.html.erb +1 -1
- data/app/views/catalog/_constraints.html.erb +1 -14
- data/app/views/catalog/_document.atom.builder +12 -14
- data/app/views/catalog/_document.html.erb +5 -3
- data/app/views/catalog/_document.rss.builder +2 -4
- data/app/views/catalog/_facet_layout.html.erb +2 -2
- data/app/views/catalog/_facets.html.erb +5 -4
- data/app/views/catalog/_home_text.html.erb +2 -14
- data/app/views/catalog/_per_page_widget.html.erb +10 -1
- data/app/views/catalog/_search_form.html.erb +2 -2
- data/app/views/catalog/_search_header.html.erb +1 -2
- data/app/views/catalog/_search_results.html.erb +2 -2
- data/app/views/catalog/_search_sidebar.html.erb +5 -1
- data/app/views/catalog/_show_main_content.html.erb +11 -16
- data/app/views/catalog/_show_sidebar.html.erb +2 -2
- data/app/views/catalog/_show_tools.html.erb +8 -14
- data/app/views/catalog/_view_type_group.html.erb +1 -1
- data/app/views/catalog/email.html.erb +2 -2
- data/app/views/catalog/email_success.html.erb +5 -6
- data/app/views/catalog/facet.html.erb +7 -5
- data/app/views/catalog/index.atom.builder +12 -14
- data/app/views/catalog/index.html.erb +4 -1
- data/app/views/catalog/index.json.jbuilder +19 -19
- data/app/views/catalog/index.rss.builder +1 -1
- data/app/views/catalog/opensearch.xml.builder +1 -1
- data/app/views/catalog/sms.html.erb +2 -2
- data/app/views/catalog/sms_success.html.erb +5 -6
- data/app/views/catalog/suggest.html.erb +3 -0
- data/app/views/kaminari/blacklight/_page.html.erb +2 -1
- data/app/views/layouts/blacklight/base.html.erb +13 -2
- data/app/views/search_history/index.html.erb +6 -2
- data/app/views/shared/_flash_messages.html.erb +1 -1
- data/app/views/shared/_modal.html.erb +3 -3
- data/blacklight.gemspec +7 -11
- data/config/importmap.rb +3 -0
- data/config/locales/blacklight.ar.yml +0 -1
- data/config/locales/blacklight.ca.yml +0 -1
- data/config/locales/blacklight.de.yml +0 -1
- data/config/locales/blacklight.en.yml +0 -2
- data/config/locales/blacklight.es.yml +0 -1
- data/config/locales/blacklight.fr.yml +0 -1
- data/config/locales/blacklight.hu.yml +0 -1
- data/config/locales/blacklight.it.yml +0 -1
- data/config/locales/blacklight.nl.yml +0 -1
- data/config/locales/blacklight.pt-BR.yml +0 -1
- data/config/locales/blacklight.sq.yml +0 -1
- data/config/locales/blacklight.zh.yml +0 -1
- data/config/routes.rb +3 -2
- data/db/migrate/20140202020201_create_searches.rb +1 -0
- data/db/migrate/20140202020202_create_bookmarks.rb +1 -0
- data/db/migrate/20140320000000_add_polymorphic_type_to_bookmarks.rb +1 -0
- data/docker-compose.yml +3 -2
- data/lib/blacklight/abstract_repository.rb +1 -6
- data/lib/blacklight/component.rb +47 -10
- data/lib/blacklight/configuration/context.rb +4 -4
- data/lib/blacklight/configuration/display_field.rb +7 -9
- data/lib/blacklight/configuration/facet_field.rb +17 -11
- data/lib/blacklight/configuration/field.rb +1 -0
- data/lib/blacklight/configuration/fields.rb +12 -15
- data/lib/blacklight/configuration/index_field.rb +1 -0
- data/lib/blacklight/configuration/null_display_field.rb +17 -0
- data/lib/blacklight/configuration/search_field.rb +1 -0
- data/lib/blacklight/configuration/show_field.rb +1 -0
- data/lib/blacklight/configuration/sort_field.rb +1 -0
- data/lib/blacklight/configuration/tool_config.rb +1 -0
- data/lib/blacklight/configuration/view_config.rb +14 -10
- data/lib/blacklight/configuration.rb +310 -365
- data/lib/blacklight/engine.rb +8 -24
- data/lib/blacklight/exceptions.rb +2 -2
- data/lib/blacklight/nested_open_struct_with_hash_access.rb +6 -12
- data/lib/blacklight/open_struct_with_hash_access.rb +23 -6
- data/lib/blacklight/parameters.rb +7 -21
- data/lib/blacklight/routes/exportable.rb +1 -0
- data/lib/blacklight/routes/searchable.rb +2 -1
- data/lib/blacklight/routes.rb +1 -0
- data/lib/blacklight/search_builder.rb +10 -10
- data/lib/blacklight/search_state/filter_field.rb +8 -25
- data/lib/blacklight/search_state/pivot_filter_field.rb +144 -0
- data/lib/blacklight/search_state.rb +23 -79
- data/lib/blacklight/solr/document.rb +1 -0
- data/lib/blacklight/solr/facet_paginator.rb +1 -0
- data/lib/blacklight/solr/repository.rb +4 -24
- data/lib/blacklight/solr/request.rb +1 -0
- data/lib/blacklight/solr/response/facets.rb +21 -5
- data/lib/blacklight/solr/response/group.rb +1 -0
- data/lib/blacklight/solr/response/group_response.rb +1 -0
- data/lib/blacklight/solr/response/more_like_this.rb +1 -0
- data/lib/blacklight/solr/response/pagination_methods.rb +4 -3
- data/lib/blacklight/solr/response/params.rb +5 -4
- data/lib/blacklight/solr/response/response.rb +1 -0
- data/lib/blacklight/solr/response/spelling.rb +1 -0
- data/lib/blacklight/solr/response.rb +16 -3
- data/lib/blacklight/solr/search_builder_behavior.rb +16 -35
- data/lib/blacklight/solr.rb +7 -0
- data/lib/blacklight/version.rb +1 -0
- data/lib/blacklight.rb +26 -14
- data/lib/generators/blacklight/assets/importmap_generator.rb +55 -0
- data/lib/generators/blacklight/assets/propshaft_generator.rb +25 -0
- data/lib/generators/blacklight/assets/sprockets_generator.rb +66 -0
- data/lib/generators/blacklight/assets_generator.rb +13 -86
- data/lib/generators/blacklight/controller_generator.rb +3 -2
- data/lib/generators/blacklight/document_generator.rb +1 -0
- data/lib/generators/blacklight/install_generator.rb +4 -3
- data/lib/generators/blacklight/models_generator.rb +1 -0
- data/lib/generators/blacklight/search_builder_generator.rb +1 -0
- data/lib/generators/blacklight/solr_generator.rb +1 -1
- data/lib/generators/blacklight/templates/catalog_controller.rb +34 -8
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +0 -69
- data/lib/generators/blacklight/test_support_generator.rb +4 -2
- data/lib/generators/blacklight/user_generator.rb +7 -9
- data/lib/railties/blacklight.rake +6 -7
- data/package.json +10 -13
- data/rollup.config.js +27 -0
- data/spec/components/blacklight/constraints_component_spec.rb +17 -13
- data/spec/components/blacklight/document/action_component_spec.rb +6 -1
- data/spec/components/blacklight/document_component_spec.rb +22 -131
- data/spec/components/blacklight/facet_component_spec.rb +3 -18
- data/spec/components/blacklight/facet_field_checkboxes_component_spec.rb +1 -2
- data/spec/components/blacklight/facet_field_list_component_spec.rb +7 -6
- data/spec/components/blacklight/facet_item_pivot_component_spec.rb +10 -9
- data/spec/components/blacklight/response/view_type_component_spec.rb +66 -0
- data/spec/components/blacklight/search_bar_component_spec.rb +1 -1
- data/spec/components/blacklight/search_context_component_spec.rb +40 -0
- data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +1 -6
- data/spec/controllers/blacklight/{base_spec.rb → catalog_spec.rb} +2 -2
- data/spec/controllers/bookmarks_controller_spec.rb +2 -3
- data/spec/controllers/catalog_controller_spec.rb +13 -135
- data/spec/features/advanced_search_spec.rb +0 -56
- data/spec/features/autocomplete_spec.rb +1 -1
- data/spec/features/axe_spec.rb +1 -6
- data/spec/features/bookmarks_spec.rb +1 -1
- data/spec/features/facets_spec.rb +1 -1
- data/spec/features/search_context_spec.rb +4 -10
- data/spec/features/search_results_spec.rb +0 -33
- data/spec/features/sitelinks_search_box.rb +13 -0
- data/spec/helpers/blacklight/configuration_helper_behavior_spec.rb +2 -138
- data/spec/helpers/blacklight/facets_helper_behavior_spec.rb +0 -387
- data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +8 -0
- data/spec/helpers/blacklight/layout_helper_behavior_spec.rb +3 -20
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +5 -7
- data/spec/helpers/blacklight/url_helper_behavior_spec.rb +9 -131
- data/spec/helpers/blacklight_helper_spec.rb +8 -252
- data/spec/helpers/catalog_helper_spec.rb +7 -118
- data/spec/i18n_spec.rb +1 -0
- data/spec/integration/generators/blacklight/solr_generator_spec.rb +1 -1
- data/spec/lib/blacklight/component_spec.rb +27 -32
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +27 -16
- data/spec/lib/blacklight/configuration/field_spec.rb +1 -1
- data/spec/lib/blacklight/configuration/view_config_spec.rb +1 -1
- data/spec/lib/blacklight/open_struct_with_hash_access_spec.rb +2 -2
- data/spec/lib/blacklight/parameters_spec.rb +1 -4
- data/spec/lib/blacklight/search_state/filter_field_spec.rb +4 -4
- data/spec/lib/blacklight/search_state/pivot_filter_field_spec.rb +117 -0
- data/spec/lib/blacklight/search_state_spec.rb +80 -198
- data/spec/lib/tasks/blacklight_task_spec.rb +1 -0
- data/spec/models/blacklight/configuration_spec.rb +17 -51
- data/spec/models/blacklight/document/active_model_shim_spec.rb +2 -2
- data/spec/models/blacklight/icon_spec.rb +31 -15
- data/spec/models/blacklight/search_builder_spec.rb +9 -9
- data/spec/models/blacklight/solr/document_spec.rb +3 -3
- data/spec/models/blacklight/solr/repository_spec.rb +0 -45
- data/spec/models/blacklight/solr/response/facets_spec.rb +27 -27
- data/spec/models/blacklight/solr/response/group_response_spec.rb +1 -0
- data/spec/models/blacklight/solr/response/group_spec.rb +1 -0
- data/spec/models/blacklight/solr/response_spec.rb +9 -2
- data/spec/models/blacklight/solr/search_builder_spec.rb +24 -44
- data/spec/models/blacklight/user_spec.rb +22 -0
- data/spec/models/solr_document_spec.rb +2 -6
- data/spec/presenters/blacklight/clause_presenter_spec.rb +1 -0
- data/spec/presenters/blacklight/document_presenter_spec.rb +2 -3
- data/spec/presenters/blacklight/facet_field_presenter_spec.rb +85 -12
- data/spec/presenters/blacklight/facet_grouped_item_presenter_spec.rb +1 -0
- data/spec/presenters/blacklight/facet_item_presenter_spec.rb +14 -13
- data/spec/presenters/blacklight/field_presenter_spec.rb +0 -14
- data/spec/presenters/blacklight/index_presenter_spec.rb +2 -5
- data/spec/presenters/blacklight/json_presenter_spec.rb +1 -0
- data/spec/presenters/blacklight/link_alternate_presenter_spec.rb +3 -2
- data/spec/presenters/blacklight/show_presenter_spec.rb +20 -30
- data/spec/presenters/thumbnail_presenter_spec.rb +1 -1
- data/spec/requests/load_suggestions_spec.rb +16 -0
- data/spec/routing/catalog_routing_spec.rb +2 -1
- data/spec/services/blacklight/search_service_spec.rb +39 -76
- data/spec/spec_helper.rb +6 -4
- data/spec/support/controller_level_helpers.rb +1 -2
- data/spec/support/features/search_helpers.rb +39 -0
- data/spec/support/features/session_helpers.rb +1 -0
- data/spec/support/features.rb +3 -0
- data/spec/support/view_component_capybara_test_helpers.rb +8 -0
- data/spec/test_app_templates/Gemfile.extra +1 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +9 -2
- data/spec/views/catalog/_document.html.erb_spec.rb +3 -34
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +0 -2
- data/spec/views/catalog/_search_header.erb_spec.rb +1 -0
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +1 -0
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +5 -66
- data/spec/views/catalog/_view_type_group.html.erb_spec.rb +17 -9
- data/spec/views/catalog/email_success.html.erb_spec.rb +2 -2
- data/spec/views/catalog/facet.html.erb_spec.rb +6 -3
- data/spec/views/catalog/index.atom.builder_spec.rb +17 -11
- data/spec/views/catalog/index.html.erb_spec.rb +5 -6
- data/spec/views/catalog/index.json.jbuilder_spec.rb +2 -2
- data/spec/views/catalog/show.html.erb_spec.rb +3 -25
- data/spec/views/catalog/sms_success.html.erb_spec.rb +2 -2
- data/tasks/blacklight.rake +11 -9
- data/template.demo.rb +7 -7
- metadata +78 -180
- data/.babelrc +0 -11
- data/app/assets/images/blacklight/list.svg +0 -1
- data/app/assets/images/blacklight/search.svg +0 -1
- data/app/assets/stylesheets/blacklight/_twitter_typeahead.scss +0 -37
- data/app/components/blacklight/content_areas_shim.rb +0 -13
- data/app/components/blacklight/search/per_page_component.html.erb +0 -2
- data/app/components/blacklight/search/per_page_component.rb +0 -50
- data/app/components/blacklight/system/dropdown_button_component.rb +0 -18
- data/app/controllers/concerns/blacklight/base.rb +0 -12
- data/app/controllers/concerns/blacklight/default_component_configuration.rb +0 -64
- data/app/controllers/concerns/blacklight/facet.rb +0 -69
- data/app/controllers/concerns/blacklight/search_fields.rb +0 -46
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +0 -27
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +0 -188
- data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +0 -97
- data/app/helpers/blacklight/suggest_helper_behavior.rb +0 -13
- data/app/javascript/blacklight/autocomplete.js +0 -36
- data/app/javascript/blacklight/facet_load.js +0 -22
- data/app/presenters/blacklight/search_bar_presenter.rb +0 -47
- data/app/views/catalog/_constraints_element.html.erb +0 -14
- data/app/views/catalog/_document_action.html.erb +0 -5
- data/app/views/catalog/_facet_group.html.erb +0 -5
- data/app/views/catalog/_facet_limit.html.erb +0 -3
- data/app/views/catalog/_index.html.erb +0 -1
- data/app/views/catalog/_index_header.html.erb +0 -22
- data/app/views/catalog/_previous_next_doc.html.erb +0 -2
- data/app/views/catalog/_show.html.erb +0 -6
- data/app/views/catalog/_show_header.html.erb +0 -2
- data/app/views/catalog/_thumbnail.html.erb +0 -1
- data/lib/blacklight/deprecations/engine_configuration.rb +0 -66
- data/lib/blacklight/deprecations/search_state_normalization.rb +0 -52
- data/spec/components/blacklight/header_component_spec.rb +0 -20
- data/spec/components/blacklight/icons/icon_component_spec.rb +0 -42
- data/spec/components/blacklight/response/pagination_component_spec.rb +0 -53
- data/spec/controllers/blacklight/facet_spec.rb +0 -33
- data/spec/controllers/blacklight/search_fields_spec.rb +0 -62
- data/spec/features/citation_spec.rb +0 -10
- data/spec/features/sitelinks_search_box_spec.rb +0 -13
- data/spec/features/sms_spec.rb +0 -12
- data/spec/helpers/blacklight/hash_as_hidden_fields_behavior_spec.rb +0 -26
- data/spec/helpers/blacklight/render_constraints_helper_behavior_spec.rb +0 -92
- data/spec/helpers/blacklight/search_history_constraints_helper_behavior_spec.rb +0 -101
- data/spec/helpers/blacklight/suggest_helper_behavior_spec.rb +0 -48
- data/spec/lib/blacklight/engine_spec.rb +0 -41
- data/spec/presenters/blacklight/search_bar_presenter_spec.rb +0 -94
- data/spec/services/blacklight/field_retriever_spec.rb +0 -17
- data/spec/support/view_component_test_helpers.rb +0 -35
- data/spec/views/catalog/_constraints.html.erb_spec.rb +0 -33
- data/spec/views/catalog/_facet_group.html.erb_spec.rb +0 -84
- data/spec/views/catalog/_facets.html.erb_spec.rb +0 -15
- data/spec/views/catalog/_index.html.erb_spec.rb +0 -62
- data/spec/views/catalog/_index_header.html.erb_spec.rb +0 -35
- data/spec/views/catalog/_previous_next_doc.html.erb_spec.rb +0 -22
- data/spec/views/catalog/_show.html.erb_spec.rb +0 -62
- data/spec/views/catalog/_thumbnail.html.erb_spec.rb +0 -38
@@ -0,0 +1,60 @@
|
|
1
|
+
// The email and sms forms are displayed inside a modal. When the form is submitted,
|
2
|
+
// this script closes the modal and puts the output on the main part of the page.
|
3
|
+
// By default it is rendering catalog/sms_success and catalog/email_succcess.
|
4
|
+
// These templates deliver a payload of the format used by turbo-streams.
|
5
|
+
// See https://turbo.hotwired.dev/handbook/streams
|
6
|
+
// That format allows a downstream application to override the template to define
|
7
|
+
// multiple customizable areas of the page to get updated.
|
8
|
+
export default class {
|
9
|
+
constructor(errorHandler, badRequestHandler, hideModal) {
|
10
|
+
this.errorHandler = errorHandler
|
11
|
+
this.badRequestHandler = badRequestHandler
|
12
|
+
this.hideModal = hideModal
|
13
|
+
}
|
14
|
+
|
15
|
+
get triggerFormSelector() {
|
16
|
+
return 'form[data-blacklight-modal~=trigger]'
|
17
|
+
}
|
18
|
+
|
19
|
+
bind() {
|
20
|
+
document.addEventListener('submit', (e) => {
|
21
|
+
if (e.target.matches(this.triggerFormSelector))
|
22
|
+
this.onSubmit(e)
|
23
|
+
})
|
24
|
+
}
|
25
|
+
|
26
|
+
// This is like a light-weight version of turbo that only supports append presently.
|
27
|
+
updateTurboStream(data) {
|
28
|
+
this.hideModal()
|
29
|
+
const domparser = new DOMParser();
|
30
|
+
const dom = domparser.parseFromString(data, "text/html")
|
31
|
+
dom.querySelectorAll("turbo-stream[action='append']").forEach((node) => {
|
32
|
+
const target = node.getAttribute('target')
|
33
|
+
const element = document.getElementById(target)
|
34
|
+
if (element)
|
35
|
+
element.append(node.querySelector('template').content.cloneNode(true))
|
36
|
+
else
|
37
|
+
console.error(`Unable to find an element on the page with and ID of "${target}""`)
|
38
|
+
})
|
39
|
+
}
|
40
|
+
|
41
|
+
onSubmit(e) {
|
42
|
+
e.preventDefault();
|
43
|
+
const form = e.target
|
44
|
+
fetch(form.action, {
|
45
|
+
body: new FormData(form),
|
46
|
+
headers: { "X-Requested-With": "XMLHttpRequest" }, // Ensures rails will return true when checking request.xhr?
|
47
|
+
method: form.method,
|
48
|
+
})
|
49
|
+
.then(response => {
|
50
|
+
if (response.status === 422) {
|
51
|
+
return response.text().then(content => this.badRequestHandler(content) )
|
52
|
+
}
|
53
|
+
if (!response.ok) {
|
54
|
+
throw new TypeError("Request failed");
|
55
|
+
}
|
56
|
+
response.text().then(content => this.updateTurboStream(content))
|
57
|
+
})
|
58
|
+
.catch(error => this.errorHandler(error))
|
59
|
+
}
|
60
|
+
}
|
@@ -1,67 +1,59 @@
|
|
1
|
-
Blacklight
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
const nodes = Array.prototype.slice.call(elements)
|
10
|
-
|
11
|
-
nodes.forEach(function(element) {
|
12
|
-
element.addEventListener('click', function(e) {
|
13
|
-
Blacklight.handleSearchContextMethod.call(e.currentTarget, e)
|
1
|
+
import Blacklight from './core'
|
2
|
+
|
3
|
+
const SearchContext = (() => {
|
4
|
+
Blacklight.doSearchContextBehavior = function() {
|
5
|
+
document.addEventListener('click', (e) => {
|
6
|
+
if (e.target.matches('[data-context-href]')) {
|
7
|
+
Blacklight.handleSearchContextMethod.call(e.target, e)
|
8
|
+
}
|
14
9
|
})
|
15
|
-
}
|
16
|
-
};
|
10
|
+
};
|
17
11
|
|
18
|
-
|
19
|
-
|
20
|
-
Blacklight.handleSearchContextMethod = function(event) {
|
21
|
-
if (typeof Blacklight.handle_search_context_method == 'function') {
|
22
|
-
console.warn("handle_search_context_method is deprecated. Use handleSearchContextMethod instead.");
|
23
|
-
return Blacklight.handle_search_context_method(event);
|
24
|
-
}
|
25
|
-
var link = this
|
12
|
+
Blacklight.csrfToken = () => document.querySelector('meta[name=csrf-token]')?.content
|
13
|
+
Blacklight.csrfParam = () => document.querySelector('meta[name=csrf-param]')?.content
|
26
14
|
|
27
|
-
//
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
let csrfParam = Blacklight.csrfParam()
|
32
|
-
let form = document.createElement('form')
|
33
|
-
form.method = 'post'
|
34
|
-
form.action = href
|
15
|
+
// this is the Rails.handleMethod with a couple adjustments, described inline:
|
16
|
+
// first, we're attaching this directly to the event handler, so we can check for meta-keys
|
17
|
+
Blacklight.handleSearchContextMethod = function(event) {
|
18
|
+
const link = this
|
35
19
|
|
20
|
+
// instead of using the normal href, we need to use the context href instead
|
21
|
+
let href = link.getAttribute('data-context-href')
|
22
|
+
let target = link.getAttribute('target')
|
23
|
+
let csrfToken = Blacklight.csrfToken()
|
24
|
+
let csrfParam = Blacklight.csrfParam()
|
25
|
+
let form = document.createElement('form')
|
26
|
+
form.method = 'post'
|
27
|
+
form.action = href
|
36
28
|
|
37
|
-
let formContent = `<input name="_method" value="post" type="hidden" />
|
38
|
-
<input name="redirect" value="${link.getAttribute('href')}" type="hidden" />`
|
39
29
|
|
40
|
-
|
41
|
-
|
42
|
-
form.dataset.turbo = "false";
|
43
|
-
target = '_blank';
|
44
|
-
}
|
30
|
+
let formContent = `<input name="_method" value="post" type="hidden" />
|
31
|
+
<input name="redirect" value="${link.getAttribute('href')}" type="hidden" />`
|
45
32
|
|
46
|
-
|
47
|
-
|
48
|
-
|
33
|
+
// check for meta keys.. if set, we should open in a new tab
|
34
|
+
if(event.metaKey || event.ctrlKey) {
|
35
|
+
target = '_blank';
|
36
|
+
}
|
49
37
|
|
50
|
-
|
51
|
-
|
52
|
-
|
38
|
+
if (csrfParam !== undefined && csrfToken !== undefined) {
|
39
|
+
formContent += `<input name="${csrfParam}" value="${csrfToken}" type="hidden" />`
|
40
|
+
}
|
53
41
|
|
54
|
-
|
42
|
+
// Must trigger submit by click on a button, else "submit" event handler won't work!
|
43
|
+
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement/submit
|
44
|
+
formContent += '<input type="submit" />'
|
55
45
|
|
56
|
-
|
57
|
-
form.innerHTML = formContent
|
58
|
-
document.body.appendChild(form)
|
59
|
-
form.querySelector('[type="submit"]').click()
|
46
|
+
if (target) { form.setAttribute('target', target); }
|
60
47
|
|
61
|
-
|
62
|
-
|
63
|
-
|
48
|
+
form.style.display = 'none'
|
49
|
+
form.innerHTML = formContent
|
50
|
+
document.body.appendChild(form)
|
51
|
+
form.querySelector('[type="submit"]').click()
|
52
|
+
|
53
|
+
event.preventDefault()
|
54
|
+
};
|
64
55
|
|
65
|
-
Blacklight.onLoad(function() {
|
66
56
|
Blacklight.doSearchContextBehavior();
|
67
|
-
})
|
57
|
+
})()
|
58
|
+
|
59
|
+
export default SearchContext
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Blacklight
|
3
4
|
# Pagination for facet values -- works by setting the limit to max
|
4
5
|
# displayable. You have to ask Solr for limit+1, to get enough
|
@@ -52,10 +53,10 @@ module Blacklight
|
|
52
53
|
|
53
54
|
def current_page
|
54
55
|
# A nil limit is unlimited, thus only one page.
|
55
|
-
if limit.nil? || limit.zero? #check for divide by zero
|
56
|
+
if limit.nil? || limit.zero? # check for divide by zero
|
56
57
|
1
|
57
58
|
else
|
58
|
-
@offset / limit + 1
|
59
|
+
(@offset / limit) + 1
|
59
60
|
end
|
60
61
|
end
|
61
62
|
|
@@ -4,6 +4,8 @@ module Blacklight
|
|
4
4
|
class Icon
|
5
5
|
attr_reader :icon_name, :aria_hidden, :label, :role, :additional_options
|
6
6
|
|
7
|
+
delegate :present?, to: :file
|
8
|
+
|
7
9
|
##
|
8
10
|
# @param [String, Symbol] icon_name
|
9
11
|
# @param [String] classes additional classes separated by a string
|
@@ -32,7 +34,7 @@ module Blacklight
|
|
32
34
|
end
|
33
35
|
|
34
36
|
def icon_label
|
35
|
-
I18n.
|
37
|
+
I18n.t("blacklight.icon.#{icon_name_context}", default: icon_name.to_s.titleize)
|
36
38
|
end
|
37
39
|
|
38
40
|
##
|
@@ -40,7 +42,7 @@ module Blacklight
|
|
40
42
|
def options
|
41
43
|
{
|
42
44
|
class: classes,
|
43
|
-
|
45
|
+
'aria-hidden': (true if aria_hidden)
|
44
46
|
}
|
45
47
|
end
|
46
48
|
|
data/app/models/bookmark.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Blacklight::Configurable
|
3
4
|
extend ActiveSupport::Concern
|
4
5
|
|
@@ -6,7 +7,7 @@ module Blacklight::Configurable
|
|
6
7
|
helper_method :blacklight_config if respond_to? :helper_method
|
7
8
|
end
|
8
9
|
|
9
|
-
#instance methods for blacklight_config, so get a deep copy of the class-level config
|
10
|
+
# instance methods for blacklight_config, so get a deep copy of the class-level config
|
10
11
|
def blacklight_config
|
11
12
|
@blacklight_config ||= self.class.blacklight_config.deep_copy
|
12
13
|
end
|
@@ -31,9 +32,9 @@ module Blacklight::Configurable
|
|
31
32
|
end
|
32
33
|
attr_writer :blacklight_config
|
33
34
|
|
34
|
-
#simply a convenience method for blacklight_config.configure
|
35
|
-
def configure_blacklight(
|
36
|
-
blacklight_config.configure(
|
35
|
+
# simply a convenience method for blacklight_config.configure
|
36
|
+
def configure_blacklight(...)
|
37
|
+
blacklight_config.configure(...)
|
37
38
|
end
|
38
39
|
|
39
40
|
##
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'active_model/conversion'
|
3
4
|
|
4
5
|
module Blacklight::Document
|
@@ -28,16 +29,6 @@ module Blacklight::Document
|
|
28
29
|
def find id
|
29
30
|
repository.find(id).documents.first
|
30
31
|
end
|
31
|
-
|
32
|
-
# In Rails 7.1+, needs this method
|
33
|
-
def composite_primary_key?
|
34
|
-
false
|
35
|
-
end
|
36
|
-
|
37
|
-
# In Rails 7.1+, needs this method
|
38
|
-
def has_query_constraints?
|
39
|
-
false
|
40
|
-
end
|
41
32
|
end
|
42
33
|
|
43
34
|
##
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require 'builder'
|
3
4
|
|
4
5
|
# This module provide Dublin Core export based on the document's semantic values
|
@@ -26,7 +27,7 @@ module Blacklight::Document::DublinCore
|
|
26
27
|
'xmlns:dc' => "http://purl.org/dc/elements/1.1/",
|
27
28
|
'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
|
28
29
|
'xsi:schemaLocation' => %(http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd)) do
|
29
|
-
to_semantic_values.select { |field, _values| dublin_core_field_name? field
|
30
|
+
to_semantic_values.select { |field, _values| dublin_core_field_name? field }.each do |field, values|
|
30
31
|
Array.wrap(values).each do |v|
|
31
32
|
xml.tag! "dc:#{field}", v
|
32
33
|
end
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
# == Transformation conventions
|
3
4
|
# The main use case for extensions is for transforming a Document to another
|
4
5
|
# format. Either to another type of Ruby object, or to an exportable string in
|
@@ -55,7 +56,7 @@ module Blacklight::Document::Export
|
|
55
56
|
# register it using Mime::Type.register_alias if it's not previously
|
56
57
|
# registered. This is a bit sketchy though.
|
57
58
|
def will_export_as(short_name, content_type = nil)
|
58
|
-
#Lookup in Rails Mime::Type, register if needed, otherwise take
|
59
|
+
# Lookup in Rails Mime::Type, register if needed, otherwise take
|
59
60
|
# content-type from registration if needed.
|
60
61
|
if defined?(Mime) && Mime[short_name.to_sym]
|
61
62
|
content_type ||= Mime[short_name.to_sym]
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Blacklight::Document
|
3
4
|
module SemanticFields
|
4
5
|
extend ActiveSupport::Concern
|
@@ -30,7 +31,7 @@ module Blacklight::Document
|
|
30
31
|
# but extensions should call super and modify hash returned, to avoid
|
31
32
|
# unintentionally erasing values provided by other extensions.
|
32
33
|
def to_semantic_values
|
33
|
-
@semantic_value_hash ||= self.class.field_semantics.each_with_object(Hash.new
|
34
|
+
@semantic_value_hash ||= self.class.field_semantics.each_with_object(Hash.new([])) do |(key, field_names), hash|
|
34
35
|
##
|
35
36
|
# Handles single string field_name or an array of field_names
|
36
37
|
value = Array.wrap(field_names).map { |field_name| self[field_name] }.flatten.compact
|
@@ -1,14 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Blacklight::User
|
3
|
-
|
4
|
-
#
|
5
|
-
#
|
6
|
-
|
7
|
-
|
8
|
-
return unless base.respond_to? :has_many
|
4
|
+
extend ActiveSupport::Concern
|
5
|
+
# SEE ALSO: The lib/blacklight/generator/user_generator.rb class for where this
|
6
|
+
# is generated into the hosting application.
|
7
|
+
included do
|
8
|
+
class_attribute :string_display_key
|
9
9
|
|
10
|
-
|
11
|
-
|
10
|
+
has_many :bookmarks, dependent: :destroy, as: :user
|
11
|
+
has_many :searches, dependent: :destroy, as: :user
|
12
12
|
end
|
13
13
|
|
14
14
|
def bookmarks_for_documents documents = []
|
@@ -28,4 +28,13 @@ module Blacklight::User
|
|
28
28
|
def existing_bookmark_for(document)
|
29
29
|
bookmarks_for_documents([document]).first
|
30
30
|
end
|
31
|
+
|
32
|
+
##
|
33
|
+
# @return [String] a user-displayable login/identifier for the user account
|
34
|
+
def to_s
|
35
|
+
string_display_key = self.class.string_display_key
|
36
|
+
return send(string_display_key) if respond_to?(string_display_key)
|
37
|
+
|
38
|
+
super
|
39
|
+
end
|
31
40
|
end
|
data/app/models/record_mailer.rb
CHANGED
@@ -1,17 +1,18 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
# Only works for documents with a #to_marc right now.
|
3
|
-
class RecordMailer <
|
4
|
+
class RecordMailer < ApplicationMailer
|
4
5
|
def email_record(documents, details, url_gen_params)
|
5
6
|
title = begin
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
7
|
+
title_field = details[:config].email.title_field
|
8
|
+
if title_field
|
9
|
+
[documents.first[title_field]].flatten.first
|
10
|
+
else
|
11
|
+
documents.first.to_semantic_values[:title]
|
12
|
+
end
|
13
|
+
rescue
|
14
|
+
I18n.t('blacklight.email.text.default_title')
|
15
|
+
end
|
15
16
|
|
16
17
|
subject = I18n.t('blacklight.email.text.subject',
|
17
18
|
count: documents.length,
|
@@ -22,7 +23,7 @@ class RecordMailer < ActionMailer::Base
|
|
22
23
|
@config = details[:config]
|
23
24
|
@url_gen_params = url_gen_params
|
24
25
|
|
25
|
-
mail(to: details[:to],
|
26
|
+
mail(to: details[:to], subject: subject)
|
26
27
|
end
|
27
28
|
|
28
29
|
def sms_record(documents, details, url_gen_params)
|
@@ -30,6 +31,6 @@ class RecordMailer < ActionMailer::Base
|
|
30
31
|
@config = details[:config]
|
31
32
|
@url_gen_params = url_gen_params
|
32
33
|
|
33
|
-
mail(to: details[:to], subject: "")
|
34
|
+
mail(to: details[:to], subject: "") # rubocop:disable Rails/I18nLocaleTexts
|
34
35
|
end
|
35
36
|
end
|
data/app/models/search.rb
CHANGED
@@ -3,13 +3,7 @@
|
|
3
3
|
class Search < ApplicationRecord
|
4
4
|
belongs_to :user, optional: true
|
5
5
|
|
6
|
-
|
7
|
-
if ::Rails.version.to_f >= 7.1
|
8
|
-
# non-deprecated coder: keyword arg for Rails 7.1+
|
9
|
-
serialize :query_params, coder: Blacklight::SearchParamsYamlCoder
|
10
|
-
else
|
11
|
-
serialize :query_params, Blacklight::SearchParamsYamlCoder
|
12
|
-
end
|
6
|
+
serialize :query_params, Blacklight::SearchParamsYamlCoder
|
13
7
|
|
14
8
|
# A Search instance is considered a saved search if it has a user_id.
|
15
9
|
def saved?
|
data/app/models/solr_document.rb
CHANGED
@@ -29,7 +29,7 @@ module Blacklight
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def remove_href(path = search_state)
|
32
|
-
view_context.search_action_path(path.reset_search(clause: path.clause_params.except(key))
|
32
|
+
view_context.search_action_path(path.reset_search(clause: path.clause_params.except(key)))
|
33
33
|
end
|
34
34
|
|
35
35
|
private
|
@@ -11,26 +11,18 @@ module Blacklight
|
|
11
11
|
# @param [SolrDocument] document
|
12
12
|
# @param [ActionView::Base] view_context scope for linking and generating urls
|
13
13
|
# @param [Blacklight::Configuration] configuration
|
14
|
-
def initialize(document, view_context, configuration = view_context.blacklight_config
|
14
|
+
def initialize(document, view_context, configuration = view_context.blacklight_config)
|
15
15
|
@document = document
|
16
16
|
@view_context = view_context
|
17
17
|
@configuration = configuration
|
18
|
-
@view_config = view_config
|
19
|
-
@field_presenter_options = field_presenter_options
|
20
18
|
end
|
21
19
|
|
22
20
|
# @return [Hash<String,Configuration::Field>] all the fields for this index view that should be rendered
|
23
|
-
def fields_to_render
|
24
|
-
unless block_given?
|
25
|
-
return to_enum(:fields_to_render, document_fields, **kwargs) unless method(:fields_to_render).arity.zero?
|
21
|
+
def fields_to_render
|
22
|
+
return to_enum(:fields_to_render) unless block_given?
|
26
23
|
|
27
|
-
|
28
|
-
|
29
|
-
return to_enum(:fields_to_render)
|
30
|
-
end
|
31
|
-
|
32
|
-
document_fields.each do |name, field_config|
|
33
|
-
field_presenter = field_presenter(field_config, kwargs)
|
24
|
+
fields.each do |name, field_config|
|
25
|
+
field_presenter = field_presenter(field_config)
|
34
26
|
|
35
27
|
next unless field_presenter.render_field? && field_presenter.any?
|
36
28
|
|
@@ -38,21 +30,10 @@ module Blacklight
|
|
38
30
|
end
|
39
31
|
end
|
40
32
|
|
41
|
-
def field_presenters
|
42
|
-
unless block_given?
|
43
|
-
return to_enum(:field_presenters, document_fields, **kwargs) unless method(:field_presenters).arity.zero?
|
44
|
-
|
45
|
-
Deprecation.warn(self.class, 'In Blacklight 8, Blacklight::DocumentPresenter#field_presenters accepts additional arguments')
|
46
|
-
|
47
|
-
return to_enum(:field_presenters)
|
48
|
-
end
|
33
|
+
def field_presenters
|
34
|
+
return to_enum(:field_presenters) unless block_given?
|
49
35
|
|
50
|
-
|
51
|
-
Deprecation.warn(self.class, 'In Blacklight 8, Blacklight::DocumentPresenter#fields_to_render accept additional arguments')
|
52
|
-
fields_to_render.each { |_, _, config| yield config }
|
53
|
-
else
|
54
|
-
fields_to_render(document_fields, **kwargs).each { |_, _, config| yield config }
|
55
|
-
end
|
36
|
+
fields_to_render.each { |_, _, config| yield config }
|
56
37
|
end
|
57
38
|
|
58
39
|
##
|
@@ -98,10 +79,8 @@ module Blacklight
|
|
98
79
|
|
99
80
|
fields += ['format'] if fields.empty? # backwards compatibility with the old default value for display_type_field
|
100
81
|
|
101
|
-
display_type = fields.lazy.map { |field| field_presenter(
|
102
|
-
display_type
|
103
|
-
|
104
|
-
display_type || []
|
82
|
+
display_type = fields.lazy.map { |field| field_presenter(display_fields[field] || Configuration::NullDisplayField.new(field)) }.detect(&:any?)&.values
|
83
|
+
display_type || Array(default)
|
105
84
|
end
|
106
85
|
|
107
86
|
##
|
@@ -137,11 +116,11 @@ module Blacklight
|
|
137
116
|
end
|
138
117
|
|
139
118
|
def view_config
|
140
|
-
|
119
|
+
show_view_config
|
141
120
|
end
|
142
121
|
|
143
122
|
def show_view_config
|
144
|
-
configuration.view_config(:show
|
123
|
+
configuration.view_config(:show)
|
145
124
|
end
|
146
125
|
|
147
126
|
def inspect
|
@@ -151,33 +130,27 @@ module Blacklight
|
|
151
130
|
|
152
131
|
private
|
153
132
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
def has_value?(field_config)
|
160
|
-
field_presenter(field_config).any?
|
133
|
+
# @return [Hash<String,Configuration::Field>]
|
134
|
+
def fields
|
135
|
+
@fields ||= Array(display_type).inject(display_fields) do |fields, display_type|
|
136
|
+
fields.merge(display_fields(configuration.for_display_type(display_type)))
|
137
|
+
end
|
161
138
|
end
|
162
|
-
deprecation_deprecate has_value?: 'Use FieldPresenter#any?'
|
163
139
|
|
164
|
-
def
|
165
|
-
|
140
|
+
def display_fields(config = configuration)
|
141
|
+
config[view_config.document_fields_key || :index_fields]
|
166
142
|
end
|
167
|
-
deprecation_deprecate field_values: 'Use #field_value'
|
168
143
|
|
169
|
-
def
|
170
|
-
|
144
|
+
def field_config(field)
|
145
|
+
fields.fetch(field) { Configuration::NullDisplayField.new(field) }
|
171
146
|
end
|
172
|
-
deprecation_deprecate retrieve_values: 'Use FieldPresenter#values'
|
173
147
|
|
174
148
|
def field_presenter(field_config, options = {})
|
175
|
-
|
176
|
-
presenter_class.new(view_context, document, field_config, options.merge(field_presenter_options))
|
149
|
+
field_config.presenter.new(view_context, document, field_config, field_presenter_options.merge(options))
|
177
150
|
end
|
178
151
|
|
179
152
|
def field_presenter_options
|
180
|
-
|
153
|
+
{}
|
181
154
|
end
|
182
155
|
end
|
183
156
|
end
|