blacklight 6.21.0 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.npmignore +23 -0
- data/.rubocop.yml +40 -16
- data/.rubocop_todo.yml +479 -375
- data/.solr_wrapper.yml +9 -2
- data/.travis.yml +23 -27
- data/Gemfile +3 -4
- data/README.md +22 -5
- data/Rakefile +3 -2
- data/VERSION +1 -1
- data/Vagrantfile +2 -0
- data/app/assets/images/blacklight/list.svg +1 -0
- data/app/assets/images/blacklight/search.svg +1 -0
- data/app/assets/javascripts/blacklight/blacklight.js +497 -57
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +7 -12
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +18 -15
- data/app/assets/stylesheets/blacklight/_bookmark.scss +1 -13
- data/app/assets/stylesheets/blacklight/_bootstrap_overrides.scss +27 -0
- data/app/assets/stylesheets/blacklight/_constraints.scss +17 -25
- data/app/assets/stylesheets/blacklight/_controls.scss +8 -16
- data/app/assets/stylesheets/blacklight/_facets.scss +64 -93
- data/app/assets/stylesheets/blacklight/_header.scss +35 -48
- data/app/assets/stylesheets/blacklight/_icons.scss +35 -0
- data/app/assets/stylesheets/blacklight/_layout.scss +0 -10
- data/app/assets/stylesheets/blacklight/_mixins.scss +15 -0
- data/app/assets/stylesheets/blacklight/_modal.scss +9 -17
- data/app/assets/stylesheets/blacklight/_pagination.scss +2 -17
- data/app/assets/stylesheets/blacklight/_search_form.scss +7 -0
- data/app/assets/stylesheets/blacklight/_search_history.scss +5 -13
- data/app/assets/stylesheets/blacklight/_search_results.scss +9 -8
- data/app/assets/stylesheets/blacklight/_twitter_typeahead.scss +1 -2
- data/app/assets/stylesheets/blacklight/blacklight.scss +1 -1
- data/app/builders/blacklight/action_builder.rb +57 -0
- data/app/controllers/bookmarks_controller.rb +2 -2
- data/app/controllers/catalog_controller.rb +2 -2
- data/app/controllers/concerns/blacklight/base.rb +0 -33
- data/app/controllers/concerns/blacklight/bookmarks.rb +19 -30
- data/app/controllers/concerns/blacklight/catalog.rb +263 -210
- data/app/controllers/concerns/blacklight/controller.rb +102 -124
- data/app/controllers/concerns/blacklight/default_component_configuration.rb +12 -43
- data/app/controllers/concerns/blacklight/facet.rb +3 -0
- data/app/controllers/concerns/blacklight/search_context.rb +11 -11
- data/app/controllers/concerns/blacklight/search_fields.rb +4 -14
- data/app/controllers/concerns/blacklight/search_history.rb +1 -6
- data/app/controllers/concerns/blacklight/token_based_user.rb +5 -7
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +36 -118
- data/app/helpers/blacklight/catalog_helper_behavior.rb +94 -88
- data/app/helpers/blacklight/component_helper_behavior.rb +19 -19
- data/app/helpers/blacklight/configuration_helper_behavior.rb +30 -57
- data/app/helpers/blacklight/facets_helper_behavior.rb +55 -51
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +9 -11
- data/app/helpers/blacklight/icon_helper_behavior.rb +18 -0
- data/app/helpers/blacklight/layout_helper_behavior.rb +3 -10
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +8 -6
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +195 -0
- data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +19 -11
- data/app/helpers/blacklight/suggest_helper_behavior.rb +1 -0
- data/app/helpers/blacklight/url_helper_behavior.rb +50 -41
- data/app/{assets/javascripts → javascript}/blacklight/autocomplete.js +3 -2
- data/app/javascript/blacklight/bookmark_toggle.js +25 -0
- data/app/{assets/javascripts → javascript}/blacklight/checkbox_submit.js +66 -71
- data/app/{assets/javascripts → javascript}/blacklight/collapsable.js +1 -1
- data/app/javascript/blacklight/core.js +41 -0
- data/app/{assets/javascripts → javascript}/blacklight/facet_load.js +6 -6
- data/app/{assets/javascripts/blacklight/ajax_modal.js → javascript/blacklight/modal.js} +62 -64
- data/app/{assets/javascripts → javascript}/blacklight/search_context.js +10 -3
- data/app/models/blacklight/facet_paginator.rb +3 -3
- data/app/models/blacklight/icon.rb +56 -0
- data/app/models/blacklight/solr/facet_paginator.rb +3 -3
- data/app/models/blacklight/suggest_search.rb +1 -1
- data/app/models/bookmark.rb +5 -10
- data/app/models/concerns/blacklight/configurable.rb +13 -13
- data/app/models/concerns/blacklight/document.rb +23 -39
- data/app/models/concerns/blacklight/document/active_model_shim.rb +8 -11
- data/app/models/concerns/blacklight/document/cache_key.rb +1 -1
- data/app/models/concerns/blacklight/document/dublin_core.rb +2 -2
- data/app/models/concerns/blacklight/document/email.rb +1 -1
- data/app/models/concerns/blacklight/document/extensions.rb +5 -5
- data/app/models/concerns/blacklight/document/semantic_fields.rb +9 -9
- data/app/models/concerns/blacklight/document/sms.rb +1 -1
- data/app/models/concerns/blacklight/solr/document.rb +8 -8
- data/app/models/concerns/blacklight/user.rb +7 -6
- data/app/models/record_mailer.rb +5 -6
- data/app/models/search.rb +5 -7
- data/app/presenters/blacklight/document_presenter.rb +25 -140
- data/app/presenters/blacklight/field_presenter.rb +7 -5
- data/app/presenters/blacklight/index_presenter.rb +41 -70
- data/app/presenters/blacklight/json_presenter.rb +10 -14
- data/app/presenters/blacklight/link_alternate_presenter.rb +3 -1
- data/app/presenters/blacklight/rendering/abstract_step.rb +7 -5
- data/app/presenters/blacklight/rendering/helper_method.rb +10 -8
- data/app/presenters/blacklight/rendering/join.rb +5 -3
- data/app/presenters/blacklight/rendering/link_to_facet.rb +23 -19
- data/app/presenters/blacklight/rendering/microdata.rb +6 -3
- data/app/presenters/blacklight/rendering/pipeline.rb +7 -5
- data/app/presenters/blacklight/rendering/terminator.rb +2 -0
- data/app/presenters/blacklight/search_bar_presenter.rb +39 -0
- data/app/presenters/blacklight/show_presenter.rb +26 -72
- data/app/presenters/blacklight/thumbnail_presenter.rb +74 -0
- data/app/services/blacklight/document_factory.rb +13 -0
- data/app/services/blacklight/field_retriever.rb +26 -24
- data/app/services/blacklight/search_service.rb +152 -0
- data/app/values/blacklight/types.rb +31 -0
- data/app/views/blacklight/nav/_bookmark.html.erb +2 -2
- data/app/views/blacklight/nav/_search_history.html.erb +1 -1
- data/app/views/bookmarks/_tools.html.erb +2 -2
- data/app/views/bookmarks/index.html.erb +12 -13
- data/app/views/catalog/_bookmark_control.html.erb +26 -10
- data/app/views/catalog/_citation.html.erb +18 -23
- data/app/views/catalog/_constraints.html.erb +6 -7
- data/app/views/catalog/_constraints_element.html.erb +6 -6
- data/app/views/catalog/_did_you_mean.html.erb +1 -1
- data/app/views/catalog/{_document_default.atom.builder → _document.atom.builder} +19 -18
- data/app/views/catalog/_document.html.erb +5 -3
- data/app/views/catalog/{_document_default.rss.builder → _document.rss.builder} +2 -0
- data/app/views/catalog/_document_action.html.erb +2 -1
- data/app/views/catalog/_email_form.html.erb +8 -4
- data/app/views/catalog/_facet_index_navigation.html.erb +5 -4
- data/app/views/catalog/_facet_layout.html.erb +6 -10
- data/app/views/catalog/_facet_limit.html.erb +3 -2
- data/app/views/catalog/_facet_pagination.html.erb +8 -8
- data/app/views/catalog/_facet_pivot.html.erb +2 -2
- data/app/views/catalog/_facets.html.erb +9 -12
- data/app/views/catalog/_field.json.jbuilder +10 -0
- data/app/views/catalog/{_group_default.html.erb → _group.html.erb} +1 -1
- data/app/views/catalog/_home_text.html.erb +32 -36
- data/app/views/catalog/_index.html.erb +10 -0
- data/app/views/catalog/{_index_header_default.html.erb → _index_header.html.erb} +3 -3
- data/app/views/catalog/_per_page_widget.html.erb +6 -7
- data/app/views/catalog/_previous_next_doc.html.erb +6 -14
- data/app/views/catalog/_results_pagination.html.erb +2 -2
- data/app/views/catalog/_search_form.html.erb +12 -8
- data/app/views/catalog/_search_header.html.erb +0 -3
- data/app/views/catalog/_search_results.html.erb +6 -2
- data/app/views/catalog/_show.html.erb +8 -0
- data/app/views/catalog/{_show_header_default.html.erb → _show_header.html.erb} +0 -0
- data/app/views/catalog/_show_main_content.html.erb +4 -4
- data/app/views/catalog/_show_more_like_this.html.erb +1 -1
- data/app/views/catalog/_show_sidebar.html.erb +3 -3
- data/app/views/catalog/_show_tools.html.erb +10 -12
- data/app/views/catalog/_sms_form.html.erb +8 -4
- data/app/views/catalog/_sort_and_per_page.html.erb +3 -3
- data/app/views/catalog/_sort_widget.html.erb +7 -7
- data/app/views/catalog/_thumbnail.html.erb +5 -0
- data/app/views/catalog/_view_type_group.html.erb +2 -2
- data/app/views/catalog/_zero_results.html.erb +1 -1
- data/app/views/catalog/citation.html.erb +1 -1
- data/app/views/catalog/citation.js.erb +9 -1
- data/app/views/catalog/email.html.erb +5 -3
- data/app/views/catalog/email_success.html.erb +12 -8
- data/app/views/catalog/facet.html.erb +10 -8
- data/app/views/catalog/facet.json.jbuilder +2 -0
- data/app/views/catalog/index.atom.builder +13 -16
- data/app/views/catalog/index.html.erb +9 -11
- data/app/views/catalog/index.json.jbuilder +84 -3
- data/app/views/catalog/index.rss.builder +7 -5
- data/app/views/catalog/opensearch.xml.builder +12 -10
- data/app/views/catalog/show.html.erb +11 -6
- data/app/views/catalog/show.json.jbuilder +21 -0
- data/app/views/catalog/sms.html.erb +3 -1
- data/app/views/catalog/sms_success.html.erb +12 -8
- data/app/views/kaminari/blacklight/_first_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_gap.html.erb +2 -2
- data/app/views/kaminari/blacklight/_last_page.html.erb +2 -2
- data/app/views/kaminari/blacklight/_next_page.html.erb +5 -5
- data/app/views/kaminari/blacklight/_page.html.erb +5 -3
- data/app/views/kaminari/blacklight/_prev_page.html.erb +4 -4
- data/app/views/kaminari/blacklight_compact/_paginator.html.erb +4 -4
- data/app/views/layouts/blacklight.html.erb +14 -41
- data/app/views/layouts/blacklight/base.html.erb +35 -0
- data/app/views/layouts/catalog_result.html.erb +11 -0
- data/app/views/search_history/index.html.erb +16 -21
- data/app/views/{_flash_msg.html.erb → shared/_flash_msg.html.erb} +0 -0
- data/app/views/shared/_header_navbar.html.erb +8 -13
- data/app/views/shared/_modal.html.erb +6 -0
- data/app/views/shared/_user_util_links.html.erb +22 -0
- data/blacklight.gemspec +8 -10
- data/config/i18n-tasks.yml +17 -0
- data/config/locales/blacklight.de.yml +71 -82
- data/config/locales/blacklight.en.yml +15 -27
- data/config/locales/blacklight.es.yml +14 -26
- data/config/locales/blacklight.fr.yml +16 -33
- data/config/locales/blacklight.hu.yml +212 -0
- data/config/locales/blacklight.it.yml +15 -26
- data/config/locales/blacklight.nl.yml +212 -0
- data/config/locales/blacklight.pt-BR.yml +24 -29
- data/config/locales/blacklight.sq.yml +4 -28
- data/config/locales/blacklight.zh.yml +3 -25
- data/config/routes.rb +2 -10
- data/db/migrate/20140202020202_create_bookmarks.rb +0 -1
- data/db/migrate/20140320000000_add_polymorphic_type_to_bookmarks.rb +1 -1
- data/lib/blacklight.rb +6 -4
- data/lib/blacklight/abstract_repository.rb +9 -9
- data/lib/blacklight/configuration.rb +99 -88
- data/lib/blacklight/configuration/context.rb +12 -1
- data/lib/blacklight/configuration/facet_field.rb +16 -9
- data/lib/blacklight/configuration/field.rb +32 -3
- data/lib/blacklight/configuration/fields.rb +15 -17
- data/lib/blacklight/configuration/null_field.rb +2 -0
- data/lib/blacklight/configuration/search_field.rb +2 -2
- data/lib/blacklight/configuration/sort_field.rb +2 -2
- data/lib/blacklight/configuration/view_config.rb +4 -0
- data/lib/blacklight/engine.rb +8 -9
- data/lib/blacklight/exceptions.rb +4 -7
- data/lib/blacklight/{utils.rb → nested_open_struct_with_hash_access.rb} +9 -81
- data/lib/blacklight/open_struct_with_hash_access.rb +49 -0
- data/lib/blacklight/parameters.rb +1 -1
- data/lib/blacklight/routes/exportable.rb +1 -3
- data/lib/blacklight/routes/searchable.rb +3 -3
- data/lib/blacklight/runtime_registry.rb +2 -0
- data/lib/blacklight/search_builder.rb +28 -35
- data/lib/blacklight/search_state.rb +10 -8
- data/lib/blacklight/solr/repository.rb +4 -3
- data/lib/blacklight/solr/request.rb +1 -1
- data/lib/blacklight/solr/response.rb +29 -30
- data/lib/blacklight/solr/response/facets.rb +29 -31
- data/lib/blacklight/solr/response/group.rb +3 -3
- data/lib/blacklight/solr/response/group_response.rb +1 -1
- data/lib/blacklight/solr/response/more_like_this.rb +2 -2
- data/lib/blacklight/solr/response/response.rb +2 -2
- data/lib/blacklight/solr/response/spelling.rb +4 -3
- data/lib/blacklight/solr/search_builder_behavior.rb +25 -29
- data/lib/blacklight/version.rb +1 -1
- data/lib/generators/blacklight/assets_generator.rb +13 -12
- data/lib/generators/blacklight/controller_generator.rb +4 -5
- data/lib/generators/blacklight/document_generator.rb +1 -1
- data/lib/generators/blacklight/install_generator.rb +17 -27
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/{solr5_generator.rb → solr_generator.rb} +12 -6
- data/lib/generators/blacklight/templates/.solr_wrapper.yml +5 -0
- data/lib/generators/blacklight/templates/alternate_controller.rb +4 -4
- data/lib/generators/blacklight/templates/blacklight.scss +0 -2
- data/lib/generators/blacklight/templates/catalog_controller.rb +57 -50
- data/lib/generators/blacklight/templates/config/blacklight.yml +1 -13
- data/{solr → lib/generators/blacklight/templates/solr}/conf/_rest_managed.json +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/admin-extra.html +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/elevate.xml +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/mapping-ISOLatin1Accent.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/protwords.txt +0 -0
- data/lib/generators/blacklight/templates/solr/conf/schema.xml +388 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/scripts.conf +0 -0
- data/lib/generators/blacklight/templates/solr/conf/solrconfig.xml +195 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/spellings.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/stopwords_en.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/synonyms.txt +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_atom.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/example_rss.xsl +0 -0
- data/{solr → lib/generators/blacklight/templates/solr}/conf/xslt/luke.xsl +0 -0
- data/lib/generators/blacklight/test_support_generator.rb +10 -10
- data/lib/generators/blacklight/user_generator.rb +5 -6
- data/lib/railties/blacklight.rake +7 -6
- data/package-lock.json +2195 -0
- data/package.json +29 -0
- data/spec/controllers/alternate_controller_spec.rb +5 -4
- data/spec/controllers/application_controller_spec.rb +1 -5
- data/spec/controllers/blacklight/base_spec.rb +6 -3
- data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +11 -7
- data/spec/controllers/blacklight/facet_spec.rb +1 -2
- data/spec/controllers/blacklight/search_fields_spec.rb +25 -34
- data/spec/controllers/bookmarks_controller_spec.rb +13 -13
- data/spec/controllers/catalog_controller_spec.rb +332 -164
- data/spec/controllers/search_history_controller_spec.rb +6 -6
- data/spec/features/alternate_controller_spec.rb +4 -4
- data/spec/features/autocomplete_spec.rb +4 -2
- data/spec/features/bookmarks_spec.rb +10 -10
- data/spec/features/did_you_mean_spec.rb +7 -12
- data/spec/features/facets_spec.rb +16 -16
- data/spec/features/record_view_spec.rb +12 -18
- data/spec/features/search_context_spec.rb +6 -7
- data/spec/features/search_crawler_spec.rb +3 -5
- data/spec/features/search_filters_spec.rb +80 -80
- data/spec/features/search_formats_spec.rb +1 -1
- data/spec/features/search_history_spec.rb +6 -29
- data/spec/features/search_pagination_spec.rb +4 -2
- data/spec/features/search_results_spec.rb +14 -12
- data/spec/features/search_sort_spec.rb +2 -2
- data/spec/features/search_spec.rb +7 -12
- data/spec/features/sitelinks_search_box.rb +4 -4
- data/{solr → spec/fixtures}/sample_solr_documents.yml +688 -688
- data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb} +97 -92
- data/spec/helpers/{facets_helper_spec.rb → blacklight/facets_helper_behavior_spec.rb} +72 -67
- data/spec/helpers/{hash_as_hidden_fields_spec.rb → blacklight/hash_as_hidden_fields_behavior_spec.rb} +2 -2
- data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +10 -0
- data/spec/helpers/{layout_helper_spec.rb → blacklight/layout_helper_behavior_spec.rb} +5 -15
- data/spec/helpers/{render_constraints_helper_spec.rb → blacklight/render_constraints_helper_behavior_spec.rb} +10 -6
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +92 -0
- data/spec/helpers/{search_history_constraints_helper_spec.rb → blacklight/search_history_constraints_helper_behavior_spec.rb} +29 -30
- data/spec/helpers/{suggest_helper_spec.rb → blacklight/suggest_helper_behavior_spec.rb} +9 -2
- data/spec/helpers/{url_helper_spec.rb → blacklight/url_helper_behavior_spec.rb} +56 -54
- data/spec/helpers/blacklight_helper_spec.rb +62 -151
- data/spec/helpers/catalog_helper_spec.rb +80 -96
- data/spec/i18n_spec.rb +18 -0
- data/spec/integration/generators/blacklight/{solr5_generator_spec.rb → solr_generator_spec.rb} +21 -13
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +13 -0
- data/spec/lib/blacklight/configuration/field_spec.rb +15 -0
- data/spec/lib/blacklight/nested_open_struct_with_hash_access_spec.rb +17 -0
- data/spec/lib/blacklight/open_struct_with_hash_access_spec.rb +148 -0
- data/spec/lib/blacklight/parameters_spec.rb +4 -2
- data/spec/lib/blacklight/search_state_spec.rb +53 -36
- data/spec/lib/blacklight_spec.rb +14 -15
- data/spec/lib/tasks/blacklight_task_spec.rb +4 -6
- data/spec/models/blacklight/configurable_spec.rb +24 -27
- data/spec/models/blacklight/configuration/context_spec.rb +9 -10
- data/spec/models/blacklight/configuration_spec.rb +188 -165
- data/spec/models/blacklight/document/active_model_shim_spec.rb +15 -6
- data/spec/models/blacklight/document/cache_key_spec.rb +9 -2
- data/spec/models/blacklight/document/dublin_core_spec.rb +17 -20
- data/spec/models/blacklight/document/email_spec.rb +10 -10
- data/spec/models/blacklight/document/sms_spec.rb +10 -10
- data/spec/models/blacklight/document_spec.rb +10 -22
- data/spec/models/blacklight/facet_paginator_spec.rb +40 -30
- data/spec/models/blacklight/icon_spec.rb +44 -0
- data/spec/models/blacklight/search_builder_spec.rb +41 -26
- data/spec/models/blacklight/solr/document_spec.rb +224 -216
- data/spec/models/blacklight/solr/facet_paginator_spec.rb +6 -4
- data/spec/models/blacklight/solr/repository_spec.rb +50 -42
- data/spec/models/blacklight/solr/request_spec.rb +17 -18
- data/spec/models/blacklight/solr/response/facets_spec.rb +58 -58
- data/spec/models/blacklight/solr/response/group_response_spec.rb +16 -22
- data/spec/models/blacklight/solr/response/group_spec.rb +18 -25
- data/spec/models/blacklight/solr/response_spec.rb +56 -55
- data/spec/models/blacklight/solr/search_builder_spec.rb +150 -164
- data/spec/models/blacklight/suggest/response_spec.rb +1 -0
- data/spec/models/blacklight/suggest_search_spec.rb +4 -4
- data/spec/models/blacklight/user_spec.rb +9 -11
- data/spec/models/bookmark_spec.rb +7 -6
- data/spec/models/record_mailer_spec.rb +23 -21
- data/spec/models/search_spec.rb +19 -18
- data/spec/models/solr_document_spec.rb +33 -5
- data/spec/presenters/blacklight/document_presenter_spec.rb +86 -0
- data/spec/presenters/{index_presenter_spec.rb → blacklight/index_presenter_spec.rb} +25 -62
- data/spec/presenters/blacklight/json_presenter_spec.rb +59 -0
- data/spec/presenters/blacklight/link_alternate_presenter_spec.rb +3 -0
- data/spec/presenters/blacklight/search_bar_presenter_spec.rb +79 -0
- data/spec/presenters/{show_presenter_spec.rb → blacklight/show_presenter_spec.rb} +47 -62
- data/spec/presenters/pipeline_spec.rb +18 -11
- data/spec/presenters/thumbnail_presenter_spec.rb +174 -0
- data/spec/routing/catalog_routing_spec.rb +13 -31
- data/spec/services/blacklight/search_service_spec.rb +488 -0
- data/spec/spec_helper.rb +22 -15
- data/spec/support/features.rb +1 -1
- data/spec/support/features/session_helpers.rb +4 -4
- data/spec/test_app_templates/Gemfile.extra +2 -5
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +12 -13
- data/spec/views/catalog/_constraints.html.erb_spec.rb +3 -6
- data/spec/views/catalog/_constraints_element.html.erb_spec.rb +17 -13
- data/spec/views/catalog/_document.html.erb_spec.rb +11 -11
- data/spec/views/catalog/_document_list.html.erb_spec.rb +2 -1
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +5 -5
- data/spec/views/catalog/_facet_layout.html.erb_spec.rb +6 -6
- data/spec/views/catalog/_facets.html.erb_spec.rb +10 -12
- data/spec/views/catalog/{_index_default.erb_spec.rb → _index.html.erb_spec.rb} +14 -15
- data/spec/views/catalog/{_index_header_default.html.erb_spec.rb → _index_header.html.erb_spec.rb} +6 -9
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +7 -30
- data/spec/views/catalog/_search_header.erb_spec.rb +1 -3
- data/spec/views/catalog/{_show_default.erb_spec.rb → _show.html.erb_spec.rb} +13 -14
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +6 -9
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +5 -5
- data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +1 -2
- data/spec/views/catalog/_sort_widget.html.erb_spec.rb +3 -1
- data/spec/views/catalog/{_thumbnail_default.erb_spec.rb → _thumbnail.html.erb_spec.rb} +7 -9
- data/spec/views/catalog/_view_type_group.html.erb_spec.rb +12 -10
- data/spec/views/catalog/email_success.html.erb_spec.rb +8 -0
- data/spec/views/catalog/facet.html.erb_spec.rb +4 -3
- data/spec/views/catalog/facet.json.jbuilder_spec.rb +3 -2
- data/spec/views/catalog/index.atom.builder_spec.rb +11 -6
- data/spec/views/catalog/index.html.erb_spec.rb +6 -8
- data/spec/views/catalog/index.json.jbuilder_spec.rb +119 -26
- data/spec/views/catalog/opensearch.xml.builder_spec.rb +1 -1
- data/spec/views/catalog/show.html.erb_spec.rb +8 -8
- data/spec/views/catalog/show.json.jbuilder_spec.rb +40 -0
- data/spec/views/catalog/sms_success.html.erb_spec.rb +8 -0
- data/spec/views/{_user_util_links.html.erb_spec.rb → shared/_user_util_links.html.erb_spec.rb} +4 -7
- data/tasks/blacklight.rake +8 -4
- data/template.demo.rb +3 -11
- metadata +175 -195
- data/app/assets/javascripts/blacklight/autofocus.js +0 -16
- data/app/assets/javascripts/blacklight/bookmark_toggle.js +0 -23
- data/app/assets/javascripts/blacklight/core.js +0 -30
- data/app/controllers/concerns/blacklight/request_builders.rb +0 -77
- data/app/controllers/concerns/blacklight/saved_searches.rb +0 -70
- data/app/controllers/concerns/blacklight/search_helper.rb +0 -161
- data/app/controllers/concerns/blacklight/suggest.rb +0 -25
- data/app/controllers/saved_searches_controller.rb +0 -4
- data/app/controllers/suggest_controller.rb +0 -4
- data/app/helpers/blacklight/deprecated_url_helper_behavior.rb +0 -57
- data/app/helpers/blacklight/render_partials_helper.rb +0 -205
- data/app/helpers/blacklight_configuration_helper.rb +0 -4
- data/app/helpers/blacklight_url_helper.rb +0 -4
- data/app/helpers/component_helper.rb +0 -4
- data/app/helpers/facets_helper.rb +0 -4
- data/app/helpers/hash_as_hidden_fields_helper.rb +0 -4
- data/app/helpers/layout_helper.rb +0 -4
- data/app/helpers/render_constraints_helper.rb +0 -4
- data/app/helpers/search_history_constraints_helper.rb +0 -4
- data/app/helpers/suggest_helper.rb +0 -4
- data/app/models/concerns/blacklight/solr/document/more_like_this.rb +0 -6
- data/app/views/_user_util_links.html.erb +0 -26
- data/app/views/blacklight/nav/_saved_searches.html.erb +0 -1
- data/app/views/catalog/_index_default.html.erb +0 -12
- data/app/views/catalog/_show_default.html.erb +0 -10
- data/app/views/catalog/_thumbnail_default.html.erb +0 -5
- data/app/views/saved_searches/index.html.erb +0 -32
- data/app/views/shared/_ajax_modal.html.erb +0 -6
- data/lib/generators/blacklight/solr4_generator.rb +0 -31
- data/lib/generators/blacklight/templates/config/jetty.yml +0 -13
- data/solr/conf/schema.xml +0 -627
- data/solr/conf/solrconfig.xml +0 -411
- data/spec/controllers/blacklight/search_helper_spec.rb +0 -489
- data/spec/controllers/saved_searches_controller_spec.rb +0 -32
- data/spec/controllers/suggest_controller_spec.rb +0 -17
- data/spec/features/saved_searches_spec.rb +0 -47
- data/spec/helpers/deprecated_url_helper_behavior_spec.rb +0 -101
- data/spec/lib/blacklight/utils_spec.rb +0 -167
- data/spec/models/blacklight/solr/document/more_like_this_spec.rb +0 -18
- data/spec/presenters/document_presenter_spec.rb +0 -438
- data/spec/support/backport_test.rb +0 -14
data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb}
RENAMED
@@ -1,36 +1,31 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
describe
|
3
|
+
RSpec.describe Blacklight::ConfigurationHelperBehavior do
|
4
4
|
let(:blacklight_config) { Blacklight::Configuration.new }
|
5
|
-
let(:config_value) { double
|
5
|
+
let(:config_value) { double }
|
6
6
|
|
7
|
-
before
|
7
|
+
before do
|
8
8
|
allow(helper).to receive_messages(blacklight_config: blacklight_config)
|
9
9
|
end
|
10
10
|
|
11
11
|
describe "#index_fields" do
|
12
12
|
it "passes through the configuration" do
|
13
|
+
allow(Deprecation).to receive(:warn)
|
13
14
|
allow(blacklight_config).to receive_messages(index_fields: config_value)
|
14
15
|
expect(helper.index_fields).to eq config_value
|
15
16
|
end
|
16
17
|
end
|
17
18
|
|
18
|
-
describe "#sort_fields" do
|
19
|
-
it "converts the sort fields to select-ready values" do
|
20
|
-
allow(blacklight_config).to receive_messages(sort_fields: { 'a' => double(key: 'a', label: 'a'), 'b' => double(key: 'b', label: 'b'), c: double(key: 'c', if: false) })
|
21
|
-
expect(helper.sort_fields).to eq [['a', 'a'], ['b', 'b']]
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
19
|
describe "#active_sort_fields" do
|
26
20
|
it "restricts the configured sort fields to only those that should be displayed" do
|
27
|
-
allow(blacklight_config).to receive_messages(sort_fields: { a: double(if: false, unless: false), b: double(if:true, unless: true) })
|
21
|
+
allow(blacklight_config).to receive_messages(sort_fields: { a: double(if: false, unless: false), b: double(if: true, unless: true) })
|
28
22
|
expect(helper.active_sort_fields).to be_empty
|
29
23
|
end
|
30
24
|
end
|
31
25
|
|
32
26
|
describe "#document_show_fields" do
|
33
27
|
it "passes through the configuration" do
|
28
|
+
allow(Deprecation).to receive(:warn)
|
34
29
|
allow(blacklight_config).to receive_messages(show_fields: config_value)
|
35
30
|
expect(helper.document_show_fields).to eq config_value
|
36
31
|
end
|
@@ -43,13 +38,13 @@ describe BlacklightConfigurationHelper do
|
|
43
38
|
blacklight_config.view.b.default = true
|
44
39
|
expect(helper.default_document_index_view_type).to eq :b
|
45
40
|
end
|
46
|
-
|
41
|
+
|
47
42
|
it "defaults to the first configured index view" do
|
48
|
-
allow(blacklight_config).to receive_messages(view: { a: true, b: true})
|
43
|
+
allow(blacklight_config).to receive_messages(view: { a: true, b: true })
|
49
44
|
expect(helper.default_document_index_view_type).to eq :a
|
50
45
|
end
|
51
46
|
end
|
52
|
-
|
47
|
+
|
53
48
|
describe "#document_index_views" do
|
54
49
|
before do
|
55
50
|
blacklight_config.view.abc = false
|
@@ -59,9 +54,9 @@ describe BlacklightConfigurationHelper do
|
|
59
54
|
|
60
55
|
it "filters views using :if/:unless configuration" do
|
61
56
|
expect(helper.document_index_views).to have_key :list
|
62
|
-
expect(helper.document_index_views).
|
63
|
-
expect(helper.document_index_views).
|
64
|
-
expect(helper.document_index_views).
|
57
|
+
expect(helper.document_index_views).not_to have_key :abc
|
58
|
+
expect(helper.document_index_views).not_to have_key :def
|
59
|
+
expect(helper.document_index_views).not_to have_key :xyz
|
65
60
|
end
|
66
61
|
end
|
67
62
|
|
@@ -78,9 +73,14 @@ describe BlacklightConfigurationHelper do
|
|
78
73
|
end
|
79
74
|
|
80
75
|
describe "#has_alternative_views?" do
|
81
|
-
subject { helper.has_alternative_views?}
|
76
|
+
subject { helper.has_alternative_views? }
|
77
|
+
|
78
|
+
before do
|
79
|
+
blacklight_config.view.clear
|
80
|
+
end
|
81
|
+
|
82
82
|
describe "with a single view defined" do
|
83
|
-
it {
|
83
|
+
it { is_expected.to be false }
|
84
84
|
end
|
85
85
|
|
86
86
|
describe "with multiple views defined" do
|
@@ -89,7 +89,7 @@ describe BlacklightConfigurationHelper do
|
|
89
89
|
blacklight_config.view.xyz
|
90
90
|
end
|
91
91
|
|
92
|
-
it {
|
92
|
+
it { is_expected.to be true }
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
@@ -108,7 +108,7 @@ describe BlacklightConfigurationHelper do
|
|
108
108
|
f = helper.document_show_link_field document
|
109
109
|
expect(f).to eq :a
|
110
110
|
end
|
111
|
-
|
111
|
+
|
112
112
|
it "retrieves the first field with data" do
|
113
113
|
blacklight_config.index.title_field = [:zzz, :b]
|
114
114
|
f = helper.document_show_link_field document
|
@@ -122,36 +122,9 @@ describe BlacklightConfigurationHelper do
|
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
|
-
describe "#index_field_label" do
|
126
|
-
let(:document) { instance_double(SolrDocument) }
|
127
|
-
it "looks up the label to display for the given document and field" do
|
128
|
-
allow(helper).to receive(:index_fields).and_return({ "my_field" => double(label: "some label") })
|
129
|
-
allow(helper).to receive(:field_label).with(:"blacklight.search.fields.index.my_field", :"blacklight.search.fields.my_field", "some label", "My field")
|
130
|
-
helper.index_field_label document, "my_field"
|
131
|
-
end
|
132
|
-
end
|
133
|
-
|
134
|
-
describe "#document_show_field_label" do
|
135
|
-
let(:document) { instance_double(SolrDocument) }
|
136
|
-
it "looks up the label to display for the given document and field" do
|
137
|
-
allow(helper).to receive(:document_show_fields).and_return({ "my_field" => double(label: "some label") })
|
138
|
-
allow(helper).to receive(:field_label).with(:"blacklight.search.fields.show.my_field", :"blacklight.search.fields.my_field", "some label", "My field")
|
139
|
-
helper.document_show_field_label document, "my_field"
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
describe "#facet_field_label" do
|
144
|
-
let(:document) { instance_double(SolrDocument) }
|
145
|
-
it "looks up the label to display for the given document and field" do
|
146
|
-
allow(blacklight_config).to receive(:facet_fields).and_return({ "my_field" => double(label: "some label") })
|
147
|
-
allow(helper).to receive(:field_label).with(:"blacklight.search.fields.facet.my_field", :"blacklight.search.fields.my_field", "some label", "My field")
|
148
|
-
helper.facet_field_label "my_field"
|
149
|
-
end
|
150
|
-
end
|
151
|
-
|
152
125
|
describe "#view_label" do
|
153
126
|
it "looks up the label to display for the view" do
|
154
|
-
allow(blacklight_config).to receive(:view).and_return(
|
127
|
+
allow(blacklight_config).to receive(:view).and_return("my_view" => double(label: "some label", title: nil))
|
155
128
|
allow(helper).to receive(:field_label).with(:"blacklight.search.view_title.my_view", :"blacklight.search.view.my_view", "some label", nil, "My view")
|
156
129
|
|
157
130
|
helper.view_label "my_view"
|
@@ -160,50 +133,68 @@ describe BlacklightConfigurationHelper do
|
|
160
133
|
|
161
134
|
describe "#field_label" do
|
162
135
|
it "looks up the label as an i18n string" do
|
163
|
-
|
136
|
+
expect(helper).to receive(:t).with(:some_key, default: []).and_return "my label"
|
164
137
|
label = helper.field_label :some_key
|
165
138
|
|
166
139
|
expect(label).to eq "my label"
|
167
140
|
end
|
168
141
|
|
169
142
|
it "passes the provided i18n keys to I18n.t" do
|
170
|
-
|
143
|
+
expect(helper).to receive(:t).with(:key_a, default: [:key_b, "default text"])
|
171
144
|
|
172
|
-
|
145
|
+
helper.field_label :key_a, :key_b, "default text"
|
173
146
|
end
|
174
147
|
|
175
148
|
it "compacts nil keys (fixes rails/rails#19419)" do
|
176
|
-
|
177
|
-
|
178
|
-
label = helper.field_label :key_a, nil, :key_b
|
149
|
+
expect(helper).to receive(:t).with(:key_a, default: [:key_b])
|
179
150
|
|
151
|
+
helper.field_label :key_a, nil, :key_b
|
180
152
|
end
|
181
153
|
end
|
182
|
-
|
154
|
+
|
183
155
|
describe "#default_per_page" do
|
184
|
-
|
185
|
-
|
186
|
-
|
156
|
+
before do
|
157
|
+
expect(Deprecation).to receive(:warn)
|
158
|
+
end
|
159
|
+
|
160
|
+
context "when default_per_page is configured" do
|
161
|
+
before do
|
162
|
+
blacklight_config.default_per_page = 42
|
163
|
+
end
|
164
|
+
|
165
|
+
it "is the configured value" do
|
166
|
+
expect(helper.default_per_page).to eq 42
|
167
|
+
end
|
187
168
|
end
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
169
|
+
|
170
|
+
context "when default_per_page is not configured" do
|
171
|
+
before do
|
172
|
+
blacklight_config.per_page = [11, 22]
|
173
|
+
end
|
174
|
+
|
175
|
+
it "is the first per-page value if a default isn't set" do
|
176
|
+
expect(helper.default_per_page).to eq 11
|
177
|
+
end
|
192
178
|
end
|
193
179
|
end
|
194
|
-
|
180
|
+
|
195
181
|
describe "#default_sort_field" do
|
196
182
|
it "is the configured default field" do
|
197
183
|
allow(helper).to receive_messages(blacklight_config: double(sort_fields: { a: double(default: nil), b: double(key: 'b', default: true) }))
|
198
184
|
expect(helper.default_sort_field.key).to eq 'b'
|
199
185
|
end
|
200
|
-
|
201
|
-
it "is the first
|
186
|
+
|
187
|
+
it "is the first active sort field value if a default isn't set" do
|
202
188
|
allow(helper).to receive_messages(blacklight_config: double(sort_fields: { a: double(key: 'a', default: nil), b: double(key: 'b', default: nil) }))
|
203
189
|
expect(helper.default_sort_field.key).to eq 'a'
|
204
190
|
end
|
191
|
+
|
192
|
+
it "is the first active sort field value if the configured default field is not active" do
|
193
|
+
allow(helper).to receive_messages(blacklight_config: double(sort_fields: { a: double(default: nil, key: 'a'), b: double(key: 'b', default: true, if: false) }))
|
194
|
+
expect(helper.default_sort_field.key).to eq 'a'
|
195
|
+
end
|
205
196
|
end
|
206
|
-
|
197
|
+
|
207
198
|
describe "#per_page_options_for_select" do
|
208
199
|
it "is the per-page values formatted as options_for_select" do
|
209
200
|
allow(helper).to receive_messages(blacklight_config: double(per_page: [11, 22, 33]))
|
@@ -212,23 +203,24 @@ describe BlacklightConfigurationHelper do
|
|
212
203
|
expect(helper.per_page_options_for_select).to include ["33<span class=\"sr-only\"> per page</span>", 33]
|
213
204
|
end
|
214
205
|
end
|
215
|
-
|
206
|
+
|
216
207
|
describe "#should_render_field?" do
|
217
208
|
let(:field_config) { double('field config', if: true, unless: false) }
|
218
|
-
|
209
|
+
|
219
210
|
before do
|
211
|
+
allow(Deprecation).to receive(:warn)
|
220
212
|
allow(helper).to receive_messages(document_has_value?: true)
|
221
213
|
end
|
222
214
|
|
223
215
|
it "is true" do
|
224
216
|
expect(helper.should_render_field?(field_config)).to be true
|
225
217
|
end
|
226
|
-
|
218
|
+
|
227
219
|
it "is false if the :if condition is false" do
|
228
220
|
allow(field_config).to receive_messages(if: false)
|
229
221
|
expect(helper.should_render_field?(field_config)).to be false
|
230
222
|
end
|
231
|
-
|
223
|
+
|
232
224
|
it "is false if the :unless condition is true" do
|
233
225
|
allow(field_config).to receive_messages(unless: true)
|
234
226
|
expect(helper.should_render_field?(field_config)).to be false
|
@@ -236,32 +228,29 @@ describe BlacklightConfigurationHelper do
|
|
236
228
|
end
|
237
229
|
|
238
230
|
describe "#search_field_options_for_select" do
|
239
|
-
|
240
231
|
before do
|
241
|
-
|
242
232
|
@config = Blacklight::Configuration.new do |config|
|
243
|
-
config.default_solr_params = { :
|
244
|
-
|
245
|
-
config.add_search_field 'all_fields', :
|
246
|
-
config.add_search_field 'title', :
|
247
|
-
config.add_search_field 'author', :
|
248
|
-
config.add_search_field 'subject', :
|
249
|
-
config.add_search_field 'no_display', :
|
233
|
+
config.default_solr_params = { qt: 'search' }
|
234
|
+
|
235
|
+
config.add_search_field 'all_fields', label: 'All Fields'
|
236
|
+
config.add_search_field 'title', qt: 'title_search'
|
237
|
+
config.add_search_field 'author', qt: 'author_search'
|
238
|
+
config.add_search_field 'subject', qt: 'subject_search'
|
239
|
+
config.add_search_field 'no_display', qt: 'something', include_in_simple_select: false
|
250
240
|
end
|
251
241
|
|
252
242
|
allow(helper).to receive_messages(blacklight_config: @config)
|
253
243
|
end
|
254
|
-
|
255
|
-
it "returns proper options_for_select arguments" do
|
256
244
|
|
245
|
+
it "returns proper options_for_select arguments" do
|
257
246
|
select_arguments = helper.search_field_options_for_select
|
258
247
|
|
259
248
|
select_arguments.each do |(label, key)|
|
260
|
-
|
249
|
+
config_hash = @config.search_fields[key]
|
261
250
|
|
262
|
-
|
263
|
-
|
264
|
-
end
|
251
|
+
expect(label).to eq config_hash.label
|
252
|
+
expect(key).to eq config_hash.key
|
253
|
+
end
|
265
254
|
end
|
266
255
|
|
267
256
|
it "does not include fields in select if :display_in_simple_search=>false" do
|
@@ -271,17 +260,33 @@ describe BlacklightConfigurationHelper do
|
|
271
260
|
end
|
272
261
|
end
|
273
262
|
|
274
|
-
|
263
|
+
context 'labels' do
|
264
|
+
let(:field_config) { { 'my-key' => double('field', display_label: 'My Field') } }
|
265
|
+
|
275
266
|
before do
|
276
|
-
|
267
|
+
allow(helper).to receive_messages(blacklight_config: config)
|
277
268
|
end
|
278
269
|
|
279
|
-
|
280
|
-
|
270
|
+
describe '#label_for_search_field' do
|
271
|
+
let(:config) { double('Blacklight configuration', search_fields: field_config) }
|
272
|
+
|
273
|
+
it 'handles a found key' do
|
274
|
+
expect(helper.label_for_search_field('my-key')).to eq 'My Field'
|
275
|
+
end
|
276
|
+
it 'handles a missing key' do
|
277
|
+
expect(helper.label_for_search_field('not-found')).to eq 'Not Found'
|
278
|
+
end
|
281
279
|
end
|
282
280
|
|
283
|
-
|
284
|
-
|
281
|
+
describe '#sort_field_label' do
|
282
|
+
let(:config) { double('Blacklight configuration', sort_fields: field_config) }
|
283
|
+
|
284
|
+
it 'handles a found key' do
|
285
|
+
expect(helper.sort_field_label('my-key')).to eq 'My Field'
|
286
|
+
end
|
287
|
+
it 'handles a missing key' do
|
288
|
+
expect(helper.sort_field_label('not-found')).to eq 'Not Found'
|
289
|
+
end
|
285
290
|
end
|
286
291
|
end
|
287
292
|
end
|
@@ -1,18 +1,18 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
describe
|
3
|
+
RSpec.describe Blacklight::FacetsHelperBehavior do
|
4
4
|
let(:blacklight_config) { Blacklight::Configuration.new }
|
5
5
|
|
6
|
-
before
|
6
|
+
before do
|
7
7
|
allow(helper).to receive(:blacklight_config).and_return blacklight_config
|
8
8
|
end
|
9
9
|
|
10
10
|
describe "has_facet_values?" do
|
11
|
-
let(:empty) { double(:
|
11
|
+
let(:empty) { double(items: [], name: 'empty') }
|
12
12
|
|
13
13
|
it "is true if there are any facets to display" do
|
14
|
-
a = double(:
|
15
|
-
b = double(:
|
14
|
+
a = double(items: [1, 2], name: 'a')
|
15
|
+
b = double(items: %w[b c], name: 'b')
|
16
16
|
fields = [a, b, empty]
|
17
17
|
expect(helper.has_facet_values?(fields)).to be true
|
18
18
|
end
|
@@ -22,9 +22,10 @@ describe FacetsHelper do
|
|
22
22
|
end
|
23
23
|
|
24
24
|
describe "different config" do
|
25
|
-
let(:blacklight_config) { Blacklight::Configuration.new { |config| config.add_facet_field 'basic_field', :
|
25
|
+
let(:blacklight_config) { Blacklight::Configuration.new { |config| config.add_facet_field 'basic_field', if: false } }
|
26
|
+
|
26
27
|
it "is false if no facets are displayable" do
|
27
|
-
a = double(:
|
28
|
+
a = double(items: [1, 2], name: 'basic_field')
|
28
29
|
expect(helper.has_facet_values?([a])).to be false
|
29
30
|
end
|
30
31
|
end
|
@@ -34,45 +35,45 @@ describe FacetsHelper do
|
|
34
35
|
let(:blacklight_config) do
|
35
36
|
Blacklight::Configuration.new do |config|
|
36
37
|
config.add_facet_field 'basic_field'
|
37
|
-
config.add_facet_field 'no_show', :
|
38
|
-
config.add_facet_field 'helper_show', :
|
39
|
-
config.add_facet_field 'helper_with_an_arg_show', :
|
40
|
-
config.add_facet_field 'lambda_show', :
|
41
|
-
config.add_facet_field 'lambda_no_show', :
|
38
|
+
config.add_facet_field 'no_show', show: false
|
39
|
+
config.add_facet_field 'helper_show', show: :my_custom_check
|
40
|
+
config.add_facet_field 'helper_with_an_arg_show', show: :my_custom_check_with_an_arg
|
41
|
+
config.add_facet_field 'lambda_show', show: ->(_context, _config, _field) { true }
|
42
|
+
config.add_facet_field 'lambda_no_show', show: ->(_context, _config, _field) { false }
|
42
43
|
end
|
43
44
|
end
|
44
45
|
|
45
46
|
it "renders facets with items" do
|
46
|
-
a = double(:
|
47
|
+
a = double(items: [1, 2], name: 'basic_field')
|
47
48
|
expect(helper.should_render_facet?(a)).to be true
|
48
49
|
end
|
49
50
|
|
50
51
|
it "does not render facets without items" do
|
51
|
-
empty = double(:
|
52
|
+
empty = double(items: [], name: 'basic_field')
|
52
53
|
expect(helper.should_render_facet?(empty)).to be false
|
53
54
|
end
|
54
55
|
|
55
56
|
it "does not render facets where show is set to false" do
|
56
|
-
a = double(:
|
57
|
+
a = double(items: [1, 2], name: 'no_show')
|
57
58
|
expect(helper.should_render_facet?(a)).to be false
|
58
59
|
end
|
59
60
|
|
60
61
|
it "calls a helper to determine if it should render a field" do
|
61
|
-
allow(controller).to receive_messages(:
|
62
|
-
a = double(:
|
62
|
+
allow(controller).to receive_messages(my_custom_check: true)
|
63
|
+
a = double(items: [1, 2], name: 'helper_show')
|
63
64
|
expect(helper.should_render_facet?(a)).to be true
|
64
65
|
end
|
65
66
|
|
66
67
|
it "calls a helper to determine if it should render a field" do
|
67
|
-
a = double(:
|
68
|
+
a = double(items: [1, 2], name: 'helper_with_an_arg_show')
|
68
69
|
allow(controller).to receive(:my_custom_check_with_an_arg).with(blacklight_config.facet_fields['helper_with_an_arg_show'], a).and_return(true)
|
69
70
|
expect(helper.should_render_facet?(a)).to be true
|
70
71
|
end
|
71
72
|
|
72
73
|
it "evaluates a Proc to determine if it should render a field" do
|
73
|
-
a = double(:
|
74
|
+
a = double(items: [1, 2], name: 'lambda_show')
|
74
75
|
expect(helper.should_render_facet?(a)).to be true
|
75
|
-
a = double(:
|
76
|
+
a = double(items: [1, 2], name: 'lambda_no_show')
|
76
77
|
expect(helper.should_render_facet?(a)).to be false
|
77
78
|
end
|
78
79
|
end
|
@@ -103,7 +104,7 @@ describe FacetsHelper do
|
|
103
104
|
describe "facet_by_field_name" do
|
104
105
|
it "retrieves the facet from the response given a string" do
|
105
106
|
facet_config = double(query: nil, field: 'b', key: 'a')
|
106
|
-
facet_field = double
|
107
|
+
facet_field = double
|
107
108
|
allow(helper).to receive(:facet_configuration_for_field).with('b').and_return(facet_config)
|
108
109
|
@response = instance_double(Blacklight::Solr::Response, aggregations: { 'b' => facet_field })
|
109
110
|
|
@@ -112,11 +113,11 @@ describe FacetsHelper do
|
|
112
113
|
end
|
113
114
|
|
114
115
|
describe "render_facet_partials" do
|
115
|
-
let(:a) { double(:
|
116
|
-
let(:b) { double(:
|
116
|
+
let(:a) { double(items: [1, 2]) }
|
117
|
+
let(:b) { double(items: %w[b c]) }
|
117
118
|
|
118
119
|
it "tries to render all provided facets" do
|
119
|
-
empty = double(:
|
120
|
+
empty = double(items: [])
|
120
121
|
fields = [a, b, empty]
|
121
122
|
expect(helper).to receive(:render_facet_limit).with(a, {})
|
122
123
|
expect(helper).to receive(:render_facet_limit).with(b, {})
|
@@ -136,64 +137,65 @@ describe FacetsHelper do
|
|
136
137
|
let(:blacklight_config) do
|
137
138
|
Blacklight::Configuration.new do |config|
|
138
139
|
config.add_facet_field 'basic_field'
|
139
|
-
config.add_facet_field 'pivot_facet_field', :
|
140
|
-
config.add_facet_field 'my_pivot_facet_field_with_custom_partial', :
|
141
|
-
config.add_facet_field 'my_facet_field_with_custom_partial', :
|
140
|
+
config.add_facet_field 'pivot_facet_field', pivot: %w[a b]
|
141
|
+
config.add_facet_field 'my_pivot_facet_field_with_custom_partial', partial: 'custom_facet_partial', pivot: %w[a b]
|
142
|
+
config.add_facet_field 'my_facet_field_with_custom_partial', partial: 'custom_facet_partial'
|
142
143
|
end
|
143
144
|
end
|
144
|
-
let(:mock_custom_facet) { double(:
|
145
|
+
let(:mock_custom_facet) { double(name: 'my_facet_field_with_custom_partial', items: [1, 2, 3]) }
|
145
146
|
|
146
147
|
it "sets basic local variables" do
|
147
|
-
mock_facet = double(:
|
148
|
-
expect(helper).to receive(:render).with(hash_including(:
|
149
|
-
:
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
))
|
148
|
+
mock_facet = double(name: 'basic_field', items: [1, 2, 3])
|
149
|
+
expect(helper).to receive(:render).with(hash_including(partial: 'facet_limit',
|
150
|
+
locals: {
|
151
|
+
field_name: 'basic_field',
|
152
|
+
facet_field: helper.blacklight_config.facet_fields['basic_field'],
|
153
|
+
display_facet: mock_facet
|
154
|
+
}))
|
155
155
|
helper.render_facet_limit(mock_facet)
|
156
156
|
end
|
157
157
|
|
158
158
|
it "renders a facet _not_ declared in the configuration" do
|
159
|
-
mock_facet = double(:
|
160
|
-
expect(helper).to receive(:render).with(hash_including(:
|
159
|
+
mock_facet = double(name: 'asdf', items: [1, 2, 3])
|
160
|
+
expect(helper).to receive(:render).with(hash_including(partial: 'facet_limit'))
|
161
161
|
helper.render_facet_limit(mock_facet)
|
162
162
|
end
|
163
163
|
|
164
164
|
it "gets the partial name from the configuration" do
|
165
|
-
expect(helper).to receive(:render).with(hash_including(:
|
165
|
+
expect(helper).to receive(:render).with(hash_including(partial: 'custom_facet_partial'))
|
166
166
|
helper.render_facet_limit(mock_custom_facet)
|
167
167
|
end
|
168
168
|
|
169
169
|
it "uses a partial layout for rendering the facet frame" do
|
170
|
-
expect(helper).to receive(:render).with(hash_including(:
|
170
|
+
expect(helper).to receive(:render).with(hash_including(layout: 'facet_layout'))
|
171
171
|
helper.render_facet_limit(mock_custom_facet)
|
172
172
|
end
|
173
173
|
|
174
174
|
it "allows the caller to opt-out of facet layouts" do
|
175
|
-
expect(helper).to receive(:render).with(hash_including(:
|
176
|
-
helper.render_facet_limit(mock_custom_facet, :
|
175
|
+
expect(helper).to receive(:render).with(hash_including(layout: nil))
|
176
|
+
helper.render_facet_limit(mock_custom_facet, layout: nil)
|
177
177
|
end
|
178
178
|
|
179
179
|
it "renders the facet_pivot partial for pivot facets" do
|
180
|
-
mock_facet = double(:
|
181
|
-
expect(helper).to receive(:render).with(hash_including(:
|
180
|
+
mock_facet = double(name: 'pivot_facet_field', items: [1, 2, 3])
|
181
|
+
expect(helper).to receive(:render).with(hash_including(partial: 'facet_pivot'))
|
182
182
|
helper.render_facet_limit(mock_facet)
|
183
183
|
end
|
184
184
|
|
185
185
|
it "lets you override the rendered partial for pivot facets" do
|
186
|
-
mock_facet = double(:
|
187
|
-
expect(helper).to receive(:render).with(hash_including(:
|
186
|
+
mock_facet = double(name: 'my_pivot_facet_field_with_custom_partial', items: [1, 2, 3])
|
187
|
+
expect(helper).to receive(:render).with(hash_including(partial: 'custom_facet_partial'))
|
188
188
|
helper.render_facet_limit(mock_facet)
|
189
189
|
end
|
190
190
|
end
|
191
191
|
|
192
192
|
describe "render_facet_limit_list" do
|
193
|
+
subject { helper.render_facet_limit_list(paginator, 'type_solr_field') }
|
194
|
+
|
193
195
|
let(:f1) { Blacklight::Solr::Response::Facets::FacetItem.new(hits: '792', value: 'Book') }
|
194
196
|
let(:f2) { Blacklight::Solr::Response::Facets::FacetItem.new(hits: '65', value: 'Musical Score') }
|
195
197
|
let(:paginator) { Blacklight::Solr::FacetPaginator.new([f1, f2], limit: 10) }
|
196
|
-
|
198
|
+
|
197
199
|
before do
|
198
200
|
allow(helper).to receive(:search_action_path) do |*args|
|
199
201
|
search_catalog_path *args
|
@@ -202,38 +204,38 @@ describe FacetsHelper do
|
|
202
204
|
|
203
205
|
it "draws a list of elements" do
|
204
206
|
expect(subject).to have_selector 'li', count: 2
|
205
|
-
expect(subject).to have_selector 'li:first-child a.
|
206
|
-
expect(subject).to have_selector 'li:nth-child(2) a.
|
207
|
+
expect(subject).to have_selector 'li:first-child a.facet-select', text: 'Book'
|
208
|
+
expect(subject).to have_selector 'li:nth-child(2) a.facet-select', text: 'Musical Score'
|
207
209
|
end
|
208
210
|
|
209
211
|
context "when one of the facet items is rendered as nil" do
|
210
212
|
# An app may override render_facet_item to filter out some undesired facet items by returning nil.
|
211
|
-
before { allow(helper).to receive(:render_facet_item).and_return('<a class="
|
213
|
+
before { allow(helper).to receive(:render_facet_item).and_return('<a class="facet-select">Book</a>'.html_safe, nil) }
|
212
214
|
|
213
215
|
it "draws a list of elements" do
|
214
216
|
expect(subject).to have_selector 'li', count: 1
|
215
|
-
expect(subject).to have_selector 'li:first-child a.
|
217
|
+
expect(subject).to have_selector 'li:first-child a.facet-select', text: 'Book'
|
216
218
|
end
|
217
219
|
end
|
218
220
|
end
|
219
221
|
|
220
222
|
describe "facet_field_in_params?" do
|
221
223
|
it "checks if the facet field is selected in the user params" do
|
222
|
-
allow(helper).to receive_messages(:
|
223
|
-
expect(helper.
|
224
|
-
expect(helper.facet_field_in_params?("other-field")).
|
224
|
+
allow(helper).to receive_messages(params: { f: { "some-field" => ["x"] } })
|
225
|
+
expect(helper).to be_facet_field_in_params("some-field")
|
226
|
+
expect(helper.facet_field_in_params?("other-field")).not_to be true
|
225
227
|
end
|
226
228
|
end
|
227
229
|
|
228
230
|
describe "facet_params" do
|
229
231
|
it "extracts the facet parameters for a field" do
|
230
|
-
allow(helper).to receive_messages(params: { f: { "some-field" => ["x"] }})
|
232
|
+
allow(helper).to receive_messages(params: { f: { "some-field" => ["x"] } })
|
231
233
|
expect(helper.facet_params("some-field")).to match_array ["x"]
|
232
234
|
end
|
233
235
|
|
234
236
|
it "uses the blacklight key to extract the right fields" do
|
235
237
|
blacklight_config.add_facet_field "some-key", field: "some-field"
|
236
|
-
allow(helper).to receive_messages(params: { f: { "some-key" => ["x"] }})
|
238
|
+
allow(helper).to receive_messages(params: { f: { "some-key" => ["x"] } })
|
237
239
|
expect(helper.facet_params("some-key")).to match_array ["x"]
|
238
240
|
expect(helper.facet_params("some-field")).to match_array ["x"]
|
239
241
|
end
|
@@ -265,10 +267,11 @@ describe FacetsHelper do
|
|
265
267
|
end
|
266
268
|
|
267
269
|
describe "render_facet_value" do
|
268
|
-
let(:item) { double(:
|
270
|
+
let(:item) { double(value: 'A', hits: 10) }
|
269
271
|
let(:search_state) { double(add_facet_params_and_redirect: { controller: 'catalog' }) }
|
272
|
+
|
270
273
|
before do
|
271
|
-
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(:
|
274
|
+
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(query: nil, date: nil, helper_method: nil, single: false, url_method: nil))
|
272
275
|
allow(helper).to receive(:facet_display_value).and_return('Z')
|
273
276
|
allow(helper).to receive(:search_state).and_return(search_state)
|
274
277
|
allow(helper).to receive(:search_action_path) do |*args|
|
@@ -277,7 +280,7 @@ describe FacetsHelper do
|
|
277
280
|
end
|
278
281
|
|
279
282
|
describe "simple case" do
|
280
|
-
let(:expected_html) { '<span class="facet-label"><a class="
|
283
|
+
let(:expected_html) { '<span class="facet-label"><a class="facet-select" href="/catalog">Z</a></span><span class="facet-count">10</span>' }
|
281
284
|
|
282
285
|
it "uses facet_display_value" do
|
283
286
|
result = helper.render_facet_value('simple_field', item)
|
@@ -286,9 +289,10 @@ describe FacetsHelper do
|
|
286
289
|
end
|
287
290
|
|
288
291
|
describe "when :url_method is set" do
|
289
|
-
let(:expected_html) { '<span class="facet-label"><a class="
|
292
|
+
let(:expected_html) { '<span class="facet-label"><a class="facet-select" href="/blabla">Z</a></span><span class="facet-count">10</span>' }
|
293
|
+
|
290
294
|
it "uses that method" do
|
291
|
-
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(:
|
295
|
+
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(query: nil, date: nil, helper_method: nil, single: false, url_method: :test_method))
|
292
296
|
allow(helper).to receive(:test_method).with('simple_field', item).and_return('/blabla')
|
293
297
|
result = helper.render_facet_value('simple_field', item)
|
294
298
|
expect(result).to be_equivalent_to(expected_html).respecting_element_order
|
@@ -297,8 +301,9 @@ describe FacetsHelper do
|
|
297
301
|
|
298
302
|
describe "when :suppress_link is set" do
|
299
303
|
let(:expected_html) { '<span class="facet-label">Z</span><span class="facet-count">10</span>' }
|
304
|
+
|
300
305
|
it "suppresses the link" do
|
301
|
-
result = helper.render_facet_value('simple_field', item, :
|
306
|
+
result = helper.render_facet_value('simple_field', item, suppress_link: true)
|
302
307
|
expect(result).to be_equivalent_to(expected_html).respecting_element_order
|
303
308
|
end
|
304
309
|
end
|
@@ -306,18 +311,18 @@ describe FacetsHelper do
|
|
306
311
|
|
307
312
|
describe "#facet_display_value" do
|
308
313
|
it "justs be the facet value for an ordinary facet" do
|
309
|
-
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(:
|
314
|
+
allow(helper).to receive(:facet_configuration_for_field).with('simple_field').and_return(double(query: nil, date: nil, helper_method: nil, url_method: nil))
|
310
315
|
expect(helper.facet_display_value('simple_field', 'asdf')).to eq 'asdf'
|
311
316
|
end
|
312
317
|
|
313
318
|
it "allows you to pass in a :helper_method argument to the configuration" do
|
314
|
-
allow(helper).to receive(:facet_configuration_for_field).with('helper_field').and_return(double(:
|
319
|
+
allow(helper).to receive(:facet_configuration_for_field).with('helper_field').and_return(double(query: nil, date: nil, url_method: nil, helper_method: :my_facet_value_renderer))
|
315
320
|
allow(helper).to receive(:my_facet_value_renderer).with('qwerty').and_return('abc')
|
316
321
|
expect(helper.facet_display_value('helper_field', 'qwerty')).to eq 'abc'
|
317
322
|
end
|
318
323
|
|
319
324
|
it "extracts the configuration label for a query facet" do
|
320
|
-
allow(helper).to receive(:facet_configuration_for_field).with('query_facet').and_return(double(:
|
325
|
+
allow(helper).to receive(:facet_configuration_for_field).with('query_facet').and_return(double(query: { 'query_key' => { label: 'XYZ' } }, date: nil, helper_method: nil, url_method: nil))
|
321
326
|
expect(helper.facet_display_value('query_facet', 'query_key')).to eq 'XYZ'
|
322
327
|
end
|
323
328
|
|
@@ -327,14 +332,14 @@ describe FacetsHelper do
|
|
327
332
|
end
|
328
333
|
|
329
334
|
it "localizes the label for date-type facets with the supplied localization options" do
|
330
|
-
allow(helper).to receive(:facet_configuration_for_field).with('date_facet').and_return(double('date' => { :
|
335
|
+
allow(helper).to receive(:facet_configuration_for_field).with('date_facet').and_return(double('date' => { format: :short }, :query => nil, :helper_method => nil, :url_method => nil))
|
331
336
|
expect(helper.facet_display_value('date_facet', '2012-01-01')).to eq '01 Jan 00:00'
|
332
337
|
end
|
333
338
|
end
|
334
339
|
|
335
340
|
describe "#facet_field_id" do
|
336
341
|
it "is the parameterized version of the facet field" do
|
337
|
-
expect(helper.facet_field_id
|
342
|
+
expect(helper.facet_field_id(double(key: 'some field'))).to eq "facet-some-field"
|
338
343
|
end
|
339
344
|
end
|
340
345
|
end
|