blacklight 6.25.0 → 7.0.0.rc1
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 +15 -3
- data/.rubocop_todo.yml +242 -379
- data/.solr_wrapper.yml +1 -1
- data/.travis.yml +40 -0
- data/Gemfile +1 -4
- data/README.md +21 -4
- data/Rakefile +1 -2
- data/VERSION +1 -1
- 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 +496 -56
- data/app/assets/stylesheets/blacklight/_balanced_list.scss +7 -12
- data/app/assets/stylesheets/blacklight/_blacklight_base.scss +3 -1
- 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 +74 -92
- data/app/assets/stylesheets/blacklight/_header.scss +35 -48
- data/app/assets/stylesheets/blacklight/_icons.scss +29 -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_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/builders/blacklight/action_builder.rb +56 -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 +20 -37
- data/app/controllers/concerns/blacklight/catalog.rb +254 -213
- data/app/controllers/concerns/blacklight/controller.rb +117 -133
- data/app/controllers/concerns/blacklight/default_component_configuration.rb +12 -43
- data/app/controllers/concerns/blacklight/search_context.rb +10 -14
- data/app/controllers/concerns/blacklight/search_fields.rb +4 -14
- data/app/controllers/concerns/blacklight/token_based_user.rb +6 -10
- data/app/helpers/blacklight/blacklight_helper_behavior.rb +32 -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 +25 -54
- data/app/helpers/blacklight/facets_helper_behavior.rb +40 -39
- data/app/helpers/blacklight/hash_as_hidden_fields_helper_behavior.rb +9 -11
- data/app/helpers/blacklight/icon_helper_behavior.rb +16 -0
- data/app/helpers/blacklight/layout_helper_behavior.rb +3 -10
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +6 -6
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +195 -0
- data/app/helpers/blacklight/search_history_constraints_helper_behavior.rb +18 -11
- data/app/helpers/blacklight/suggest_helper_behavior.rb +1 -0
- data/app/helpers/blacklight/url_helper_behavior.rb +21 -27
- data/app/{assets/javascripts → javascript}/blacklight/autocomplete.js +3 -2
- data/app/javascript/blacklight/autofocus.js +20 -0
- data/app/javascript/blacklight/bookmark_toggle.js +25 -0
- data/app/javascript/blacklight/checkbox_submit.js +133 -0
- data/app/{assets/javascripts → javascript}/blacklight/collapsable.js +1 -1
- data/app/javascript/blacklight/core.js +39 -0
- data/app/{assets/javascripts → javascript}/blacklight/facet_load.js +6 -6
- data/app/{assets/javascripts/blacklight/ajax_modal.js → javascript/blacklight/modal.js} +63 -63
- data/app/{assets/javascripts → javascript}/blacklight/search_context.js +10 -2
- data/app/models/blacklight/facet_paginator.rb +3 -3
- data/app/models/blacklight/icon.rb +53 -0
- data/app/models/blacklight/solr/facet_paginator.rb +3 -3
- data/app/models/blacklight/suggest_search.rb +15 -4
- data/app/models/bookmark.rb +4 -9
- data/app/models/concerns/blacklight/configurable.rb +13 -13
- 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/document.rb +8 -42
- data/app/models/concerns/blacklight/solr/document.rb +7 -8
- data/app/models/concerns/blacklight/suggest/response.rb +3 -5
- data/app/models/concerns/blacklight/user.rb +6 -6
- data/app/models/record_mailer.rb +5 -6
- data/app/models/search.rb +5 -9
- data/app/presenters/blacklight/field_presenter.rb +5 -5
- data/app/presenters/blacklight/index_presenter.rb +34 -71
- data/app/presenters/blacklight/json_presenter.rb +7 -4
- data/app/presenters/blacklight/link_alternate_presenter.rb +1 -1
- data/app/presenters/blacklight/rendering/abstract_step.rb +5 -5
- data/app/presenters/blacklight/rendering/helper_method.rb +8 -8
- data/app/presenters/blacklight/rendering/join.rb +3 -3
- data/app/presenters/blacklight/rendering/link_to_facet.rb +19 -19
- data/app/presenters/blacklight/rendering/microdata.rb +3 -3
- data/app/presenters/blacklight/rendering/pipeline.rb +5 -5
- data/app/presenters/blacklight/search_bar_presenter.rb +37 -0
- data/app/presenters/blacklight/show_presenter.rb +20 -69
- data/app/presenters/blacklight/thumbnail_presenter.rb +72 -0
- data/app/services/blacklight/document_factory.rb +11 -0
- data/app/services/blacklight/field_retriever.rb +24 -24
- data/app/services/blacklight/search_service.rb +154 -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 +2 -2
- 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 +5 -8
- data/app/views/catalog/_constraints_element.html.erb +6 -6
- data/app/views/catalog/{_document_default.atom.builder → _document.atom.builder} +2 -2
- data/app/views/catalog/_document.html.erb +5 -3
- data/app/views/catalog/{_document_default.rss.builder → _document.rss.builder} +0 -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 +3 -3
- data/app/views/catalog/_facet_layout.html.erb +5 -7
- data/app/views/catalog/_facet_limit.html.erb +3 -2
- data/app/views/catalog/_facet_pagination.html.erb +10 -10
- data/app/views/catalog/_facet_pivot.html.erb +2 -2
- data/app/views/catalog/_facets.html.erb +8 -12
- data/app/views/catalog/{_group_default.html.erb → _group.html.erb} +0 -0
- data/app/views/catalog/_home_text.html.erb +32 -36
- data/app/views/catalog/_index.html.erb +12 -0
- data/app/views/catalog/{_index_header_default.html.erb → _index_header.html.erb} +2 -2
- 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/_search_form.html.erb +12 -8
- data/app/views/catalog/_search_header.html.erb +0 -3
- data/app/views/catalog/_search_results.html.erb +4 -0
- data/app/views/catalog/_show.html.erb +10 -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_sidebar.html.erb +3 -3
- data/app/views/catalog/_show_tools.html.erb +9 -11
- 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/citation.html.erb +1 -1
- data/app/views/catalog/citation.js.erb +9 -1
- data/app/views/catalog/email.html.erb +5 -5
- data/app/views/catalog/email_success.html.erb +11 -9
- data/app/views/catalog/facet.html.erb +5 -6
- data/app/views/catalog/index.atom.builder +10 -15
- data/app/views/catalog/index.html.erb +9 -11
- data/app/views/catalog/index.json.jbuilder +65 -3
- data/app/views/catalog/index.rss.builder +5 -5
- data/app/views/catalog/opensearch.xml.builder +10 -10
- data/app/views/catalog/show.html.erb +11 -6
- data/app/views/catalog/sms.html.erb +2 -3
- data/app/views/catalog/sms_success.html.erb +11 -10
- 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 +4 -4
- data/app/views/kaminari/blacklight/_page.html.erb +3 -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/base.html.erb +43 -0
- data/app/views/layouts/blacklight.html.erb +14 -41
- 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 +10 -11
- data/config/locales/blacklight.de.yml +56 -86
- data/config/locales/blacklight.en.yml +1 -27
- data/config/locales/blacklight.es.yml +0 -30
- data/config/locales/blacklight.fr.yml +0 -30
- data/config/locales/blacklight.hu.yml +210 -0
- data/config/locales/blacklight.it.yml +0 -30
- data/config/locales/blacklight.nl.yml +210 -0
- data/config/locales/blacklight.pt-BR.yml +6 -32
- data/config/locales/blacklight.sq.yml +1 -28
- data/config/locales/blacklight.zh.yml +0 -25
- data/config/routes.rb +3 -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/abstract_repository.rb +9 -21
- data/lib/blacklight/configuration/context.rb +1 -1
- data/lib/blacklight/configuration/facet_field.rb +16 -9
- data/lib/blacklight/configuration/field.rb +32 -3
- data/lib/blacklight/configuration/fields.rb +41 -48
- 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/configuration.rb +82 -89
- data/lib/blacklight/engine.rb +5 -11
- data/lib/blacklight/exceptions.rb +4 -7
- data/lib/blacklight/nested_open_struct_with_hash_access.rb +107 -0
- data/lib/blacklight/open_struct_with_hash_access.rb +49 -0
- data/lib/blacklight/parameters.rb +1 -1
- data/lib/blacklight/routes/searchable.rb +1 -0
- data/lib/blacklight/search_builder.rb +26 -35
- data/lib/blacklight/search_state.rb +8 -8
- data/lib/blacklight/solr/repository.rb +3 -36
- data/lib/blacklight/solr/request.rb +1 -1
- 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 +3 -3
- data/lib/blacklight/solr/response.rb +29 -30
- data/lib/blacklight/solr/search_builder_behavior.rb +25 -29
- data/lib/blacklight/version.rb +1 -1
- data/lib/blacklight.rb +4 -5
- data/lib/generators/blacklight/assets_generator.rb +8 -8
- 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 +18 -21
- data/lib/generators/blacklight/search_builder_generator.rb +1 -1
- data/lib/generators/blacklight/{solr5_generator.rb → solr_generator.rb} +4 -6
- data/lib/generators/blacklight/templates/.solr_wrapper.yml +5 -0
- data/lib/generators/blacklight/templates/blacklight.scss +0 -2
- data/lib/generators/blacklight/templates/catalog_controller.rb +52 -51
- 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 +390 -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 +3 -6
- data/lib/railties/blacklight.rake +19 -14
- data/package-lock.json +2057 -0
- data/package.json +28 -0
- data/spec/controllers/alternate_controller_spec.rb +1 -1
- data/spec/controllers/application_controller_spec.rb +1 -1
- data/spec/controllers/blacklight/base_spec.rb +1 -1
- data/spec/controllers/blacklight/catalog/component_configuration_spec.rb +11 -7
- data/spec/controllers/blacklight/facet_spec.rb +1 -1
- data/spec/controllers/blacklight/search_fields_spec.rb +1 -13
- data/spec/controllers/bookmarks_controller_spec.rb +1 -36
- data/spec/controllers/catalog_controller_spec.rb +153 -53
- data/spec/controllers/search_history_controller_spec.rb +2 -2
- data/spec/features/alternate_controller_spec.rb +1 -1
- data/spec/features/autocomplete_spec.rb +2 -2
- data/spec/features/bookmarks_spec.rb +10 -10
- data/spec/features/did_you_mean_spec.rb +3 -9
- data/spec/features/facets_spec.rb +11 -11
- data/spec/features/record_view_spec.rb +1 -6
- data/spec/features/search_context_spec.rb +2 -2
- data/spec/features/search_filters_spec.rb +41 -41
- data/spec/features/search_formats_spec.rb +1 -1
- data/spec/features/search_history_spec.rb +1 -26
- data/spec/features/search_pagination_spec.rb +1 -1
- data/spec/features/search_results_spec.rb +3 -4
- data/spec/features/search_sort_spec.rb +2 -2
- data/spec/features/search_spec.rb +5 -10
- data/{solr → spec/fixtures}/sample_solr_documents.yml +688 -688
- data/spec/helpers/{configuration_helper_spec.rb → blacklight/configuration_helper_behavior_spec.rb} +70 -65
- data/spec/helpers/{facets_helper_spec.rb → blacklight/facets_helper_behavior_spec.rb} +7 -8
- data/spec/helpers/{hash_as_hidden_fields_spec.rb → blacklight/hash_as_hidden_fields_behavior_spec.rb} +1 -1
- data/spec/helpers/blacklight/icon_helper_behavior_spec.rb +8 -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} +2 -3
- data/spec/helpers/blacklight/render_partials_helper_behavior_spec.rb +80 -0
- data/spec/helpers/{search_history_constraints_helper_spec.rb → blacklight/search_history_constraints_helper_behavior_spec.rb} +9 -9
- data/spec/helpers/{suggest_helper_spec.rb → blacklight/suggest_helper_behavior_spec.rb} +4 -2
- data/spec/helpers/{url_helper_spec.rb → blacklight/url_helper_behavior_spec.rb} +11 -15
- data/spec/helpers/blacklight_helper_spec.rb +36 -141
- data/spec/helpers/catalog_helper_spec.rb +37 -56
- data/spec/integration/generators/blacklight/{solr5_generator_spec.rb → solr_generator_spec.rb} +3 -3
- data/spec/lib/blacklight/configuration/facet_field_spec.rb +11 -0
- data/spec/lib/blacklight/configuration/field_spec.rb +12 -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 +153 -0
- data/spec/lib/blacklight/parameters_spec.rb +1 -1
- data/spec/lib/blacklight/search_state_spec.rb +2 -2
- data/spec/lib/blacklight_spec.rb +1 -1
- data/spec/lib/tasks/blacklight_task_spec.rb +1 -1
- data/spec/models/blacklight/configurable_spec.rb +15 -16
- data/spec/models/blacklight/configuration/context_spec.rb +1 -1
- data/spec/models/blacklight/configuration_spec.rb +146 -135
- data/spec/models/blacklight/document/active_model_shim_spec.rb +11 -1
- data/spec/models/blacklight/document/cache_key_spec.rb +1 -1
- data/spec/models/blacklight/document/dublin_core_spec.rb +5 -5
- data/spec/models/blacklight/document/email_spec.rb +3 -3
- data/spec/models/blacklight/document/sms_spec.rb +3 -3
- data/spec/models/blacklight/document_spec.rb +3 -16
- data/spec/models/blacklight/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/icon_spec.rb +34 -0
- data/spec/models/blacklight/search_builder_spec.rb +33 -27
- data/spec/models/blacklight/solr/document_spec.rb +18 -7
- data/spec/models/blacklight/solr/facet_paginator_spec.rb +1 -1
- data/spec/models/blacklight/solr/repository_spec.rb +32 -27
- data/spec/models/blacklight/solr/request_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/facets_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_response_spec.rb +1 -1
- data/spec/models/blacklight/solr/response/group_spec.rb +1 -1
- data/spec/models/blacklight/solr/response_spec.rb +9 -6
- data/spec/models/blacklight/solr/search_builder_spec.rb +35 -48
- data/spec/models/blacklight/suggest/response_spec.rb +4 -5
- data/spec/models/blacklight/suggest_search_spec.rb +14 -7
- data/spec/models/blacklight/user_spec.rb +1 -1
- data/spec/models/bookmark_spec.rb +1 -1
- data/spec/models/record_mailer_spec.rb +2 -2
- data/spec/models/search_spec.rb +15 -36
- data/spec/models/solr_document_spec.rb +3 -3
- data/spec/presenters/blacklight/search_bar_presenter_spec.rb +72 -0
- data/spec/presenters/index_presenter_spec.rb +70 -143
- data/spec/presenters/pipeline_spec.rb +4 -4
- data/spec/presenters/show_presenter_spec.rb +83 -145
- data/spec/presenters/thumbnail_presenter_spec.rb +171 -0
- data/spec/routing/catalog_routing_spec.rb +1 -32
- data/spec/services/blacklight/search_service_spec.rb +446 -0
- data/spec/spec_helper.rb +22 -9
- data/spec/test_app_templates/Gemfile.extra +2 -5
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/catalog/_constraints.html.erb_spec.rb +1 -3
- data/spec/views/catalog/_constraints_element.html.erb_spec.rb +8 -8
- data/spec/views/catalog/_document.html.erb_spec.rb +7 -7
- data/spec/views/catalog/_document_list.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_index_navigation.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_facet_layout.html.erb_spec.rb +6 -6
- data/spec/views/catalog/_facets.html.erb_spec.rb +2 -2
- data/spec/views/catalog/{_index_default.erb_spec.rb → _index.html.erb_spec.rb} +1 -1
- data/spec/views/catalog/{_index_header_default.html.erb_spec.rb → _index_header.html.erb_spec.rb} +4 -4
- data/spec/views/catalog/_paginate_compact.html.erb_spec.rb +4 -27
- 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} +1 -1
- data/spec/views/catalog/_show_sidebar.erb_spec.rb +3 -3
- data/spec/views/catalog/_show_tools.html.erb_spec.rb +3 -3
- data/spec/views/catalog/_sort_and_per_page.html.erb_spec.rb +1 -1
- data/spec/views/catalog/{_thumbnail_default.erb_spec.rb → _thumbnail.html.erb_spec.rb} +3 -3
- data/spec/views/catalog/_view_type_group.html.erb_spec.rb +5 -1
- data/spec/views/catalog/email_success.html.erb_spec.rb +9 -0
- data/spec/views/catalog/facet.html.erb_spec.rb +1 -1
- data/spec/views/catalog/facet.json.jbuilder_spec.rb +1 -1
- data/spec/views/catalog/index.atom.builder_spec.rb +2 -2
- data/spec/views/catalog/index.html.erb_spec.rb +4 -7
- data/spec/views/catalog/index.json.jbuilder_spec.rb +66 -21
- data/spec/views/catalog/opensearch.xml.builder_spec.rb +1 -1
- data/spec/views/catalog/show.html.erb_spec.rb +2 -2
- data/spec/views/catalog/sms_success.html.erb_spec.rb +9 -0
- data/spec/views/{_user_util_links.html.erb_spec.rb → shared/_user_util_links.html.erb_spec.rb} +4 -4
- data/tasks/blacklight.rake +28 -47
- data/template.demo.rb +1 -11
- metadata +172 -196
- data/.docker/app/Dockerfile +0 -28
- data/.docker/app/entrypoint.sh +0 -6
- data/.dockerignore +0 -3
- data/.env +0 -5
- data/.github/workflows/ruby.yml +0 -61
- data/app/assets/javascripts/blacklight/autofocus.js +0 -16
- data/app/assets/javascripts/blacklight/bookmark_toggle.js +0 -23
- data/app/assets/javascripts/blacklight/checkbox_submit.js +0 -139
- 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/presenters/blacklight/document_presenter.rb +0 -153
- data/app/services/blacklight/search_params_yaml_coder.rb +0 -48
- 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/docker-compose.yml +0 -38
- data/lib/blacklight/utils.rb +0 -183
- data/lib/generators/blacklight/solr4_generator.rb +0 -31
- 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
@@ -1,8 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
describe Blacklight::IndexPresenter do
|
3
|
+
RSpec.describe Blacklight::IndexPresenter do
|
4
4
|
include Capybara::RSpecMatchers
|
5
|
-
let(:request_context) { double }
|
5
|
+
let(:request_context) { double(document_index_view_type: 'list') }
|
6
6
|
let(:config) { Blacklight::Configuration.new }
|
7
7
|
|
8
8
|
subject { presenter }
|
@@ -14,156 +14,105 @@ describe Blacklight::IndexPresenter do
|
|
14
14
|
|
15
15
|
let(:document) do
|
16
16
|
SolrDocument.new(id: 1,
|
17
|
-
'
|
18
|
-
'
|
19
|
-
'qwer' => 'document qwer value'
|
17
|
+
'link_to_facet_true' => 'x',
|
18
|
+
'link_to_facet_named' => 'x',
|
19
|
+
'qwer' => 'document qwer value',
|
20
|
+
'mnbv' => 'document mnbv value')
|
20
21
|
end
|
21
22
|
|
22
23
|
before do
|
23
24
|
allow(request_context).to receive(:search_state).and_return(search_state)
|
24
25
|
end
|
25
26
|
|
26
|
-
describe
|
27
|
-
subject { presenter.field_value field }
|
28
|
-
|
29
|
-
let(:field) { config.index_fields[field_name] }
|
30
|
-
let(:field_name) { 'asdf' }
|
27
|
+
describe "field_value" do
|
31
28
|
let(:config) do
|
32
29
|
Blacklight::Configuration.new.configure do |config|
|
33
30
|
config.add_index_field 'qwer'
|
34
|
-
config.add_index_field 'asdf', helper_method
|
35
|
-
config.add_index_field '
|
36
|
-
config.add_index_field '
|
37
|
-
config.add_index_field 'highlight', highlight
|
38
|
-
config.add_index_field 'solr_doc_accessor', accessor
|
39
|
-
config.add_index_field 'explicit_accessor', accessor
|
31
|
+
config.add_index_field 'asdf', :helper_method => :render_asdf_index_field
|
32
|
+
config.add_index_field 'link_to_facet_true', :link_to_facet => true
|
33
|
+
config.add_index_field 'link_to_facet_named', :link_to_facet => :some_field
|
34
|
+
config.add_index_field 'highlight', :highlight => true
|
35
|
+
config.add_index_field 'solr_doc_accessor', :accessor => true
|
36
|
+
config.add_index_field 'explicit_accessor', :accessor => :solr_doc_accessor
|
37
|
+
config.add_index_field 'explicit_accessor_with_arg', :accessor => :solr_doc_accessor_with_arg
|
40
38
|
config.add_index_field 'alias', field: 'qwer'
|
41
39
|
config.add_index_field 'with_default', default: 'value'
|
42
40
|
end
|
43
41
|
end
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
it 'raises a deprecation' do
|
49
|
-
expect(Deprecation).to receive(:warn)
|
50
|
-
expect(subject).to eq 'document qwer value'
|
51
|
-
end
|
52
|
-
|
53
|
-
context 'with a name as a symbol' do
|
54
|
-
subject { presenter.field_value :qwer }
|
55
|
-
|
56
|
-
it 'raises a deprecation' do
|
57
|
-
expect(Deprecation).to receive(:warn)
|
58
|
-
expect(subject).to eq 'document qwer value'
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
context 'with a name as an integer' do
|
63
|
-
subject { presenter.field_value 123 }
|
64
|
-
|
65
|
-
it 'raises a deprecation' do
|
66
|
-
expect(Deprecation).to receive(:warn)
|
67
|
-
expect(subject).to eq ''
|
68
|
-
end
|
69
|
-
end
|
42
|
+
it "checks for an explicit value" do
|
43
|
+
value = subject.field_value 'asdf', :value => 'asdf'
|
44
|
+
expect(value).to eq 'asdf'
|
70
45
|
end
|
71
46
|
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
47
|
+
it "checks for a helper method to call" do
|
48
|
+
allow(request_context).to receive(:render_asdf_index_field).and_return('custom asdf value')
|
49
|
+
value = subject.field_value 'asdf'
|
50
|
+
expect(value).to eq 'custom asdf value'
|
76
51
|
end
|
77
52
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
it { is_expected.to eq 'custom asdf value' }
|
53
|
+
it "checks for a link_to_facet" do
|
54
|
+
allow(request_context).to receive(:search_action_path).with('f' => { 'link_to_facet_true' => ['x'] }).and_return('/foo')
|
55
|
+
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
|
56
|
+
value = subject.field_value 'link_to_facet_true'
|
57
|
+
expect(value).to eq 'bar'
|
84
58
|
end
|
85
59
|
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
let(:field_name) { 'link_to_search_true' }
|
93
|
-
|
94
|
-
it { is_expected.to eq 'bar' }
|
60
|
+
it "checks for a link_to_facet with a field name" do
|
61
|
+
allow(request_context).to receive(:search_action_path).with('f' => { 'some_field' => ['x'] }).and_return('/foo')
|
62
|
+
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
|
63
|
+
value = subject.field_value 'link_to_facet_named'
|
64
|
+
expect(value).to eq 'bar'
|
95
65
|
end
|
96
66
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
end
|
102
|
-
|
103
|
-
let(:field_name) { 'link_to_search_named' }
|
104
|
-
|
105
|
-
it { is_expected.to eq 'bar' }
|
67
|
+
it "gracefully handles when no highlight field is available" do
|
68
|
+
allow(document).to receive(:has_highlight_field?).and_return(false)
|
69
|
+
value = subject.field_value 'highlight'
|
70
|
+
expect(value).to be_blank
|
106
71
|
end
|
107
72
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
let(:field_name) { 'highlight' }
|
114
|
-
|
115
|
-
it { is_expected.to be_blank }
|
73
|
+
it "checks for a highlighted field" do
|
74
|
+
allow(document).to receive(:has_highlight_field?).and_return(true)
|
75
|
+
allow(document).to receive(:highlight_field).with('highlight').and_return(['<em>highlight</em>'.html_safe])
|
76
|
+
value = subject.field_value 'highlight'
|
77
|
+
expect(value).to eq '<em>highlight</em>'
|
116
78
|
end
|
117
79
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
allow(document).to receive(:highlight_field).with('highlight').and_return(['<em>highlight</em>'.html_safe])
|
122
|
-
end
|
123
|
-
|
124
|
-
let(:field_name) { 'highlight' }
|
125
|
-
|
126
|
-
it { is_expected.to eq '<em>highlight</em>' }
|
80
|
+
it "checks the document field value" do
|
81
|
+
value = subject.field_value 'qwer'
|
82
|
+
expect(value).to eq 'document qwer value'
|
127
83
|
end
|
128
84
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
it "checks the document field value" do
|
133
|
-
expect(subject).to eq 'document qwer value'
|
134
|
-
end
|
85
|
+
it "works with index fields that aren't explicitly defined" do
|
86
|
+
value = subject.field_value 'mnbv'
|
87
|
+
expect(value).to eq 'document mnbv value'
|
135
88
|
end
|
136
89
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
let(:field_name) { 'solr_doc_accessor' }
|
143
|
-
|
144
|
-
it { is_expected.to eq '123' }
|
90
|
+
it "calls an accessor on the solr document" do
|
91
|
+
allow(document).to receive_messages(solr_doc_accessor: "123")
|
92
|
+
value = subject.field_value 'solr_doc_accessor'
|
93
|
+
expect(value).to eq "123"
|
145
94
|
end
|
146
95
|
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
expect(document).to receive(:solr_doc_accessor).with('explicit_accessor').and_return("123")
|
152
|
-
|
153
|
-
expect(subject).to eq '123'
|
154
|
-
end
|
96
|
+
it "calls an explicit accessor on the solr document" do
|
97
|
+
allow(document).to receive_messages(solr_doc_accessor: "123")
|
98
|
+
value = subject.field_value 'explicit_accessor'
|
99
|
+
expect(value).to eq "123"
|
155
100
|
end
|
156
101
|
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
102
|
+
it "calls an accessor on the solr document with the field as an argument" do
|
103
|
+
allow(document).to receive(:solr_doc_accessor_with_arg).with('explicit_accessor_with_arg').and_return("123")
|
104
|
+
value = subject.field_value 'explicit_accessor_with_arg'
|
105
|
+
expect(value).to eq "123"
|
161
106
|
end
|
162
107
|
|
163
|
-
|
164
|
-
|
108
|
+
it "supports solr field configuration" do
|
109
|
+
value = subject.field_value 'alias'
|
110
|
+
expect(value).to eq "document qwer value"
|
111
|
+
end
|
165
112
|
|
166
|
-
|
113
|
+
it "supports default values in the field configuration" do
|
114
|
+
value = subject.field_value 'with_default'
|
115
|
+
expect(value).to eq "value"
|
167
116
|
end
|
168
117
|
end
|
169
118
|
|
@@ -171,9 +120,8 @@ describe Blacklight::IndexPresenter do
|
|
171
120
|
context 'for a field with the helper_method option' do
|
172
121
|
let(:field_name) { 'field_with_helper' }
|
173
122
|
let(:field_config) { config.add_facet_field 'field_with_helper', helper_method: 'render_field_with_helper' }
|
174
|
-
|
175
|
-
|
176
|
-
document['field_with_helper'] = 'value'
|
123
|
+
let(:document) do
|
124
|
+
SolrDocument.new(id: 1, 'field_with_helper' => 'value')
|
177
125
|
end
|
178
126
|
|
179
127
|
it "checks call the helper method with arguments" do
|
@@ -195,29 +143,8 @@ describe Blacklight::IndexPresenter do
|
|
195
143
|
end
|
196
144
|
end
|
197
145
|
|
198
|
-
describe
|
199
|
-
|
200
|
-
|
201
|
-
end
|
202
|
-
|
203
|
-
let(:field_config) { config.add_index_field 'qwerty' }
|
204
|
-
|
205
|
-
describe '#get_field_values' do
|
206
|
-
it 'renders values for the given field' do
|
207
|
-
expect(subject.get_field_values(field_config, value: ['x', 'y'])).to eq 'x and y'
|
208
|
-
end
|
209
|
-
end
|
210
|
-
|
211
|
-
describe '#render_field_values' do
|
212
|
-
it 'renders values for the given field' do
|
213
|
-
expect(subject.render_field_values('x')).to eq 'x'
|
214
|
-
end
|
215
|
-
end
|
216
|
-
|
217
|
-
describe '#render_values' do
|
218
|
-
it 'renders values for the given field' do
|
219
|
-
expect(subject.render_values(['x', 'y', 'z'])).to eq 'x, y, and z'
|
220
|
-
end
|
221
|
-
end
|
146
|
+
describe "#thumbnail" do
|
147
|
+
subject { presenter.thumbnail }
|
148
|
+
it { is_expected.to be_instance_of Blacklight::ThumbnailPresenter }
|
222
149
|
end
|
223
150
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
describe Blacklight::Rendering::Pipeline do
|
3
|
+
RSpec.describe Blacklight::Rendering::Pipeline do
|
4
4
|
include Capybara::RSpecMatchers
|
5
5
|
let(:document) { instance_double(SolrDocument) }
|
6
6
|
let(:context) { double }
|
@@ -10,18 +10,18 @@ describe Blacklight::Rendering::Pipeline do
|
|
10
10
|
describe "render" do
|
11
11
|
subject { presenter.render }
|
12
12
|
let(:values) { ['a', 'b'] }
|
13
|
-
let(:field_config) { Blacklight::Configuration::NullField.new }
|
13
|
+
let(:field_config) { Blacklight::Configuration::NullField.new }
|
14
14
|
it { is_expected.to eq "a and b" }
|
15
15
|
|
16
16
|
context "when separator_options are in the config" do
|
17
17
|
let(:values) { ['c', 'd'] }
|
18
|
-
let(:field_config) { Blacklight::Configuration::NullField.new(
|
18
|
+
let(:field_config) { Blacklight::Configuration::NullField.new(itemprop: nil, separator_options: { two_words_connector: '; '}) }
|
19
19
|
it { is_expected.to eq "c; d" }
|
20
20
|
end
|
21
21
|
|
22
22
|
context "when itemprop is in the config" do
|
23
23
|
let(:values) { ['a'] }
|
24
|
-
let(:field_config) { Blacklight::Configuration::NullField.new(
|
24
|
+
let(:field_config) { Blacklight::Configuration::NullField.new(itemprop: 'some-prop', separator_options: nil) }
|
25
25
|
it { is_expected.to have_selector("span[@itemprop='some-prop']", :text => "a") }
|
26
26
|
end
|
27
27
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
describe Blacklight::ShowPresenter do
|
3
|
+
RSpec.describe Blacklight::ShowPresenter do
|
4
4
|
include Capybara::RSpecMatchers
|
5
5
|
let(:request_context) { double }
|
6
6
|
let(:config) { Blacklight::Configuration.new }
|
@@ -14,9 +14,10 @@ describe Blacklight::ShowPresenter do
|
|
14
14
|
|
15
15
|
let(:document) do
|
16
16
|
SolrDocument.new(id: 1,
|
17
|
-
'
|
18
|
-
'
|
19
|
-
'qwer' => 'document qwer value'
|
17
|
+
'link_to_facet_true' => 'x',
|
18
|
+
'link_to_facet_named' => 'x',
|
19
|
+
'qwer' => 'document qwer value',
|
20
|
+
'mnbv' => 'document mnbv value')
|
20
21
|
end
|
21
22
|
|
22
23
|
before do
|
@@ -96,155 +97,118 @@ describe Blacklight::ShowPresenter do
|
|
96
97
|
end
|
97
98
|
end
|
98
99
|
|
99
|
-
describe
|
100
|
-
subject { presenter.field_value field }
|
101
|
-
|
102
|
-
let(:field) { config.show_fields[field_name] }
|
103
|
-
let(:field_name) { 'asdf' }
|
100
|
+
describe "field_value" do
|
104
101
|
let(:config) do
|
105
102
|
Blacklight::Configuration.new.configure do |config|
|
106
103
|
config.add_show_field 'qwer'
|
107
|
-
config.add_show_field 'asdf', helper_method
|
108
|
-
config.add_show_field '
|
109
|
-
config.add_show_field '
|
110
|
-
config.add_show_field 'highlight', highlight
|
111
|
-
config.add_show_field 'solr_doc_accessor', accessor
|
112
|
-
config.add_show_field 'explicit_accessor', accessor
|
113
|
-
config.add_show_field 'explicit_array_accessor', accessor
|
104
|
+
config.add_show_field 'asdf', :helper_method => :render_asdf_document_show_field
|
105
|
+
config.add_show_field 'link_to_facet_true', :link_to_facet => true
|
106
|
+
config.add_show_field 'link_to_facet_named', :link_to_facet => :some_field
|
107
|
+
config.add_show_field 'highlight', :highlight => true
|
108
|
+
config.add_show_field 'solr_doc_accessor', :accessor => true
|
109
|
+
config.add_show_field 'explicit_accessor', :accessor => :solr_doc_accessor
|
110
|
+
config.add_show_field 'explicit_array_accessor', :accessor => [:solr_doc_accessor, :some_method]
|
111
|
+
config.add_show_field 'explicit_accessor_with_arg', :accessor => :solr_doc_accessor_with_arg
|
114
112
|
end
|
115
113
|
end
|
116
114
|
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
it 'raises a deprecation' do
|
121
|
-
expect(Deprecation).to receive(:warn)
|
122
|
-
expect(subject).to eq 'document qwer value'
|
123
|
-
end
|
115
|
+
it 'html-escapes values' do
|
116
|
+
value = subject.field_value 'asdf', value: '<b>val1</b>'
|
117
|
+
expect(value).to eq '<b>val1</b>'
|
124
118
|
end
|
125
119
|
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
it { is_expected.to eq '<b>val1</b>' }
|
120
|
+
it 'joins multivalued valued fields' do
|
121
|
+
value = subject.field_value 'asdf', value: ['<a', 'b']
|
122
|
+
expect(value).to eq '<a and b'
|
130
123
|
end
|
131
124
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
it { is_expected.to eq '<a and b' }
|
125
|
+
it 'joins multivalued valued fields' do
|
126
|
+
value = subject.field_value 'asdf', value: ['a', 'b', 'c']
|
127
|
+
expect(value).to eq 'a, b, and c'
|
136
128
|
end
|
137
129
|
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
130
|
+
it "checks for an explicit value" do
|
131
|
+
expect(request_context).to_not receive(:render_asdf_document_show_field)
|
132
|
+
value = subject.field_value 'asdf', :value => 'val1'
|
133
|
+
expect(value).to eq 'val1'
|
142
134
|
end
|
143
135
|
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
136
|
+
it "checks for a helper method to call" do
|
137
|
+
allow(request_context).to receive(:render_asdf_document_show_field).and_return('custom asdf value')
|
138
|
+
value = subject.field_value 'asdf'
|
139
|
+
expect(value).to eq 'custom asdf value'
|
148
140
|
end
|
149
141
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
it { is_expected.to eq 'custom asdf value' }
|
156
|
-
end
|
157
|
-
|
158
|
-
context 'when field has link_to_search with true' do
|
159
|
-
before do
|
160
|
-
allow(request_context).to receive(:search_action_path).with('f' => { 'link_to_search_true' => ['x'] }).and_return('/foo')
|
161
|
-
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
|
162
|
-
end
|
163
|
-
|
164
|
-
let(:field_name) { 'link_to_search_true' }
|
165
|
-
|
166
|
-
it { is_expected.to eq 'bar' }
|
142
|
+
it "checks for a link_to_facet" do
|
143
|
+
allow(request_context).to receive(:search_action_path).and_return('/foo')
|
144
|
+
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
|
145
|
+
value = subject.field_value 'link_to_facet_true'
|
146
|
+
expect(value).to eq 'bar'
|
167
147
|
end
|
168
148
|
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
let(:field_name) { 'link_to_search_named' }
|
176
|
-
|
177
|
-
it { is_expected.to eq 'bar' }
|
149
|
+
it "checks for a link_to_facet with a field name" do
|
150
|
+
allow(request_context).to receive(:search_action_path).and_return('/foo')
|
151
|
+
allow(request_context).to receive(:link_to).with("x", '/foo').and_return('bar')
|
152
|
+
value = subject.field_value 'link_to_facet_named'
|
153
|
+
expect(value).to eq 'bar'
|
178
154
|
end
|
179
155
|
|
180
|
-
context
|
156
|
+
context "when no highlight field is available" do
|
181
157
|
before do
|
182
158
|
allow(document).to receive(:has_highlight_field?).and_return(false)
|
183
159
|
end
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
it { is_expected.to be_blank }
|
188
|
-
end
|
189
|
-
|
190
|
-
context 'when highlight field is available' do
|
191
|
-
before do
|
192
|
-
allow(document).to receive(:has_highlight_field?).and_return(true)
|
193
|
-
allow(document).to receive(:highlight_field).with('highlight').and_return(['<em>highlight</em>'.html_safe])
|
160
|
+
let(:value) { subject.field_value 'highlight' }
|
161
|
+
it "is blank" do
|
162
|
+
expect(value).to be_blank
|
194
163
|
end
|
195
|
-
|
196
|
-
let(:field_name) { 'highlight' }
|
197
|
-
|
198
|
-
it { is_expected.to eq '<em>highlight</em>' }
|
199
164
|
end
|
200
165
|
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
let(:field_name) { 'highlight' }
|
208
|
-
|
209
|
-
it { is_expected.to eq '<em>highlight</em> and <em>other highlight</em>' }
|
166
|
+
it "checks for a highlighted field" do
|
167
|
+
allow(document).to receive(:has_highlight_field?).and_return(true)
|
168
|
+
allow(document).to receive(:highlight_field).with('highlight').and_return(['<em>highlight</em>'.html_safe])
|
169
|
+
value = subject.field_value 'highlight'
|
170
|
+
expect(value).to eq '<em>highlight</em>'
|
210
171
|
end
|
211
172
|
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
end
|
173
|
+
it 'respects the HTML-safeness of multivalued highlight fields' do
|
174
|
+
allow(document).to receive(:has_highlight_field?).and_return(true)
|
175
|
+
allow(document).to receive(:highlight_field).with('highlight').and_return(['<em>highlight</em>'.html_safe, '<em>other highlight</em>'.html_safe])
|
176
|
+
value = subject.field_value 'highlight'
|
177
|
+
expect(value).to eq '<em>highlight</em> and <em>other highlight</em>'
|
218
178
|
end
|
219
179
|
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
end
|
224
|
-
|
225
|
-
let(:field_name) { 'solr_doc_accessor' }
|
226
|
-
|
227
|
-
it { is_expected.to eq '123' }
|
180
|
+
it "checks the document field value" do
|
181
|
+
value = subject.field_value 'qwer'
|
182
|
+
expect(value).to eq 'document qwer value'
|
228
183
|
end
|
229
184
|
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
expect(document).to receive(:solr_doc_accessor).with('explicit_accessor').and_return("123")
|
185
|
+
it "works with show fields that aren't explicitly defined" do
|
186
|
+
value = subject.field_value 'mnbv'
|
187
|
+
expect(value).to eq 'document mnbv value'
|
188
|
+
end
|
235
189
|
|
236
|
-
|
237
|
-
|
190
|
+
it "calls an accessor on the solr document" do
|
191
|
+
allow(document).to receive_messages(solr_doc_accessor: "123")
|
192
|
+
value = subject.field_value 'solr_doc_accessor'
|
193
|
+
expect(value).to eq "123"
|
238
194
|
end
|
239
195
|
|
240
|
-
|
241
|
-
|
196
|
+
it "calls an explicit accessor on the solr document" do
|
197
|
+
allow(document).to receive_messages(solr_doc_accessor: "123")
|
198
|
+
value = subject.field_value 'explicit_accessor'
|
199
|
+
expect(value).to eq "123"
|
200
|
+
end
|
242
201
|
|
243
|
-
|
244
|
-
|
202
|
+
it "calls an explicit array-style accessor on the solr document" do
|
203
|
+
allow(document).to receive_message_chain(:solr_doc_accessor, some_method: "123")
|
204
|
+
value = subject.field_value 'explicit_array_accessor'
|
205
|
+
expect(value).to eq "123"
|
206
|
+
end
|
245
207
|
|
246
|
-
|
247
|
-
|
208
|
+
it "calls an accessor on the solr document with the field as an argument" do
|
209
|
+
allow(document).to receive(:solr_doc_accessor_with_arg).with('explicit_accessor_with_arg').and_return("123")
|
210
|
+
value = subject.field_value 'explicit_accessor_with_arg'
|
211
|
+
expect(value).to eq "123"
|
248
212
|
end
|
249
213
|
end
|
250
214
|
|
@@ -296,9 +260,8 @@ describe Blacklight::ShowPresenter do
|
|
296
260
|
context 'for a field with the helper_method option' do
|
297
261
|
let(:field_name) { 'field_with_helper' }
|
298
262
|
let(:field_config) { config.add_facet_field 'field_with_helper', helper_method: 'render_field_with_helper' }
|
299
|
-
|
300
|
-
|
301
|
-
document['field_with_helper'] = 'value'
|
263
|
+
let(:document) do
|
264
|
+
SolrDocument.new(id: 1, 'field_with_helper' => 'value')
|
302
265
|
end
|
303
266
|
|
304
267
|
it "checks call the helper method with arguments" do
|
@@ -319,30 +282,5 @@ describe Blacklight::ShowPresenter do
|
|
319
282
|
end
|
320
283
|
end
|
321
284
|
end
|
322
|
-
|
323
|
-
describe 'deprecated methods' do
|
324
|
-
before do
|
325
|
-
allow(Deprecation).to receive(:warn)
|
326
|
-
end
|
327
|
-
|
328
|
-
let(:field_config) { config.add_index_field 'qwerty' }
|
329
|
-
|
330
|
-
describe '#get_field_values' do
|
331
|
-
it 'renders values for the given field' do
|
332
|
-
expect(subject.get_field_values(field_config, value: ['x', 'y'])).to eq 'x and y'
|
333
|
-
end
|
334
|
-
end
|
335
|
-
|
336
|
-
describe '#render_field_values' do
|
337
|
-
it 'renders values for the given field' do
|
338
|
-
expect(subject.render_field_values('x')).to eq 'x'
|
339
|
-
end
|
340
|
-
end
|
341
|
-
|
342
|
-
describe '#render_values' do
|
343
|
-
it 'renders values for the given field' do
|
344
|
-
expect(subject.render_values(['x', 'y', 'z'])).to eq 'x, y, and z'
|
345
|
-
end
|
346
|
-
end
|
347
|
-
end
|
348
285
|
end
|
286
|
+
|