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
@@ -3,7 +3,7 @@
|
|
3
3
|
module Blacklight
|
4
4
|
module Response
|
5
5
|
# Render spellcheck results for a search query
|
6
|
-
class ViewTypeButtonComponent <
|
6
|
+
class ViewTypeButtonComponent < ViewComponent::Base
|
7
7
|
with_collection_parameter :view
|
8
8
|
# @param [Blacklight::Configuration::View] view
|
9
9
|
def initialize(view:, key: nil, selected: false, search_state: nil, classes: 'btn btn-outline-secondary btn-icon')
|
@@ -18,15 +18,11 @@ module Blacklight
|
|
18
18
|
return render(@view.icon.new) if @view.icon.is_a?(Class)
|
19
19
|
return render(@view.icon) if @view.icon.is_a?(ViewComponent::Base)
|
20
20
|
|
21
|
-
|
22
|
-
helpers.render_view_type_group_icon(@view.icon || @key)
|
23
|
-
end
|
21
|
+
helpers.blacklight_icon(@view.icon || @key)
|
24
22
|
end
|
25
23
|
|
26
24
|
def label
|
27
|
-
|
28
|
-
helpers.view_label(@key)
|
29
|
-
end
|
25
|
+
@view.display_label
|
30
26
|
end
|
31
27
|
|
32
28
|
def url
|
@@ -3,11 +3,11 @@
|
|
3
3
|
module Blacklight
|
4
4
|
module Response
|
5
5
|
# Render spellcheck results for a search query
|
6
|
-
class ViewTypeComponent <
|
6
|
+
class ViewTypeComponent < ViewComponent::Base
|
7
7
|
renders_many :views, 'Blacklight::Response::ViewTypeButtonComponent'
|
8
8
|
|
9
9
|
# @param [Blacklight::Response] response
|
10
|
-
def initialize(response:, views: {},
|
10
|
+
def initialize(response:, search_state:, views: {}, selected: nil)
|
11
11
|
@response = response
|
12
12
|
@views = views
|
13
13
|
@search_state = search_state
|
@@ -18,14 +18,12 @@ module Blacklight
|
|
18
18
|
return if views.any?
|
19
19
|
|
20
20
|
@views.each do |key, config|
|
21
|
-
|
21
|
+
view(key: key, view: config, selected: @selected == key, search_state: @search_state)
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
25
|
def render?
|
26
|
-
|
27
|
-
helpers.has_alternative_views?
|
28
|
-
end
|
26
|
+
views.many? && !@response.empty?
|
29
27
|
end
|
30
28
|
end
|
31
29
|
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<% facet_group_names.each do |groupname| %>
|
2
|
+
<% fields = facet_fields_in_group(groupname) %>
|
3
|
+
<%= render group_component_class.new(id: groupname, fields: fields, response: response) do |component| %>
|
4
|
+
<% component.body do %>
|
5
|
+
<%= render Blacklight::FacetComponent.with_collection(fields, response: response) %>
|
6
|
+
<% end %>
|
7
|
+
<% end %>
|
8
|
+
<% end %>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Blacklight
|
4
|
+
module Search
|
5
|
+
class SidebarComponent < Blacklight::Component
|
6
|
+
def initialize(blacklight_config:, response:, view_config:)
|
7
|
+
@blacklight_config = blacklight_config
|
8
|
+
@response = response
|
9
|
+
@group_component_class = view_config.facet_group_component || Blacklight::Response::FacetGroupComponent
|
10
|
+
end
|
11
|
+
|
12
|
+
attr_reader :group_component_class, :response
|
13
|
+
|
14
|
+
delegate :facet_group_names, :facet_fields_in_group, to: :@blacklight_config
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
|
-
<%=
|
2
|
-
<%=
|
1
|
+
<%= form_with url: @url, local: true, method: @method, class: @classes.join(' '), scope: @prefix, role: 'search', aria: { label: scoped_t('submit') }, **@form_options do |f| %>
|
2
|
+
<%= render Blacklight::HiddenSearchStateComponent.new(params: @params) %>
|
3
3
|
<% if search_fields.length > 1 %>
|
4
|
-
|
4
|
+
<%= f.label :search_field, scoped_t('search_field.label'), class: 'sr-only visually-hidden' %>
|
5
5
|
<% end %>
|
6
6
|
<% before_input_groups.each do |input_group| %>
|
7
7
|
<%= input_group %>
|
@@ -10,22 +10,27 @@
|
|
10
10
|
<%= prepend %>
|
11
11
|
|
12
12
|
<% if search_fields.length > 1 %>
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
13
|
+
<%= f.select(:search_field,
|
14
|
+
options_for_select(search_fields, h(@search_field)),
|
15
|
+
{},
|
16
|
+
title: scoped_t('search_field.title'),
|
17
|
+
class: "custom-select form-select search-field") %>
|
18
18
|
<% elsif search_fields.length == 1 %>
|
19
|
-
<%=
|
19
|
+
<%= f.hidden_field :search_field, value: search_fields.first.last %>
|
20
20
|
<% end %>
|
21
21
|
|
22
|
-
|
23
|
-
|
22
|
+
<%= f.label @query_param, scoped_t('search.label'), class: 'sr-only visually-hidden' %>
|
23
|
+
<% if autocomplete_path.present? %>
|
24
|
+
<auto-complete src="<%= autocomplete_path %>" for="autocomplete-popup" class="search-autocomplete-wrapper">
|
25
|
+
<%= f.search_field @query_param, value: @q, placeholder: scoped_t('search.placeholder'), class: "search-q q form-control rounded-#{search_fields.length > 1 ? '0' : 'left'}", autofocus: @autofocus, aria: { label: scoped_t('search.label'), autocomplete: 'list', controls: 'autocomplete-popup' } %>
|
26
|
+
<ul id="autocomplete-popup" role="listbox" aria-label="<%= scoped_t('search.label') %>"></ul>
|
27
|
+
</auto-complete>
|
28
|
+
<% else %>
|
29
|
+
<%= f.search_field @query_param, value: @q, placeholder: scoped_t('search.placeholder'), class: "search-q q form-control rounded-#{search_fields.length > 1 ? '0' : 'left'}", autofocus: @autofocus, aria: { label: scoped_t('search.label') } %>
|
30
|
+
<% end %>
|
24
31
|
|
25
|
-
|
26
|
-
|
27
|
-
<%= search_button || render(Blacklight::SearchButtonComponent.new(id: "#{@prefix}search", text: scoped_t('submit'))) %>
|
28
|
-
</span>
|
32
|
+
<%= append %>
|
33
|
+
<%= search_button || render(Blacklight::SearchButtonComponent.new(id: "#{@prefix}search", text: scoped_t('submit'))) %>
|
29
34
|
</div>
|
30
35
|
<% end %>
|
31
36
|
|
@@ -2,8 +2,6 @@
|
|
2
2
|
|
3
3
|
module Blacklight
|
4
4
|
class SearchBarComponent < Blacklight::Component
|
5
|
-
include Blacklight::ContentAreasShim
|
6
|
-
|
7
5
|
renders_one :append
|
8
6
|
renders_one :prepend
|
9
7
|
renders_one :search_button
|
@@ -12,10 +10,10 @@ module Blacklight
|
|
12
10
|
# rubocop:disable Metrics/ParameterLists
|
13
11
|
def initialize(
|
14
12
|
url:, params:,
|
15
|
-
advanced_search_url: nil,
|
13
|
+
advanced_search_url: nil,
|
16
14
|
classes: ['search-query-form'], prefix: nil,
|
17
15
|
method: 'GET', q: nil, query_param: :q,
|
18
|
-
search_field: nil,
|
16
|
+
search_field: nil, autocomplete_path: nil,
|
19
17
|
autofocus: nil, i18n: { scope: 'blacklight.search.form' },
|
20
18
|
form_options: {}
|
21
19
|
)
|
@@ -30,14 +28,8 @@ module Blacklight
|
|
30
28
|
@method = method
|
31
29
|
@autocomplete_path = autocomplete_path
|
32
30
|
@autofocus = autofocus
|
33
|
-
@search_fields = search_fields
|
34
31
|
@i18n = i18n
|
35
32
|
@form_options = form_options
|
36
|
-
|
37
|
-
return if presenter.nil?
|
38
|
-
|
39
|
-
Deprecation.warn(self, 'SearchBarComponent no longer uses a SearchBarPresenter, the presenter: param will be removed in 8.0. ' \
|
40
|
-
'Set advanced_search.enabled, autocomplete_enabled, and enable_search_bar_autofocus on BlacklightConfiguration')
|
41
33
|
end
|
42
34
|
# rubocop:enable Metrics/ParameterLists
|
43
35
|
|
@@ -74,12 +66,6 @@ module Blacklight
|
|
74
66
|
helpers.blacklight_config
|
75
67
|
end
|
76
68
|
|
77
|
-
def render_hash_as_hidden_fields(*args)
|
78
|
-
Deprecation.silence(Blacklight::HashAsHiddenFieldsHelperBehavior) do
|
79
|
-
helpers.render_hash_as_hidden_fields(*args)
|
80
|
-
end
|
81
|
-
end
|
82
|
-
|
83
69
|
def scoped_t(key, **args)
|
84
70
|
t(key, default: t(key, scope: 'blacklight.search.form'), **@i18n, **args)
|
85
71
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Blacklight
|
4
|
-
class SearchButtonComponent < ::
|
4
|
+
class SearchButtonComponent < Blacklight::Component
|
5
5
|
def initialize(text:, id:)
|
6
6
|
@text = text
|
7
7
|
@id = id
|
@@ -9,8 +9,8 @@ module Blacklight
|
|
9
9
|
|
10
10
|
def call
|
11
11
|
tag.button(class: 'btn btn-primary search-btn', type: 'submit', id: @id) do
|
12
|
-
tag.span(@text, class: "submit-search-text") +
|
13
|
-
|
12
|
+
tag.span(@text, class: "visually-hidden-sm me-sm-1 submit-search-text") +
|
13
|
+
render(Blacklight::Icons::SearchComponent.new)
|
14
14
|
end
|
15
15
|
end
|
16
16
|
end
|
@@ -13,22 +13,56 @@ module Blacklight
|
|
13
13
|
@search_context.present? && (@search_context[:prev] || @search_context[:next])
|
14
14
|
end
|
15
15
|
|
16
|
+
##
|
17
|
+
# Displays "showing X of Y items" message.
|
18
|
+
#
|
19
|
+
# @return [String]
|
16
20
|
def item_page_entry_info
|
17
|
-
|
18
|
-
|
19
|
-
|
21
|
+
t('blacklight.search.entry_pagination_info.other', current: number_with_delimiter(count),
|
22
|
+
total: number_with_delimiter(total),
|
23
|
+
count: total).html_safe
|
20
24
|
end
|
21
25
|
|
22
|
-
def link_to_previous_document(
|
23
|
-
|
24
|
-
|
26
|
+
def link_to_previous_document(previous_document = nil, classes: 'previous', **link_opts)
|
27
|
+
previous_document ||= @search_context[:prev]
|
28
|
+
link_opts = session_tracking_params(previous_document, count - 1, per_page: per_page, search_id: search_id).merge(class: classes, rel: 'prev').merge(link_opts)
|
29
|
+
link_to_unless previous_document.nil?, raw(t('views.pagination.previous')), url_for_document(previous_document), link_opts do
|
30
|
+
tag.span raw(t('views.pagination.previous')), class: 'previous'
|
25
31
|
end
|
26
32
|
end
|
27
33
|
|
28
|
-
def link_to_next_document(
|
29
|
-
|
30
|
-
|
34
|
+
def link_to_next_document(next_document = nil, classes: 'next', **link_opts)
|
35
|
+
next_document ||= @search_context[:next]
|
36
|
+
link_opts = session_tracking_params(next_document, count + 1, per_page: per_page, search_id: search_id).merge(class: classes, rel: 'next').merge(link_opts)
|
37
|
+
link_to_unless next_document.nil?, raw(t('views.pagination.next')), url_for_document(next_document), link_opts do
|
38
|
+
tag.span raw(t('views.pagination.next')), class: 'next'
|
31
39
|
end
|
32
40
|
end
|
41
|
+
|
42
|
+
private
|
43
|
+
|
44
|
+
def count
|
45
|
+
@search_session['counter'].to_i
|
46
|
+
end
|
47
|
+
|
48
|
+
def per_page
|
49
|
+
@search_session['per_page']
|
50
|
+
end
|
51
|
+
|
52
|
+
def total
|
53
|
+
@search_session['total'].to_i
|
54
|
+
end
|
55
|
+
|
56
|
+
def search_id
|
57
|
+
controller.current_search_session&.id
|
58
|
+
end
|
59
|
+
|
60
|
+
def session_tracking_params(...)
|
61
|
+
helpers.session_tracking_params(...)
|
62
|
+
end
|
63
|
+
|
64
|
+
def url_for_document(...)
|
65
|
+
helpers.search_state.url_for_document(...)
|
66
|
+
end
|
33
67
|
end
|
34
68
|
end
|
@@ -12,9 +12,11 @@ module Blacklight
|
|
12
12
|
# Get the path to the search action with any parameters (e.g. view type)
|
13
13
|
# that should be persisted across search sessions.
|
14
14
|
def start_over_path query_params = params
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
h = {}
|
16
|
+
current_index_view_type = helpers.document_index_view_type(query_params)
|
17
|
+
h[:view] = current_index_view_type unless current_index_view_type == helpers.default_document_index_view_type
|
18
|
+
|
19
|
+
helpers.search_action_path(h)
|
18
20
|
end
|
19
21
|
end
|
20
22
|
end
|
@@ -2,9 +2,12 @@
|
|
2
2
|
|
3
3
|
module Blacklight
|
4
4
|
module System
|
5
|
-
class DropdownComponent <
|
6
|
-
renders_one :button,
|
7
|
-
|
5
|
+
class DropdownComponent < ViewComponent::Base
|
6
|
+
renders_one :button, (lambda do |classes:, label:|
|
7
|
+
button_tag class: classes, aria: { expanded: false }, data: { toggle: 'dropdown', 'bs-toggle': 'dropdown' } do
|
8
|
+
safe_join([label, content_tag(:span, '', class: 'caret')])
|
9
|
+
end
|
10
|
+
end)
|
8
11
|
renders_many :options, (lambda do |text:, url:, selected: false|
|
9
12
|
link_to(text, url, class: "dropdown-item #{'active' if selected}", role: 'menuitem', aria: { current: ('page' if selected) })
|
10
13
|
end)
|
@@ -26,11 +29,11 @@ module Blacklight
|
|
26
29
|
end
|
27
30
|
|
28
31
|
def before_render
|
29
|
-
|
32
|
+
button(classes: 'btn btn-outline-secondary dropdown-toggle', label: button_label) unless button
|
30
33
|
|
31
34
|
return if options.any?
|
32
35
|
|
33
|
-
|
36
|
+
options(@choices.map do |option|
|
34
37
|
text, value = option_text_and_value(option)
|
35
38
|
{ text: text, url: helpers.url_for(@search_state.params_for_search(@param => value)), selected: @selected == value }
|
36
39
|
end)
|
@@ -1,4 +1,6 @@
|
|
1
|
-
<div class="alert
|
1
|
+
<div class="alert <%= @classes %>">
|
2
2
|
<%= message %>
|
3
|
-
|
3
|
+
<%= tag.button_tag button_contents, type: "button", class: "btn-close",
|
4
|
+
data: { dismiss: "alert", bs_dismiss: "alert" },
|
5
|
+
aria: { label: "Close" } %>
|
4
6
|
</div>
|
@@ -2,18 +2,27 @@
|
|
2
2
|
|
3
3
|
module Blacklight
|
4
4
|
module System
|
5
|
-
class FlashMessageComponent <
|
5
|
+
class FlashMessageComponent < ViewComponent::Base
|
6
6
|
renders_one :message
|
7
7
|
|
8
8
|
with_collection_parameter :message
|
9
9
|
|
10
|
-
def initialize(message: nil
|
10
|
+
def initialize(type:, message: nil)
|
11
11
|
@message = message
|
12
12
|
@classes = alert_class(type)
|
13
13
|
end
|
14
14
|
|
15
15
|
def before_render
|
16
|
-
|
16
|
+
message { @message } if @message
|
17
|
+
end
|
18
|
+
|
19
|
+
# Bootstrap 4 requires the span, but Bootstrap 5 should not have it.
|
20
|
+
# See https://getbootstrap.com/docs/4.6/components/alerts/#dismissing
|
21
|
+
# https://getbootstrap.com/docs/5.1/components/alerts/#dismissing
|
22
|
+
def button_contents
|
23
|
+
return if helpers.controller.blacklight_config.bootstrap_version == 5
|
24
|
+
|
25
|
+
tag.span '×'.html_safe, aria: { hidden: true }
|
17
26
|
end
|
18
27
|
|
19
28
|
def alert_class(type)
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<h1 class="modal-title"><%= title %></h1>
|
7
7
|
<% end) %>
|
8
8
|
|
9
|
-
<button type="button" class="blacklight-modal-close btn-close close" data-
|
9
|
+
<button type="button" class="blacklight-modal-close btn-close close" data-bl-dismiss="modal" aria-label="<%= t('blacklight.modal.close') %>">
|
10
10
|
<span aria-hidden="true" class="visually-hidden">×</span>
|
11
11
|
</button>
|
12
12
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<nav class="navbar navbar-expand-md navbar-dark bg-dark topbar" role="navigation">
|
2
2
|
<div class="<%= container_classes %>">
|
3
|
-
<%= logo_link %>
|
3
|
+
<%= link_to application_name, blacklight_config.logo_link, class: 'mb-0 navbar-brand navbar-logo' %>
|
4
4
|
<button class="navbar-toggler navbar-toggler-right" type="button" data-toggle="collapse" data-bs-toggle="collapse" data-target="#user-util-collapse" data-bs-target="#user-util-collapse" aria-controls="user-util-collapse" aria-expanded="false" aria-label="Toggle navigation">
|
5
5
|
<span class="navbar-toggler-icon"></span>
|
6
6
|
</button>
|
@@ -9,9 +9,5 @@ module Blacklight
|
|
9
9
|
attr_reader :blacklight_config
|
10
10
|
|
11
11
|
delegate :application_name, :container_classes, to: :helpers
|
12
|
-
|
13
|
-
def logo_link(title: application_name)
|
14
|
-
link_to title, blacklight_config.logo_link, class: 'mb-0 navbar-brand navbar-logo'
|
15
|
-
end
|
16
12
|
end
|
17
13
|
end
|
@@ -1,5 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
2
|
+
|
3
|
+
# NOTE: that while this is mostly restful routing, the #update and #destroy actions
|
3
4
|
# take the Solr document ID as the :id, NOT the id of the actual Bookmark action.
|
4
5
|
module Blacklight::Bookmarks
|
5
6
|
extend ActiveSupport::Concern
|
@@ -20,6 +21,7 @@ module Blacklight::Bookmarks
|
|
20
21
|
|
21
22
|
blacklight_config.show.document_actions[:bookmark].if = false if blacklight_config.show.document_actions[:bookmark]
|
22
23
|
blacklight_config.show.document_actions[:sms].if = false if blacklight_config.show.document_actions[:sms]
|
24
|
+
blacklight_config.search_builder_class = Blacklight::BookmarksSearchBuilder
|
23
25
|
end
|
24
26
|
|
25
27
|
def action_documents
|
@@ -38,15 +40,14 @@ module Blacklight::Bookmarks
|
|
38
40
|
search_catalog_url(*args)
|
39
41
|
end
|
40
42
|
|
43
|
+
# @return [Hash] a hash of context information to pass through to the search service
|
44
|
+
def search_service_context
|
45
|
+
{ bookmarks: @bookmarks }
|
46
|
+
end
|
47
|
+
|
41
48
|
def index
|
42
49
|
@bookmarks = token_or_current_or_guest_user.bookmarks
|
43
|
-
|
44
|
-
@response, deprecated_document_list = search_service.fetch(bookmark_ids)
|
45
|
-
@document_list = ActiveSupport::Deprecation::DeprecatedObjectProxy.new(
|
46
|
-
deprecated_document_list,
|
47
|
-
"The @document_list instance variable is now deprecated",
|
48
|
-
ActiveSupport::Deprecation.new("8.0", "blacklight")
|
49
|
-
)
|
50
|
+
@response = search_service.search_results
|
50
51
|
|
51
52
|
respond_to do |format|
|
52
53
|
format.html {}
|
@@ -119,7 +120,7 @@ module Blacklight::Bookmarks
|
|
119
120
|
redirect_back fallback_location: bookmarks_path, notice: I18n.t('blacklight.bookmarks.remove.success')
|
120
121
|
end
|
121
122
|
elsif request.xhr?
|
122
|
-
head
|
123
|
+
head :internal_server_error # ajaxy request needs no redirect and should not have flash set
|
123
124
|
else
|
124
125
|
redirect_back fallback_location: bookmarks_path, flash: { error: I18n.t('blacklight.bookmarks.remove.failure') }
|
125
126
|
end
|
@@ -1,44 +1,29 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
2
3
|
module Blacklight::Catalog
|
3
4
|
extend ActiveSupport::Concern
|
4
5
|
|
5
6
|
# MimeResponds is part of ActionController::Base, but not ActionController::API
|
6
7
|
include ActionController::MimeResponds
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
end
|
11
|
-
|
12
|
-
include Blacklight::Facet
|
9
|
+
include Blacklight::Configurable
|
10
|
+
include Blacklight::SearchContext
|
13
11
|
include Blacklight::Searchable
|
14
12
|
|
15
|
-
extend Deprecation
|
16
|
-
|
17
13
|
# The following code is executed when someone includes blacklight::catalog in their
|
18
14
|
# own controller.
|
19
15
|
included do
|
20
16
|
if respond_to? :helper_method
|
21
|
-
helper_method :sms_mappings, :has_search_parameters
|
17
|
+
helper_method :sms_mappings, :has_search_parameters?
|
18
|
+
helper_method :search_facet_path
|
22
19
|
end
|
23
20
|
|
24
|
-
helper Blacklight::Facet if respond_to? :helper
|
25
|
-
|
26
|
-
# The index action will more than likely throw this one.
|
27
|
-
# Example: when the standard query parser is used, and a user submits a "bad" query.
|
28
|
-
rescue_from Blacklight::Exceptions::InvalidRequest, with: :handle_request_error
|
29
|
-
|
30
21
|
record_search_parameters
|
31
22
|
end
|
32
23
|
|
33
24
|
# get search results from the solr index
|
34
25
|
def index
|
35
|
-
|
36
|
-
|
37
|
-
@document_list = ActiveSupport::Deprecation::DeprecatedObjectProxy.new(
|
38
|
-
deprecated_document_list,
|
39
|
-
'The @document_list instance variable is deprecated; use @response.documents instead.',
|
40
|
-
ActiveSupport::Deprecation.new("8.0", "blacklight")
|
41
|
-
)
|
26
|
+
@response = search_service.search_results
|
42
27
|
|
43
28
|
respond_to do |format|
|
44
29
|
format.html { store_preferred_view }
|
@@ -56,12 +41,7 @@ module Blacklight::Catalog
|
|
56
41
|
# get a single document from the index
|
57
42
|
# to add responses for formats other than html or json see _Blacklight::Document::Export_
|
58
43
|
def show
|
59
|
-
|
60
|
-
@response = ActiveSupport::Deprecation::DeprecatedObjectProxy.new(
|
61
|
-
deprecated_response,
|
62
|
-
'The @response instance variable is deprecated; use @document.response instead.',
|
63
|
-
ActiveSupport::Deprecation.new("8.0", "blacklight")
|
64
|
-
)
|
44
|
+
@document = search_service.fetch(params[:id])
|
65
45
|
|
66
46
|
respond_to do |format|
|
67
47
|
format.html { @search_context = setup_next_and_previous_documents }
|
@@ -78,7 +58,7 @@ module Blacklight::Catalog
|
|
78
58
|
def raw
|
79
59
|
raise(ActionController::RoutingError, 'Not Found') unless blacklight_config.raw_endpoint.enabled
|
80
60
|
|
81
|
-
|
61
|
+
@document = search_service.fetch(params[:id])
|
82
62
|
render json: @document
|
83
63
|
end
|
84
64
|
|
@@ -106,7 +86,7 @@ module Blacklight::Catalog
|
|
106
86
|
@response = search_service.facet_field_response(@facet.key)
|
107
87
|
@display_facet = @response.aggregations[@facet.field]
|
108
88
|
|
109
|
-
@presenter =
|
89
|
+
@presenter = @facet.presenter.new(@facet, @display_facet, view_context)
|
110
90
|
@pagination = @presenter.paginator
|
111
91
|
respond_to do |format|
|
112
92
|
format.html do
|
@@ -126,21 +106,19 @@ module Blacklight::Catalog
|
|
126
106
|
end
|
127
107
|
end
|
128
108
|
|
109
|
+
# Returns the dropdown list for autocomplete
|
129
110
|
def suggest
|
130
|
-
|
131
|
-
|
132
|
-
render json: suggestions_service.suggestions
|
133
|
-
end
|
134
|
-
end
|
111
|
+
@suggestions = suggestions_service.suggestions
|
112
|
+
render 'suggest', layout: false
|
135
113
|
end
|
136
114
|
|
137
115
|
# @return [Array] first value is a Blacklight::Solr::Response and the second
|
138
116
|
# is a list of documents
|
139
117
|
def action_documents
|
140
|
-
|
118
|
+
@documents = search_service.fetch(Array(params[:id]))
|
141
119
|
raise Blacklight::Exceptions::RecordNotFound if @documents.blank?
|
142
120
|
|
143
|
-
|
121
|
+
@documents
|
144
122
|
end
|
145
123
|
|
146
124
|
def action_success_redirect_path
|
@@ -154,34 +132,14 @@ module Blacklight::Catalog
|
|
154
132
|
params[:search_field].present? || search_state.has_constraints?
|
155
133
|
end
|
156
134
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
# available), and used in display (with @response available) to create
|
165
|
-
# a facet paginator with the right limit.
|
166
|
-
def facet_limit_for(facet_field)
|
167
|
-
facet = blacklight_config.facet_fields[facet_field]
|
168
|
-
return if facet.blank?
|
169
|
-
|
170
|
-
if facet.limit && @response && @response.aggregations[facet.field]
|
171
|
-
limit = @response.aggregations[facet.field].limit
|
172
|
-
|
173
|
-
if limit.nil? # we didn't get or a set a limit, so infer one.
|
174
|
-
facet.limit if facet.limit != true
|
175
|
-
elsif limit == -1 # limit -1 is solr-speak for unlimited
|
176
|
-
nil
|
177
|
-
else
|
178
|
-
limit.to_i - 1 # we added 1 to find out if we needed to paginate
|
179
|
-
end
|
180
|
-
elsif facet.limit
|
181
|
-
facet.limit == true ? DEFAULT_FACET_LIMIT : facet.limit
|
182
|
-
end
|
135
|
+
def search_facet_path(options = {})
|
136
|
+
opts = search_state
|
137
|
+
.to_h
|
138
|
+
.merge(action: "facet", only_path: true)
|
139
|
+
.merge(options)
|
140
|
+
.except(:page)
|
141
|
+
url_for opts
|
183
142
|
end
|
184
|
-
deprecation_deprecate facet_limit_for: 'moving to private logic in Blacklight::FacetFieldPresenter'
|
185
143
|
|
186
144
|
private
|
187
145
|
|
@@ -325,26 +283,6 @@ module Blacklight::Catalog
|
|
325
283
|
action_name == 'show' ? 'catalog_result' : super
|
326
284
|
end
|
327
285
|
|
328
|
-
# when a method throws a Blacklight::Exceptions::InvalidRequest, this method is executed.
|
329
|
-
def handle_request_error(exception)
|
330
|
-
# Rails own code will catch and give usual Rails error page with stack trace
|
331
|
-
raise exception if Rails.env.development? || Rails.env.test?
|
332
|
-
|
333
|
-
flash_notice = I18n.t('blacklight.search.errors.request_error')
|
334
|
-
|
335
|
-
# If there are errors coming from the index page, we want to trap those sensibly
|
336
|
-
|
337
|
-
if flash[:notice] == flash_notice
|
338
|
-
logger&.error "Cowardly aborting rsolr_request_error exception handling, because we redirected to a page that raises another exception"
|
339
|
-
raise exception
|
340
|
-
end
|
341
|
-
|
342
|
-
logger&.error exception
|
343
|
-
|
344
|
-
flash[:notice] = flash_notice
|
345
|
-
redirect_to search_action_url
|
346
|
-
end
|
347
|
-
|
348
286
|
def blacklight_advanced_search_form_search_service
|
349
287
|
form_search_state = search_state_class.new(blacklight_advanced_search_form_params, blacklight_config, self)
|
350
288
|
|