blacklight 6.19.1 → 7.1.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 +478 -382
- data/.solr_wrapper.yml +9 -2
- data/.travis.yml +23 -25
- data/CONTRIBUTING.md +48 -0
- data/Gemfile +3 -2
- 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 +483 -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 +4 -13
- 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 +20 -30
- data/app/controllers/concerns/blacklight/catalog.rb +256 -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 +10 -2
- 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/searchable.rb +17 -0
- 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 +100 -89
- data/app/helpers/blacklight/component_helper_behavior.rb +21 -21
- data/app/helpers/blacklight/configuration_helper_behavior.rb +30 -58
- data/app/helpers/blacklight/facets_helper_behavior.rb +56 -52
- 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 -3
- data/app/helpers/blacklight/render_constraints_helper_behavior.rb +8 -6
- data/app/helpers/blacklight/render_partials_helper_behavior.rb +207 -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/javascript/blacklight/checkbox_submit.js +134 -0
- 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 +58 -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 +5 -5
- 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 +3 -3
- 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 +8 -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 +153 -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 +23 -18
- 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_group.html.erb +19 -0
- data/app/views/catalog/_facet_index_navigation.html.erb +5 -4
- data/app/views/catalog/_facet_layout.html.erb +6 -8
- 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 +3 -21
- 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 +10 -8
- data/app/views/catalog/_show_tools.html.erb +10 -21
- 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 +1 -7
- 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 +27 -29
- 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 +8 -6
- 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/record_mailer/email_record.text.erb +6 -5
- data/app/views/search_history/index.html.erb +16 -21
- data/app/views/{_flash_msg.html.erb → shared/_flash_msg.html.erb} +5 -3
- 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 -11
- 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 +100 -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 +10 -7
- 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 +27 -31
- data/lib/blacklight/version.rb +1 -1
- data/lib/generators/blacklight/assets_generator.rb +12 -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 +15 -34
- 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 +2793 -0
- data/package.json +30 -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 +17 -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 +4 -5
- 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 +8 -9
- 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 -98
- 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 -5
- 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} +61 -54
- data/spec/helpers/blacklight_helper_spec.rb +62 -151
- data/spec/helpers/catalog_helper_spec.rb +91 -98
- 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 +10 -3
- 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 +58 -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 +60 -60
- 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 +69 -68
- data/spec/models/blacklight/solr/search_builder_spec.rb +150 -164
- data/spec/models/blacklight/suggest/response_spec.rb +2 -1
- 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 -15
- data/spec/services/blacklight/search_service_spec.rb +495 -0
- data/spec/spec_helper.rb +12 -24
- 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 +37 -16
- 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 +7 -10
- 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 +6 -6
- data/template.demo.rb +4 -12
- metadata +174 -207
- 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/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 -629
- 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,12 +1,19 @@
|
|
1
|
-
//= require blacklight/core
|
2
1
|
(function($) {
|
3
|
-
Blacklight.
|
2
|
+
Blacklight.doSearchContextBehavior = function() {
|
3
|
+
if (typeof Blacklight.do_search_context_behavior == 'function') {
|
4
|
+
console.warn("do_search_context_behavior is deprecated. Use doSearchContextBehavior instead.");
|
5
|
+
return Blacklight.do_search_context_behavior();
|
6
|
+
}
|
4
7
|
$('a[data-context-href]').on('click.search-context', Blacklight.handleSearchContextMethod);
|
5
8
|
};
|
6
9
|
|
7
10
|
// this is the $.rails.handleMethod with a couple adjustments, described inline:
|
8
11
|
// first, we're attaching this directly to the event handler, so we can check for meta-keys
|
9
12
|
Blacklight.handleSearchContextMethod = function(event) {
|
13
|
+
if (typeof Blacklight.handle_search_context_method == 'function') {
|
14
|
+
console.warn("handle_search_context_method is deprecated. Use handleSearchContextMethod instead.");
|
15
|
+
return Blacklight.handle_search_context_method(event);
|
16
|
+
}
|
10
17
|
var link = $(this);
|
11
18
|
|
12
19
|
// instead of using the normal href, we need to use the context href instead
|
@@ -37,6 +44,6 @@
|
|
37
44
|
};
|
38
45
|
|
39
46
|
Blacklight.onLoad(function() {
|
40
|
-
|
47
|
+
Blacklight.doSearchContextBehavior();
|
41
48
|
});
|
42
49
|
})(jQuery);
|
@@ -4,7 +4,7 @@ module Blacklight
|
|
4
4
|
# displayable. You have to ask Solr for limit+1, to get enough
|
5
5
|
# results to see if 'more' are available'. That is, the all_facet_values
|
6
6
|
# arg in constructor should be the result of asking solr for limit+1
|
7
|
-
# values.
|
7
|
+
# values.
|
8
8
|
# This is a workaround for the fact that Solr itself can't compute
|
9
9
|
# the total values for a given facet field,
|
10
10
|
# so we cannot know how many "pages" there are.
|
@@ -24,9 +24,9 @@ module Blacklight
|
|
24
24
|
# asking solr for n+1 facet values.
|
25
25
|
# options:
|
26
26
|
# :limit => number to display per page, or (default) ?. Nil means
|
27
|
-
# display all with no previous or next.
|
27
|
+
# display all with no previous or next.
|
28
28
|
# :offset => current item offset, default 0
|
29
|
-
# :sort => 'count' or 'index', solr tokens for facet value sorting, default 'count'.
|
29
|
+
# :sort => 'count' or 'index', solr tokens for facet value sorting, default 'count'.
|
30
30
|
def initialize(all_facet_values, arguments = {})
|
31
31
|
# to_s.to_i will conveniently default to 0 if nil
|
32
32
|
@offset = arguments[:offset].to_s.to_i
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Blacklight
|
4
|
+
class Icon
|
5
|
+
attr_reader :icon_name
|
6
|
+
##
|
7
|
+
# @param [String, Symbol] icon_name
|
8
|
+
# @param [Hash] options
|
9
|
+
# @param [String] classes additional classes separated by a string
|
10
|
+
def initialize(icon_name, classes: '', aria_hidden: false)
|
11
|
+
@icon_name = icon_name
|
12
|
+
@classes = classes
|
13
|
+
@aria_hidden = aria_hidden
|
14
|
+
end
|
15
|
+
|
16
|
+
##
|
17
|
+
# Returns the raw source, but you could extend this to add additional attributes
|
18
|
+
# @return [String]
|
19
|
+
def svg
|
20
|
+
file_source
|
21
|
+
end
|
22
|
+
|
23
|
+
##
|
24
|
+
# @return [Hash]
|
25
|
+
def options
|
26
|
+
{
|
27
|
+
class: classes,
|
28
|
+
"aria-hidden": (true if @aria_hidden)
|
29
|
+
}
|
30
|
+
end
|
31
|
+
|
32
|
+
##
|
33
|
+
# @return [String]
|
34
|
+
def path
|
35
|
+
"blacklight/#{icon_name}.svg"
|
36
|
+
end
|
37
|
+
|
38
|
+
##
|
39
|
+
# @return [String]
|
40
|
+
def file_source
|
41
|
+
raise Blacklight::Exceptions::IconNotFound, "Could not find #{path}" if file.blank?
|
42
|
+
|
43
|
+
file.source.force_encoding('UTF-8')
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def file
|
49
|
+
# Rails.application.assets is `nil` in production mode (where compile assets is enabled).
|
50
|
+
# This workaround is based off of this comment: https://github.com/fphilipe/premailer-rails/issues/145#issuecomment-225992564
|
51
|
+
(Rails.application.assets || ::Sprockets::Railtie.build_environment(Rails.application)).find_asset(path)
|
52
|
+
end
|
53
|
+
|
54
|
+
def classes
|
55
|
+
" blacklight-icons #{@classes} ".strip
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -4,7 +4,7 @@ module Blacklight::Solr
|
|
4
4
|
# displayable. You have to ask Solr for limit+1, to get enough
|
5
5
|
# results to see if 'more' are available'. That is, the all_facet_values
|
6
6
|
# arg in constructor should be the result of asking solr for limit+1
|
7
|
-
# values.
|
7
|
+
# values.
|
8
8
|
# This is a workaround for the fact that Solr itself can't compute
|
9
9
|
# the total values for a given facet field,
|
10
10
|
# so we cannot know how many "pages" there are.
|
@@ -14,9 +14,9 @@ module Blacklight::Solr
|
|
14
14
|
# asking solr for n+1 facet values.
|
15
15
|
# options:
|
16
16
|
# :limit => number to display per page, or (default) nil. Nil means
|
17
|
-
# display all with no previous or next.
|
17
|
+
# display all with no previous or next.
|
18
18
|
# :offset => current item offset, default 0
|
19
|
-
# :sort => 'count' or 'index', solr tokens for facet value sorting, default 'count'.
|
19
|
+
# :sort => 'count' or 'index', solr tokens for facet value sorting, default 'count'.
|
20
20
|
def initialize(all_facet_values, arguments = {})
|
21
21
|
super
|
22
22
|
|
data/app/models/bookmark.rb
CHANGED
@@ -1,27 +1,22 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
-
|
3
|
-
|
2
|
+
|
3
|
+
class Bookmark < ApplicationRecord
|
4
4
|
belongs_to :user, polymorphic: true
|
5
5
|
belongs_to :document, polymorphic: true
|
6
6
|
|
7
7
|
validates :user_id, presence: true
|
8
8
|
|
9
|
-
if Blacklight::Utils.needs_attr_accessible?
|
10
|
-
attr_accessible :id, :document_id, :document_type, :title
|
11
|
-
end
|
12
|
-
|
13
9
|
def document
|
14
10
|
document_type.new document_type.unique_key => document_id
|
15
11
|
end
|
16
|
-
|
12
|
+
|
17
13
|
def document_type
|
18
14
|
value = super if defined?(super)
|
19
15
|
value &&= value.constantize
|
20
|
-
value
|
16
|
+
value || default_document_type
|
21
17
|
end
|
22
|
-
|
18
|
+
|
23
19
|
def default_document_type
|
24
20
|
SolrDocument
|
25
21
|
end
|
26
|
-
|
27
22
|
end
|
@@ -5,32 +5,32 @@ module Blacklight::Configurable
|
|
5
5
|
included do
|
6
6
|
helper_method :blacklight_config if respond_to? :helper_method
|
7
7
|
end
|
8
|
-
|
8
|
+
|
9
9
|
#instance methods for blacklight_config, so get a deep copy of the class-level config
|
10
10
|
def blacklight_config
|
11
11
|
@blacklight_config ||= self.class.blacklight_config.deep_copy
|
12
12
|
end
|
13
13
|
attr_writer :blacklight_config
|
14
14
|
|
15
|
-
module ClassMethods
|
15
|
+
module ClassMethods
|
16
16
|
def copy_blacklight_config_from(other_class)
|
17
|
-
self.blacklight_config = other_class.blacklight_config.inheritable_copy
|
17
|
+
self.blacklight_config = other_class.blacklight_config.inheritable_copy(self)
|
18
18
|
end
|
19
|
-
|
19
|
+
|
20
20
|
# lazy load a deep_copy of superclass if present, else
|
21
|
-
# a default_configuration, which will be legacy load or new empty config.
|
21
|
+
# a default_configuration, which will be legacy load or new empty config.
|
22
22
|
# note the @blacklight_config variable is a ruby 'instance method on class
|
23
23
|
# object' that won't be automatically available to subclasses, that's why
|
24
|
-
# we lazy load to 'inherit' how we want.
|
24
|
+
# we lazy load to 'inherit' how we want.
|
25
25
|
def blacklight_config
|
26
26
|
@blacklight_config ||= if superclass.respond_to?(:blacklight_config)
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
27
|
+
superclass.blacklight_config.build(self)
|
28
|
+
else
|
29
|
+
default_configuration
|
30
|
+
end
|
31
31
|
end
|
32
32
|
attr_writer :blacklight_config
|
33
|
-
|
33
|
+
|
34
34
|
#simply a convenience method for blacklight_config.configure
|
35
35
|
def configure_blacklight(*args, &block)
|
36
36
|
blacklight_config.configure(*args, &block)
|
@@ -39,12 +39,12 @@ module Blacklight::Configurable
|
|
39
39
|
##
|
40
40
|
# The default configuration object
|
41
41
|
def default_configuration
|
42
|
-
Blacklight::Configurable.default_configuration.inheritable_copy
|
42
|
+
Blacklight::Configurable.default_configuration.inheritable_copy(self)
|
43
43
|
end
|
44
44
|
end
|
45
45
|
|
46
46
|
def self.default_configuration
|
47
|
-
|
47
|
+
@default_configuration ||= Blacklight::Configuration.new
|
48
48
|
end
|
49
49
|
|
50
50
|
def self.default_configuration= config
|
@@ -16,9 +16,6 @@ require 'globalid'
|
|
16
16
|
# transformation formats.
|
17
17
|
#
|
18
18
|
module Blacklight::Document
|
19
|
-
extend Deprecation
|
20
|
-
self.deprecation_horizon = 'blacklight 7.0'
|
21
|
-
|
22
19
|
autoload :ActiveModelShim, 'blacklight/document/active_model_shim'
|
23
20
|
autoload :SchemaOrg, 'blacklight/document/schema_org'
|
24
21
|
autoload :CacheKey, 'blacklight/document/cache_key'
|
@@ -43,36 +40,13 @@ module Blacklight::Document
|
|
43
40
|
|
44
41
|
attr_reader :response, :_source
|
45
42
|
alias_method :solr_response, :response
|
46
|
-
delegate :[], :key?, :keys, :to_h, to: :_source
|
47
|
-
|
48
|
-
def initialize(source_doc={}, response=nil)
|
49
|
-
@_source = if source_doc.respond_to?(:to_hash)
|
50
|
-
ActiveSupport::HashWithIndifferentAccess.new(source_doc)
|
51
|
-
else
|
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
|
55
|
-
@response = response
|
56
|
-
apply_extensions
|
57
|
-
end
|
58
43
|
|
59
|
-
|
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
|
44
|
+
delegate :[], :key?, :keys, :to_h, :as_json, to: :_source
|
72
45
|
|
73
|
-
def
|
74
|
-
|
75
|
-
|
46
|
+
def initialize(source_doc = {}, response = nil)
|
47
|
+
@_source = ActiveSupport::HashWithIndifferentAccess.new(source_doc).freeze
|
48
|
+
@response = response
|
49
|
+
apply_extensions
|
76
50
|
end
|
77
51
|
|
78
52
|
# Helper method to check if value/multi-values exist for a given key.
|
@@ -107,7 +81,7 @@ module Blacklight::Document
|
|
107
81
|
def fetch key, *default
|
108
82
|
if key? key
|
109
83
|
self[key]
|
110
|
-
elsif default.empty?
|
84
|
+
elsif default.empty? && !block_given?
|
111
85
|
raise KeyError, "key not found \"#{key}\""
|
112
86
|
else
|
113
87
|
(yield(self) if block_given?) || default.first
|
@@ -122,11 +96,11 @@ module Blacklight::Document
|
|
122
96
|
'catalog/document'
|
123
97
|
end
|
124
98
|
|
125
|
-
def has_highlight_field?
|
99
|
+
def has_highlight_field? _k
|
126
100
|
false
|
127
101
|
end
|
128
102
|
|
129
|
-
def highlight_field
|
103
|
+
def highlight_field _k
|
130
104
|
nil
|
131
105
|
end
|
132
106
|
|
@@ -144,11 +118,21 @@ module Blacklight::Document
|
|
144
118
|
def unique_key
|
145
119
|
@unique_key ||= 'id'
|
146
120
|
end
|
147
|
-
end
|
148
121
|
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
122
|
+
# Define an attribute reader on a document model
|
123
|
+
# @Example
|
124
|
+
# class SolrDocument
|
125
|
+
# include Blacklight::Solr::Document
|
126
|
+
# attribute :title, Blacklight::Types::String, 'title_tesim'
|
127
|
+
# end
|
128
|
+
#
|
129
|
+
# doc = SolrDocument.new(title_tesim: ["One flew over the cuckoo's nest"])
|
130
|
+
# doc.title
|
131
|
+
# #=> "One flew over the cuckoo's nest"
|
132
|
+
def attribute(name, type, field)
|
133
|
+
define_method name do
|
134
|
+
type.coerce(self[field])
|
135
|
+
end
|
136
|
+
end
|
153
137
|
end
|
154
138
|
end
|
@@ -29,27 +29,24 @@ module Blacklight::Document
|
|
29
29
|
repository.find(id).documents.first
|
30
30
|
end
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
##
|
34
34
|
# Unique ID for the document
|
35
35
|
def id
|
36
36
|
self[self.class.unique_key]
|
37
37
|
end
|
38
38
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
39
|
+
def ==(other)
|
40
|
+
super ||
|
41
|
+
(other.instance_of?(self.class) &&
|
42
|
+
id &&
|
43
|
+
other.id == id)
|
43
44
|
end
|
44
|
-
|
45
|
+
|
45
46
|
def _read_attribute(attr)
|
46
47
|
self[attr]
|
47
48
|
end
|
48
49
|
|
49
|
-
def as_json(options = nil)
|
50
|
-
_source.as_json(options)
|
51
|
-
end
|
52
|
-
|
53
50
|
##
|
54
51
|
# ActiveRecord::Persistence method stubs to get non-AR objects to
|
55
52
|
# play nice with e.g. Blacklight's bookmarks
|
@@ -60,7 +57,7 @@ module Blacklight::Document
|
|
60
57
|
def destroyed?
|
61
58
|
false
|
62
59
|
end
|
63
|
-
|
60
|
+
|
64
61
|
def new_record?
|
65
62
|
false
|
66
63
|
end
|
@@ -9,7 +9,7 @@ module Blacklight::Document::CacheKey
|
|
9
9
|
def cache_key
|
10
10
|
if new_record?
|
11
11
|
"#{self.class.model_name.cache_key}/new"
|
12
|
-
elsif
|
12
|
+
elsif key? cache_version_key
|
13
13
|
cache_version_value = self[cache_version_key]
|
14
14
|
"#{self.class.model_name.cache_key}/#{id}-#{Array(cache_version_value).join}"
|
15
15
|
else
|
@@ -5,7 +5,7 @@ require 'builder'
|
|
5
5
|
module Blacklight::Document::DublinCore
|
6
6
|
def self.extended(document)
|
7
7
|
# Register our exportable formats
|
8
|
-
Blacklight::Document::DublinCore.register_export_formats(
|
8
|
+
Blacklight::Document::DublinCore.register_export_formats(document)
|
9
9
|
end
|
10
10
|
|
11
11
|
def self.register_export_formats(document)
|
@@ -26,7 +26,7 @@ module Blacklight::Document::DublinCore
|
|
26
26
|
'xmlns:dc' => "http://purl.org/dc/elements/1.1/",
|
27
27
|
'xmlns:xsi' => "http://www.w3.org/2001/XMLSchema-instance",
|
28
28
|
'xsi:schemaLocation' => %(http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd)) do
|
29
|
-
|
29
|
+
to_semantic_values.select { |field, _values| dublin_core_field_name? field }.each do |field, values|
|
30
30
|
Array.wrap(values).each do |v|
|
31
31
|
xml.tag! "dc:#{field}", v
|
32
32
|
end
|
@@ -3,12 +3,12 @@
|
|
3
3
|
module Blacklight::Document::Email
|
4
4
|
# Return a text string that will be the body of the email
|
5
5
|
def to_email_text
|
6
|
-
semantics =
|
6
|
+
semantics = to_semantic_values
|
7
7
|
body = []
|
8
|
-
body << I18n.t('blacklight.email.text.title', value: semantics[:title].join(" "))
|
9
|
-
body << I18n.t('blacklight.email.text.author', value: semantics[:author].join(" "))
|
10
|
-
body << I18n.t('blacklight.email.text.format', value: semantics[:format].join(" "))
|
11
|
-
body << I18n.t('blacklight.email.text.language', value: semantics[:language].join(" "))
|
8
|
+
body << I18n.t('blacklight.email.text.title', value: semantics[:title].join(" ")) if semantics[:title].present?
|
9
|
+
body << I18n.t('blacklight.email.text.author', value: semantics[:author].join(" ")) if semantics[:author].present?
|
10
|
+
body << I18n.t('blacklight.email.text.format', value: semantics[:format].join(" ")) if semantics[:format].present?
|
11
|
+
body << I18n.t('blacklight.email.text.language', value: semantics[:language].join(" ")) if semantics[:language].present?
|
12
12
|
return body.join("\n") unless body.empty?
|
13
13
|
end
|
14
14
|
end
|
@@ -24,8 +24,8 @@ module Blacklight::Document::Extensions
|
|
24
24
|
# Needs to be called in initializer of class including this module, to
|
25
25
|
# apply all registered extensions on a per-document basis
|
26
26
|
def apply_extensions
|
27
|
-
self.class.registered_extensions.each do |
|
28
|
-
|
27
|
+
self.class.registered_extensions.each do |registration|
|
28
|
+
extend(registration[:module_obj]) if registration[:condition_proc].nil? || registration[:condition_proc].call(self)
|
29
29
|
end
|
30
30
|
end
|
31
31
|
|
@@ -43,15 +43,15 @@ module Blacklight::Document::Extensions
|
|
43
43
|
end
|
44
44
|
|
45
45
|
# Register an extension module with the class. A block taking one
|
46
|
-
# parameter can be supplied; the block will be passed an instance of
|
46
|
+
# parameter can be supplied; the block will be passed an instance of
|
47
47
|
# a Document, and the extension will be applied only if the block
|
48
48
|
# evaluates as true. If no condition is given, the extension will
|
49
49
|
# be applied to every instance of the class.
|
50
50
|
#
|
51
51
|
# SolrDocument.use_extension( SomeExtensionModule ) { | document | should_apply_some_extension?(document) }
|
52
52
|
# SolrDocument.use_extension( SomeExtensionModule) # will be applied to all docs
|
53
|
-
def use_extension(
|
54
|
-
registered_extensions << {module_obj: module_obj, condition_proc: condition}
|
53
|
+
def use_extension(module_obj, &condition)
|
54
|
+
registered_extensions << { module_obj: module_obj, condition_proc: condition }
|
55
55
|
end
|
56
56
|
end
|
57
57
|
end
|