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
@@ -7,7 +7,7 @@ module Blacklight::Document
|
|
7
7
|
# Returns array of hashes of registered extensions. Each hash
|
8
8
|
# has a :module_obj key and a :condition_proc key. Usually this
|
9
9
|
# method is only used internally in #apply_extensions, but if you
|
10
|
-
|
10
|
+
|
11
11
|
# Class-level method for accessing/setting semantic mappings
|
12
12
|
# for solr stored fields. Can be set by local app, key is
|
13
13
|
# a symbol for a semantic, value is a solr _stored_ field.
|
@@ -17,22 +17,22 @@ module Blacklight::Document
|
|
17
17
|
#
|
18
18
|
# Currently documented semantic tokens, not all may be
|
19
19
|
# used by core BL, but some may be used by plugins present
|
20
|
-
# or future.
|
21
|
-
# :title, :author, :year, :language => User-presentable strings.
|
20
|
+
# or future.
|
21
|
+
# :title, :author, :year, :language => User-presentable strings.
|
22
22
|
def field_semantics
|
23
23
|
@field_semantics ||= {}
|
24
|
-
end
|
24
|
+
end
|
25
25
|
end
|
26
|
-
|
26
|
+
|
27
27
|
# Returns a hash keyed by semantic tokens, value is an array of
|
28
28
|
# strings. (Array to handle multi-value fields). If no value(s)
|
29
|
-
# available, empty array is returned.
|
29
|
+
# available, empty array is returned.
|
30
30
|
#
|
31
31
|
# Default implementation here uses field_semantics
|
32
|
-
# to just take values from Solr stored fields.
|
32
|
+
# to just take values from Solr stored fields.
|
33
33
|
# Extensions can over-ride this method to provide better/different lookup,
|
34
34
|
# but extensions should call super and modify hash returned, to avoid
|
35
|
-
# unintentionally erasing values provided by other extensions.
|
35
|
+
# unintentionally erasing values provided by other extensions.
|
36
36
|
def to_semantic_values
|
37
37
|
@semantic_value_hash ||= self.class.field_semantics.each_with_object(Hash.new([])) do |(key, field_names), hash|
|
38
38
|
##
|
@@ -45,6 +45,6 @@ module Blacklight::Document
|
|
45
45
|
end
|
46
46
|
|
47
47
|
@semantic_value_hash ||= {}
|
48
|
-
end
|
48
|
+
end
|
49
49
|
end
|
50
50
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module Blacklight::Document::Sms
|
4
4
|
# Return a text string that will be the body of the email
|
5
5
|
def to_sms_text
|
6
|
-
semantics =
|
6
|
+
semantics = to_semantic_values
|
7
7
|
body = []
|
8
8
|
body << I18n.t('blacklight.sms.text.title', value: semantics[:title].first) unless semantics[:title].blank?
|
9
9
|
body << I18n.t('blacklight.sms.text.author', value: semantics[:author].first) unless semantics[:author].blank?
|
@@ -1,7 +1,5 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require 'globalid'
|
4
|
-
|
2
|
+
##
|
5
3
|
##
|
6
4
|
# = Introduction
|
7
5
|
# Blacklight::Document is the module with logic for a class representing
|
@@ -16,9 +14,6 @@ require 'globalid'
|
|
16
14
|
# transformation formats.
|
17
15
|
#
|
18
16
|
module Blacklight::Document
|
19
|
-
extend Deprecation
|
20
|
-
self.deprecation_horizon = 'blacklight 7.0'
|
21
|
-
|
22
17
|
autoload :ActiveModelShim, 'blacklight/document/active_model_shim'
|
23
18
|
autoload :SchemaOrg, 'blacklight/document/schema_org'
|
24
19
|
autoload :CacheKey, 'blacklight/document/cache_key'
|
@@ -43,38 +38,15 @@ module Blacklight::Document
|
|
43
38
|
|
44
39
|
attr_reader :response, :_source
|
45
40
|
alias_method :solr_response, :response
|
46
|
-
delegate :[], :key?, :keys, :to_h, to: :_source
|
47
41
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
Deprecation.warn(Blacklight::Document, "Blacklight::Document#initialize expects a hash-like object, received #{source_doc.class}.")
|
53
|
-
ActiveSupport::HashWithIndifferentAccess.new(source_doc.to_h)
|
54
|
-
end
|
42
|
+
delegate :[], :key?, :keys, :to_h, :as_json, to: :_source
|
43
|
+
|
44
|
+
def initialize(source_doc = {}, response = nil)
|
45
|
+
@_source = ActiveSupport::HashWithIndifferentAccess.new(source_doc).freeze
|
55
46
|
@response = response
|
56
47
|
apply_extensions
|
57
48
|
end
|
58
49
|
|
59
|
-
# the wrapper method to the @_source object.
|
60
|
-
# If a method is missing, it gets sent to @_source
|
61
|
-
# with all of the original params and block
|
62
|
-
def method_missing(m, *args, &b)
|
63
|
-
return super if m == :to_hash
|
64
|
-
|
65
|
-
if _source_responds_to?(m)
|
66
|
-
Deprecation.warn(Blacklight::Solr::Document, "Blacklight::Document##{m} is deprecated; use obj.to_h.#{m} instead.")
|
67
|
-
_source.send(m, *args, &b)
|
68
|
-
else
|
69
|
-
super
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
def respond_to_missing? m, *args
|
74
|
-
return super if %i(empty? to_hash).include?(m)
|
75
|
-
_source_responds_to?(m, *args) || super
|
76
|
-
end
|
77
|
-
|
78
50
|
# Helper method to check if value/multi-values exist for a given key.
|
79
51
|
# The value can be a string, or a RegExp
|
80
52
|
# Multiple "values" can be given; only one needs to match.
|
@@ -107,7 +79,7 @@ module Blacklight::Document
|
|
107
79
|
def fetch key, *default
|
108
80
|
if key? key
|
109
81
|
self[key]
|
110
|
-
elsif default.empty?
|
82
|
+
elsif default.empty? && !block_given?
|
111
83
|
raise KeyError, "key not found \"#{key}\""
|
112
84
|
else
|
113
85
|
(yield(self) if block_given?) || default.first
|
@@ -122,11 +94,11 @@ module Blacklight::Document
|
|
122
94
|
'catalog/document'
|
123
95
|
end
|
124
96
|
|
125
|
-
def has_highlight_field?
|
97
|
+
def has_highlight_field? _k
|
126
98
|
false
|
127
99
|
end
|
128
100
|
|
129
|
-
def highlight_field
|
101
|
+
def highlight_field _k
|
130
102
|
nil
|
131
103
|
end
|
132
104
|
|
@@ -161,10 +133,4 @@ module Blacklight::Document
|
|
161
133
|
end
|
162
134
|
end
|
163
135
|
end
|
164
|
-
|
165
|
-
private
|
166
|
-
|
167
|
-
def _source_responds_to? *args
|
168
|
-
_source && self != _source && _source.respond_to?(*args)
|
169
|
-
end
|
170
136
|
end
|
@@ -1,5 +1,4 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
require 'rsolr'
|
3
2
|
##
|
4
3
|
##
|
5
4
|
# = Introduction
|
@@ -16,20 +15,20 @@ require 'rsolr'
|
|
16
15
|
#
|
17
16
|
|
18
17
|
module Blacklight::Solr::Document
|
19
|
-
autoload :MoreLikeThis, 'blacklight/solr/document/more_like_this'
|
20
|
-
|
21
18
|
extend ActiveSupport::Concern
|
22
19
|
include Blacklight::Document
|
23
20
|
include Blacklight::Document::ActiveModelShim
|
24
|
-
|
21
|
+
|
22
|
+
def more_like_this
|
23
|
+
response.more_like(self).map { |doc| self.class.new(doc, response) }
|
24
|
+
end
|
25
25
|
|
26
26
|
def has_highlight_field? k
|
27
|
-
return false if response['highlighting'].blank?
|
28
|
-
|
29
|
-
response['highlighting'][self.id].key? k.to_s
|
27
|
+
return false if response['highlighting'].blank? || response['highlighting'][id].blank?
|
28
|
+
response['highlighting'][id].key? k.to_s
|
30
29
|
end
|
31
30
|
|
32
31
|
def highlight_field k
|
33
|
-
response['highlighting'][
|
32
|
+
response['highlighting'][id][k.to_s].map(&:html_safe) if has_highlight_field? k
|
34
33
|
end
|
35
34
|
end
|
@@ -2,19 +2,17 @@
|
|
2
2
|
module Blacklight
|
3
3
|
module Suggest
|
4
4
|
class Response
|
5
|
-
attr_reader :response, :request_params, :suggest_path
|
5
|
+
attr_reader :response, :request_params, :suggest_path
|
6
6
|
|
7
7
|
##
|
8
8
|
# Creates a suggest response
|
9
9
|
# @param [RSolr::HashWithResponse] response
|
10
10
|
# @param [Hash] request_params
|
11
11
|
# @param [String] suggest_path
|
12
|
-
|
13
|
-
def initialize(response, request_params, suggest_path, suggester_name)
|
12
|
+
def initialize(response, request_params, suggest_path)
|
14
13
|
@response = response
|
15
14
|
@request_params = request_params
|
16
15
|
@suggest_path = suggest_path
|
17
|
-
@suggester_name = suggester_name
|
18
16
|
end
|
19
17
|
|
20
18
|
##
|
@@ -22,7 +20,7 @@ module Blacklight
|
|
22
20
|
# present
|
23
21
|
# @return [Array]
|
24
22
|
def suggestions
|
25
|
-
|
23
|
+
response.try(:[], suggest_path).try(:[], 'mySuggester').try(:[], request_params[:q]).try(:[], 'suggestions') || []
|
26
24
|
end
|
27
25
|
end
|
28
26
|
end
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
module Blacklight::User
|
3
3
|
# This gives us an is_blacklight_user method that can be included in
|
4
|
-
# the containing applications models.
|
5
|
-
# SEE ALSO: The /lib/blacklight/engine.rb class for how when this
|
4
|
+
# the containing applications models.
|
5
|
+
# SEE ALSO: The /lib/blacklight/engine.rb class for how when this
|
6
6
|
# is injected into the hosting application through ActiveRecord::Base extend
|
7
7
|
def self.included(base)
|
8
8
|
return unless base.respond_to? :has_many
|
9
|
-
base.send :has_many, :bookmarks, :
|
10
|
-
base.send :has_many, :searches, :
|
9
|
+
base.send :has_many, :bookmarks, dependent: :destroy, as: :user
|
10
|
+
base.send :has_many, :searches, dependent: :destroy, as: :user
|
11
11
|
end
|
12
12
|
|
13
13
|
def bookmarks_for_documents documents = []
|
@@ -21,9 +21,9 @@ module Blacklight::User
|
|
21
21
|
def document_is_bookmarked?(document)
|
22
22
|
bookmarks_for_documents([document]).any?
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
25
|
# returns a Bookmark object if there is one for document_id, else
|
26
|
-
# nil.
|
26
|
+
# nil.
|
27
27
|
def existing_bookmark_for(document)
|
28
28
|
bookmarks_for_documents([document]).first
|
29
29
|
end
|
data/app/models/record_mailer.rb
CHANGED
@@ -1,25 +1,24 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
# Only works for documents with a #to_marc right now.
|
2
|
+
# Only works for documents with a #to_marc right now.
|
3
3
|
class RecordMailer < ActionMailer::Base
|
4
4
|
def email_record(documents, details, url_gen_params)
|
5
|
-
|
6
5
|
title = begin
|
7
6
|
documents.first.to_semantic_values[:title]
|
8
7
|
rescue
|
9
8
|
I18n.t('blacklight.email.text.default_title')
|
10
9
|
end
|
11
|
-
subject = I18n.t('blacklight.email.text.subject', :
|
10
|
+
subject = I18n.t('blacklight.email.text.subject', count: documents.length, title: title)
|
12
11
|
|
13
12
|
@documents = documents
|
14
13
|
@message = details[:message]
|
15
14
|
@url_gen_params = url_gen_params
|
16
15
|
|
17
|
-
mail(:
|
16
|
+
mail(to: details[:to], subject: subject)
|
18
17
|
end
|
19
|
-
|
18
|
+
|
20
19
|
def sms_record(documents, details, url_gen_params)
|
21
20
|
@documents = documents
|
22
21
|
@url_gen_params = url_gen_params
|
23
|
-
mail(:
|
22
|
+
mail(to: details[:to], subject: "")
|
24
23
|
end
|
25
24
|
end
|
data/app/models/search.rb
CHANGED
@@ -1,23 +1,19 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
class Search < ActiveRecord::Base
|
3
|
-
belongs_to_arguments = { optional: true } if Rails.version >= '5.0.0'
|
4
2
|
|
5
|
-
|
3
|
+
class Search < ApplicationRecord
|
4
|
+
belongs_to :user, optional: true
|
6
5
|
|
7
|
-
|
8
|
-
serialize :query_params, Blacklight::SearchParamsYamlCoder
|
9
|
-
|
10
|
-
attr_accessible :query_params if Blacklight::Utils.needs_attr_accessible?
|
6
|
+
serialize :query_params
|
11
7
|
|
12
8
|
# A Search instance is considered a saved search if it has a user_id.
|
13
9
|
def saved?
|
14
|
-
|
10
|
+
user_id?
|
15
11
|
end
|
16
12
|
|
17
13
|
# delete old, unsaved searches
|
18
14
|
def self.delete_old_searches(days_old)
|
19
15
|
raise ArgumentError, 'days_old is expected to be a number' unless days_old.is_a?(Numeric)
|
20
16
|
raise ArgumentError, 'days_old is expected to be greater than 0' if days_old <= 0
|
21
|
-
|
17
|
+
where(['created_at < ? AND user_id IS NULL', Time.zone.today - days_old]).destroy_all
|
22
18
|
end
|
23
19
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
module Blacklight
|
2
|
-
# Renders a field and handles
|
2
|
+
# Renders a field and handles link_to_facet or helper_method if supplied
|
3
3
|
class FieldPresenter
|
4
4
|
def initialize(controller, document, field_config, options)
|
5
5
|
@controller = controller
|
@@ -9,7 +9,7 @@ module Blacklight
|
|
9
9
|
end
|
10
10
|
|
11
11
|
attr_reader :controller, :document, :field_config, :options
|
12
|
-
|
12
|
+
|
13
13
|
def render
|
14
14
|
if options[:value]
|
15
15
|
# This prevents helper methods from drawing.
|
@@ -24,8 +24,8 @@ module Blacklight
|
|
24
24
|
|
25
25
|
private
|
26
26
|
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
def retrieve_values
|
28
|
+
FieldRetriever.new(document, field_config).fetch
|
29
|
+
end
|
30
30
|
end
|
31
31
|
end
|
@@ -1,10 +1,10 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
module Blacklight
|
3
3
|
class IndexPresenter
|
4
|
-
|
5
|
-
self.
|
4
|
+
class_attribute :thumbnail_presenter
|
5
|
+
self.thumbnail_presenter = ThumbnailPresenter
|
6
6
|
|
7
|
-
attr_reader :document, :configuration, :view_context
|
7
|
+
attr_reader :document, :configuration, :view_context, :view_config
|
8
8
|
|
9
9
|
# @param [SolrDocument] document
|
10
10
|
# @param [ActionView::Base] view_context scope for linking and generating urls
|
@@ -13,6 +13,7 @@ module Blacklight
|
|
13
13
|
@document = document
|
14
14
|
@view_context = view_context
|
15
15
|
@configuration = configuration
|
16
|
+
@view_config = configuration.view_config(view_context.document_index_view_type)
|
16
17
|
end
|
17
18
|
|
18
19
|
##
|
@@ -24,93 +25,55 @@ module Blacklight
|
|
24
25
|
def label(field_or_string_or_proc, opts = {})
|
25
26
|
config = Configuration::NullField.new
|
26
27
|
value = case field_or_string_or_proc
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
28
|
+
when Symbol
|
29
|
+
config = field_config(field_or_string_or_proc)
|
30
|
+
document[field_or_string_or_proc]
|
31
|
+
when Proc
|
32
|
+
field_or_string_or_proc.call(document, opts)
|
33
|
+
when String
|
34
|
+
field_or_string_or_proc
|
35
|
+
end
|
35
36
|
|
36
37
|
value ||= document.id
|
37
38
|
field_values(config, value: value)
|
38
39
|
end
|
39
40
|
|
40
|
-
# @deprecated
|
41
|
-
def render_document_index_label(*args)
|
42
|
-
label(*args)
|
43
|
-
end
|
44
|
-
deprecation_deprecate render_document_index_label: 'Use #label instead'
|
45
|
-
|
46
41
|
##
|
47
42
|
# Render the index field label for a document
|
48
43
|
#
|
49
44
|
# Allow an extention point where information in the document
|
50
45
|
# may drive the value of the field
|
51
|
-
# @param [
|
46
|
+
# @param [String] field
|
52
47
|
# @param [Hash] options
|
53
48
|
# @option options [String] :value
|
54
|
-
def field_value
|
55
|
-
|
56
|
-
when Blacklight::Configuration::Field
|
57
|
-
field_or_name
|
58
|
-
when String, Symbol
|
59
|
-
Deprecation.warn(self, "You provided a #{field_or_name.class} value to IndexPresenter#field_value " \
|
60
|
-
"Provide a Blacklight::Configuration::Field instead. This behavior is deprecated in Blacklight 7")
|
61
|
-
field_config(field_or_name)
|
62
|
-
else
|
63
|
-
Deprecation.warn(self, "You provided a #{field_or_name.class} value to IndexPresenter#field_value. " \
|
64
|
-
"This will be silently ignored and will be an error in Blacklight 7.")
|
65
|
-
|
66
|
-
Configuration::NullField.new
|
67
|
-
end
|
68
|
-
field_values(field, options)
|
69
|
-
end
|
70
|
-
|
71
|
-
# @deprecated
|
72
|
-
def render_index_field_value(*args)
|
73
|
-
field_value(*args)
|
74
|
-
end
|
75
|
-
deprecation_deprecate render_index_field_value: 'replaced by #field_value'
|
76
|
-
|
77
|
-
# @deprecated
|
78
|
-
def get_field_values(field_config, options={})
|
49
|
+
def field_value field, options = {}
|
50
|
+
field_config = field_config(field)
|
79
51
|
field_values(field_config, options)
|
80
52
|
end
|
81
|
-
deprecation_deprecate get_field_values: "replaced by #field_value"
|
82
|
-
|
83
|
-
# @deprecated
|
84
|
-
def render_field_values(values, field_config = Configuration::NullField.new)
|
85
|
-
field_values(field_config, value: Array(values))
|
86
|
-
end
|
87
|
-
deprecation_deprecate render_field_values: "replaced by #field_value"
|
88
53
|
|
89
|
-
|
90
|
-
|
91
|
-
field_values(field_config, value: Array(values))
|
54
|
+
def thumbnail
|
55
|
+
@thumbnail ||= thumbnail_presenter.new(document, view_context, view_config)
|
92
56
|
end
|
93
|
-
deprecation_deprecate render_values: "replaced by #field_value"
|
94
57
|
|
95
58
|
private
|
96
59
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
60
|
+
##
|
61
|
+
# Get the value for a document's field, and prepare to render it.
|
62
|
+
# - highlight_field
|
63
|
+
# - accessor
|
64
|
+
# - solr field
|
65
|
+
#
|
66
|
+
# Rendering:
|
67
|
+
# - helper_method
|
68
|
+
# - link_to_facet
|
69
|
+
# @param [Blacklight::Configuration::Field] field_config solr field configuration
|
70
|
+
# @param [Hash] options additional options to pass to the rendering helpers
|
71
|
+
def field_values(field_config, options = {})
|
72
|
+
FieldPresenter.new(view_context, document, field_config, options).render
|
73
|
+
end
|
111
74
|
|
112
|
-
|
113
|
-
|
114
|
-
|
75
|
+
def field_config(field)
|
76
|
+
configuration.index_fields.fetch(field) { Configuration::NullField.new(field) }
|
77
|
+
end
|
115
78
|
end
|
116
79
|
end
|
@@ -4,19 +4,22 @@ module Blacklight
|
|
4
4
|
include Blacklight::Facet
|
5
5
|
|
6
6
|
# @param [Solr::Response] response raw solr response.
|
7
|
-
# @param [Array<SolrDocument>] documents a list of documents
|
8
7
|
# @param [Array] facets list of facets
|
9
|
-
def initialize(response,
|
8
|
+
def initialize(response, facets, blacklight_config)
|
10
9
|
@response = response
|
11
|
-
@documents = documents
|
12
10
|
@facets = facets
|
13
11
|
@blacklight_config = blacklight_config
|
14
12
|
end
|
15
13
|
|
16
|
-
attr_reader :
|
14
|
+
attr_reader :blacklight_config
|
15
|
+
|
16
|
+
def documents
|
17
|
+
@response.documents
|
18
|
+
end
|
17
19
|
|
18
20
|
def search_facets_as_json
|
19
21
|
@facets.as_json.each do |f|
|
22
|
+
f.stringify_keys!
|
20
23
|
f.delete "options"
|
21
24
|
f["label"] = facet_configuration_for_field(f["name"]).label
|
22
25
|
f["items"] = f["items"].as_json.each do |i|
|
@@ -12,7 +12,7 @@ module Blacklight
|
|
12
12
|
|
13
13
|
attr_reader :view_context, :document, :options
|
14
14
|
|
15
|
-
# Renders links to alternate representations
|
15
|
+
# Renders links to alternate representations
|
16
16
|
# provided by export formats. Returns empty string if no links available.
|
17
17
|
def render
|
18
18
|
seen = Set.new
|
@@ -12,12 +12,12 @@ module Blacklight
|
|
12
12
|
|
13
13
|
attr_reader :values, :config, :document, :context, :options, :stack
|
14
14
|
|
15
|
-
|
15
|
+
private
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
def next_step(output_values)
|
18
|
+
first, *rest = *stack
|
19
|
+
first.new(output_values, config, document, context, options, rest).render
|
20
|
+
end
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -4,20 +4,20 @@ module Blacklight
|
|
4
4
|
def render
|
5
5
|
if config.helper_method
|
6
6
|
render_helper # short circut the rest of the steps
|
7
|
-
else
|
7
|
+
else
|
8
8
|
next_step(values)
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
12
12
|
private
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
14
|
+
def render_helper
|
15
|
+
context.send(config.helper_method,
|
16
|
+
options.merge(document: document,
|
17
|
+
field: config.field,
|
18
|
+
config: config,
|
19
|
+
value: values))
|
20
|
+
end
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -1,35 +1,35 @@
|
|
1
1
|
module Blacklight
|
2
2
|
module Rendering
|
3
3
|
class LinkToFacet < AbstractStep
|
4
|
+
extend Deprecation
|
4
5
|
def render
|
5
|
-
|
6
|
-
return next_step(values) unless config.link_to_search
|
6
|
+
return next_step(values) unless config.link_to_facet
|
7
7
|
next_step(render_link)
|
8
8
|
end
|
9
9
|
|
10
10
|
private
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
12
|
+
# This allows the link to wrap an itemprop
|
13
|
+
def render_link
|
14
|
+
values.map { |v| link(link_field, v) }
|
15
|
+
end
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
17
|
+
def link_field
|
18
|
+
return config.key if config.link_to_facet == true
|
19
|
+
config.link_to_facet
|
20
|
+
end
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
|
22
|
+
def link(field, v)
|
23
|
+
context.link_to v, search_path(field, v)
|
24
|
+
end
|
25
25
|
|
26
|
-
|
27
|
-
|
28
|
-
|
26
|
+
def search_path(field, v)
|
27
|
+
context.search_action_path(facet_params(field, v))
|
28
|
+
end
|
29
29
|
|
30
|
-
|
31
|
-
|
32
|
-
|
30
|
+
def facet_params(field, v)
|
31
|
+
context.search_state.reset.add_facet_params(field, v)
|
32
|
+
end
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
@@ -26,12 +26,12 @@ module Blacklight
|
|
26
26
|
first.new(values, config, document, context, options, rest).render
|
27
27
|
end
|
28
28
|
|
29
|
-
|
29
|
+
private
|
30
30
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
31
|
+
# Ordered list of operations, Terminator must be at the end.
|
32
|
+
def stack
|
33
|
+
operations + [Terminator]
|
34
|
+
end
|
35
35
|
end
|
36
36
|
end
|
37
37
|
end
|