blacklight-spotlight 0.4.1 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -8
- data/Rakefile +40 -39
- data/app/assets/javascripts/spotlight/blacklight_configuration.js +16 -0
- data/app/assets/javascripts/spotlight/blocks/resources_block.js +3 -1
- data/app/assets/stylesheets/spotlight/_blacklight_configuration.scss +2 -2
- data/app/assets/stylesheets/spotlight/_blacklight_overrides.scss +24 -0
- data/app/assets/stylesheets/spotlight/_header.scss +150 -47
- data/app/assets/stylesheets/spotlight/_pages.scss +62 -11
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +1 -0
- data/app/assets/stylesheets/spotlight/_spotlight.scss +1 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +28 -21
- data/app/controllers/spotlight/about_pages_controller.rb +25 -14
- data/app/controllers/spotlight/appearances_controller.rb +34 -30
- data/app/controllers/spotlight/application_controller.rb +2 -1
- data/app/controllers/spotlight/attachments_controller.rb +9 -7
- data/app/controllers/spotlight/browse_controller.rb +13 -9
- data/app/controllers/spotlight/catalog_controller.rb +179 -161
- data/app/controllers/spotlight/concerns/application_controller.rb +22 -20
- data/app/controllers/spotlight/concerns/catalog_search_context.rb +44 -0
- data/app/controllers/spotlight/confirmations_controller.rb +5 -2
- data/app/controllers/spotlight/contact_forms_controller.rb +13 -7
- data/app/controllers/spotlight/contacts_controller.rb +13 -4
- data/app/controllers/spotlight/custom_fields_controller.rb +48 -40
- data/app/controllers/spotlight/dashboards_controller.rb +17 -8
- data/app/controllers/spotlight/default_controller.rb +3 -1
- data/app/controllers/spotlight/exhibits_controller.rb +69 -62
- data/app/controllers/spotlight/feature_pages_controller.rb +21 -11
- data/app/controllers/spotlight/home_pages_controller.rb +6 -5
- data/app/controllers/spotlight/lock_controller.rb +3 -1
- data/app/controllers/spotlight/metadata_configurations_controller.rb +49 -0
- data/app/controllers/spotlight/pages_controller.rb +28 -18
- data/app/controllers/spotlight/resources/upload_controller.rb +53 -46
- data/app/controllers/spotlight/resources_controller.rb +9 -5
- data/app/controllers/spotlight/roles_controller.rb +26 -22
- data/app/controllers/spotlight/search_configurations_controller.rb +66 -0
- data/app/controllers/spotlight/searches_controller.rb +91 -82
- data/app/controllers/spotlight/solr_controller.rb +20 -13
- data/app/controllers/spotlight/tags_controller.rb +5 -3
- data/app/controllers/spotlight/versions_controller.rb +15 -12
- data/app/controllers/spotlight/view_configurations_controller.rb +17 -0
- data/app/helpers/spotlight/application_helper.rb +44 -32
- data/app/helpers/spotlight/browse_helper.rb +13 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +22 -14
- data/app/helpers/spotlight/jcrop_helper.rb +4 -2
- data/app/helpers/spotlight/main_app_helpers.rb +45 -41
- data/app/helpers/spotlight/navbar_helper.rb +6 -0
- data/app/helpers/spotlight/pages_helper.rb +23 -15
- data/app/helpers/spotlight/roles_helper.rb +10 -4
- data/app/helpers/spotlight/search_configurations_helper.rb +22 -0
- data/app/helpers/spotlight/title_helper.rb +16 -13
- data/app/jobs/spotlight/add_uploads_from_csv.rb +13 -9
- data/app/jobs/spotlight/reindex_job.rb +9 -9
- data/app/jobs/spotlight/rename_sidecar_field_job.rb +3 -0
- data/app/mailers/spotlight/confirmation_mailer.rb +2 -0
- data/app/mailers/spotlight/indexing_complete_mailer.rb +4 -2
- data/app/models/ability.rb +3 -0
- data/app/models/concerns/spotlight/ar_light.rb +49 -25
- data/app/models/concerns/spotlight/blacklight_configuration_defaults.rb +25 -10
- data/app/models/concerns/spotlight/exhibit_analytics.rb +28 -0
- data/app/models/concerns/spotlight/image_derivatives.rb +25 -26
- data/app/models/concerns/spotlight/resources/open_graph.rb +23 -19
- data/app/models/concerns/spotlight/resources/web.rb +25 -24
- data/app/models/concerns/spotlight/solr_document.rb +40 -34
- data/app/models/concerns/spotlight/solr_document/active_model_concern.rb +29 -40
- data/app/models/concerns/spotlight/solr_document/atomic_updates.rb +22 -18
- data/app/models/concerns/spotlight/solr_document/finder.rb +23 -18
- data/app/models/concerns/spotlight/solr_document/spotlight_images.rb +43 -39
- data/app/models/concerns/spotlight/solr_document/uploaded_resource.rb +41 -29
- data/app/models/concerns/spotlight/user.rb +25 -19
- data/app/models/sir_trevor_rails/blocks/browse_block.rb +36 -30
- data/app/models/sir_trevor_rails/blocks/featured_pages_block.rb +24 -18
- data/app/models/sir_trevor_rails/blocks/oembed_block.rb +8 -4
- data/app/models/sir_trevor_rails/blocks/search_results_block.rb +29 -23
- data/app/models/sir_trevor_rails/blocks/solr_documents_block.rb +43 -42
- data/app/models/sir_trevor_rails/blocks/solr_documents_carousel_block.rb +16 -12
- data/app/models/sir_trevor_rails/blocks/solr_documents_embed_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_features_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/solr_documents_grid_block.rb +7 -3
- data/app/models/sir_trevor_rails/blocks/textable.rb +18 -18
- data/app/models/spotlight/ability.rb +32 -33
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/analytics/ga.rb +46 -27
- data/app/models/spotlight/attachment.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +146 -68
- data/app/models/spotlight/contact.rb +35 -30
- data/app/models/spotlight/contact_email.rb +6 -3
- data/app/models/spotlight/contact_form.rb +4 -3
- data/app/models/spotlight/custom_field.rb +41 -33
- data/app/models/spotlight/exhibit.rb +104 -130
- data/app/models/spotlight/feature_page.rb +9 -7
- data/app/models/spotlight/featured_image.rb +10 -10
- data/app/models/spotlight/field_metadata.rb +46 -0
- data/app/models/spotlight/home_page.rb +8 -5
- data/app/models/spotlight/lock.rb +4 -3
- data/app/models/spotlight/main_navigation.rb +9 -3
- data/app/models/spotlight/masthead.rb +17 -16
- data/app/models/spotlight/page.rb +16 -16
- data/app/models/spotlight/resource.rb +69 -22
- data/app/models/spotlight/resources/csv_upload.rb +8 -4
- data/app/models/spotlight/resources/upload.rb +68 -57
- data/app/models/spotlight/role.rb +30 -34
- data/app/models/spotlight/search.rb +74 -63
- data/app/models/spotlight/solr_document_sidecar.rb +17 -15
- data/app/serializers/spotlight/exhibit_export_serializer.rb +65 -29
- data/app/serializers/spotlight/page_representer.rb +10 -6
- data/app/uploaders/spotlight/attachment_uploader.rb +4 -6
- data/app/uploaders/spotlight/avatar_uploader.rb +4 -3
- data/app/uploaders/spotlight/featured_image_uploader.rb +15 -14
- data/app/uploaders/spotlight/item_uploader.rb +3 -1
- data/app/uploaders/spotlight/masthead_uploader.rb +4 -2
- data/app/views/catalog/_search_form.html.erb +24 -0
- data/app/views/shared/_browse_navbar.html.erb +1 -1
- data/app/views/shared/_exhibit_navbar.html.erb +1 -1
- data/app/views/spotlight/appearances/edit.html.erb +13 -45
- data/app/views/spotlight/catalog/_edit_default.html.erb +1 -1
- data/app/views/spotlight/custom_fields/_form.html.erb +1 -1
- data/app/views/spotlight/exhibits/edit.html.erb +4 -4
- data/app/views/spotlight/home_pages/_empty.html.erb +1 -3
- data/app/views/spotlight/home_pages/_page_options.html.erb +1 -1
- data/app/views/spotlight/{blacklight_configurations → metadata_configurations}/_metadata_field.html.erb +0 -0
- data/app/views/spotlight/{blacklight_configurations/edit_metadata_fields.html.erb → metadata_configurations/edit.html.erb} +1 -1
- data/app/views/spotlight/pages/show.html.erb +2 -2
- data/app/views/spotlight/search_configurations/_default_per_page.html.erb +5 -0
- data/app/views/spotlight/search_configurations/_document_index_view_types.html.erb +7 -0
- data/app/views/spotlight/search_configurations/_facets.html.erb +38 -0
- data/app/views/spotlight/search_configurations/_search_fields.html.erb +58 -0
- data/app/views/spotlight/search_configurations/_sort.html.erb +53 -0
- data/app/views/spotlight/search_configurations/edit.html.erb +46 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -1
- data/app/views/spotlight/shared/_admin_sidebar.html.erb +0 -2
- data/app/views/spotlight/shared/_curation_sidebar.html.erb +2 -3
- data/app/views/spotlight/shared/_report_a_problem.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_oembed_block.html.erb +5 -1
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb +7 -5
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb +2 -2
- data/app/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb +14 -9
- data/config/locales/spotlight.en.yml +94 -49
- data/config/routes.rb +11 -20
- data/db/migrate/20150410180014_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
- data/db/migrate/20150410180015_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150410180016_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +10 -0
- data/db/migrate/20150713160101_change_spotlight_searches_to_published.rb +5 -0
- data/db/migrate/20151016092343_remove_searchable_from_exhibit.rb +20 -0
- data/lib/blacklight/spotlight.rb +1 -1
- data/lib/generators/spotlight/install_generator.rb +27 -25
- data/lib/generators/spotlight/templates/catalog_controller.rb +7 -5
- data/lib/generators/spotlight/templates/jetty.rake +8 -2
- data/lib/generators/spotlight/templates/spotlight_helper.rb +3 -1
- data/lib/spotlight.rb +4 -2
- data/lib/spotlight/base.rb +21 -14
- data/lib/spotlight/catalog.rb +10 -9
- data/lib/spotlight/catalog/access_controls_enforcement.rb +30 -15
- data/lib/spotlight/config.rb +4 -2
- data/lib/spotlight/controller.rb +12 -11
- data/lib/spotlight/engine.rb +30 -22
- data/lib/spotlight/rails/routes.rb +7 -4
- data/lib/spotlight/version.rb +2 -1
- data/lib/tasks/spotlight_tasks.rake +56 -50
- data/spec/controllers/application_controller_spec.rb +13 -13
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +63 -59
- data/spec/controllers/spotlight/appearances_controller_spec.rb +29 -24
- data/spec/controllers/spotlight/application_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/attachments_controller_spec.rb +10 -10
- data/spec/controllers/spotlight/browse_controller_spec.rb +23 -25
- data/spec/controllers/spotlight/catalog_controller_spec.rb +82 -87
- data/spec/controllers/spotlight/confirmations_controller_spec.rb +13 -11
- data/spec/controllers/spotlight/contact_forms_controller_spec.rb +17 -12
- data/spec/controllers/spotlight/contacts_controller_spec.rb +36 -36
- data/spec/controllers/spotlight/custom_fields_controller_spec.rb +26 -26
- data/spec/controllers/spotlight/dashboards_controller_spec.rb +14 -14
- data/spec/controllers/spotlight/exhibits_controller_spec.rb +59 -54
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +59 -59
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +28 -29
- data/spec/controllers/spotlight/metadata_configurations_controller_spec.rb +84 -0
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +42 -33
- data/spec/controllers/spotlight/resources_controller_spec.rb +25 -29
- data/spec/controllers/spotlight/roles_controller_spec.rb +37 -19
- data/spec/controllers/spotlight/search_configurations_controller_spec.rb +125 -0
- data/spec/controllers/spotlight/searches_controller_spec.rb +84 -63
- data/spec/controllers/spotlight/solr_controller_spec.rb +13 -14
- data/spec/controllers/spotlight/tags_controller_spec.rb +16 -16
- data/spec/controllers/spotlight/versions_controller_spec.rb +15 -18
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +31 -0
- data/spec/factories/contacts.rb +1 -3
- data/spec/factories/custom_fields.rb +2 -4
- data/spec/factories/exhibits.rb +4 -2
- data/spec/factories/pages.rb +8 -11
- data/spec/factories/resources.rb +4 -4
- data/spec/factories/searches.rb +10 -13
- data/spec/factories/tags.rb +0 -3
- data/spec/factories/users.rb +2 -4
- data/spec/features/about_page_spec.rb +19 -19
- data/spec/features/add_contacts_spec.rb +34 -34
- data/spec/features/add_custom_field_metadata_spec.rb +24 -26
- data/spec/features/add_item_bookmarklet_spec.rb +12 -12
- data/spec/features/browse_category_admin_spec.rb +39 -39
- data/spec/features/catalog_spec.rb +9 -10
- data/spec/features/confirm_email_spec.rb +10 -10
- data/spec/features/create_exhibit_spec.rb +18 -15
- data/spec/features/create_page_spec.rb +8 -8
- data/spec/features/curator_items.rb +3 -3
- data/spec/features/dashboard_spec.rb +15 -16
- data/spec/features/edit_contact_spec.rb +8 -10
- data/spec/features/edit_search_fields_spec.rb +79 -0
- data/spec/features/exhibits/add_tags_spec.rb +15 -16
- data/spec/features/exhibits/administration_spec.rb +25 -25
- data/spec/features/exhibits/custom_metadata_fields_spec.rb +41 -43
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +19 -19
- data/spec/features/feature_page_spec.rb +49 -48
- data/spec/features/home_page_spec.rb +38 -38
- data/spec/features/import_exhibit_spec.rb +23 -20
- data/spec/features/item_admin_spec.rb +28 -29
- data/spec/features/javascript/about_page_admin_spec.rb +9 -9
- data/spec/features/javascript/block_controls_spec.rb +16 -18
- data/spec/features/javascript/blocks/featured_browse_categories_block_spec.rb +11 -12
- data/spec/features/javascript/blocks/featured_pages_block_spec.rb +12 -13
- data/spec/features/javascript/blocks/search_result_block_spec.rb +17 -17
- data/spec/features/javascript/blocks/solr_documents_block_spec.rb +67 -65
- data/spec/features/javascript/edit_in_place_spec.rb +30 -56
- data/spec/features/javascript/feature_page_admin_spec.rb +73 -59
- data/spec/features/javascript/home_page_edit_spec.rb +6 -6
- data/spec/features/javascript/metadata_admin_spec.rb +15 -15
- data/spec/features/javascript/multi_image_select_spec.rb +17 -18
- data/spec/features/javascript/preview_block_spec.rb +11 -12
- data/spec/features/javascript/rule_block_spec.rb +7 -7
- data/spec/features/javascript/search_config_admin_spec.rb +144 -0
- data/spec/features/javascript/search_context_spec.rb +41 -42
- data/spec/features/main_navigation_spec.rb +22 -22
- data/spec/features/metadata_admin_spec.rb +8 -8
- data/spec/features/multiple_exhibits_spec.rb +15 -17
- data/spec/features/report_a_problem_spec.rb +23 -17
- data/spec/features/site_masthead_spec.rb +46 -46
- data/spec/features/slideshow_spec.rb +8 -9
- data/spec/features/tags_admin_spec.rb +11 -11
- data/spec/features/upload_non_repository_item_spec.rb +32 -32
- data/spec/features/user_admin_spec.rb +7 -7
- data/spec/helpers/spotlight/application_helper_spec.rb +63 -56
- data/spec/helpers/spotlight/browse_helper_spec.rb +6 -6
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +58 -52
- data/spec/helpers/spotlight/main_app_helpers_spec.rb +44 -24
- data/spec/helpers/spotlight/navbar_helper_spec.rb +4 -4
- data/spec/helpers/spotlight/pages_helper_spec.rb +56 -37
- data/spec/helpers/spotlight/roles_helper_spec.rb +3 -3
- data/spec/helpers/spotlight/search_configurations_helper_spec.rb +24 -0
- data/spec/helpers/spotlight/title_helper_spec.rb +33 -35
- data/spec/jobs/spotlight/reindex_job_spec.rb +6 -6
- data/spec/jobs/spotlight/rename_sidecar_field_job_spec.rb +7 -7
- data/spec/lib/spotlight/catalog/access_controls_enforcement_spec.rb +41 -26
- data/spec/lib/spotlight/controller_spec.rb +10 -10
- data/spec/lib/spotlight/routes_spec.rb +4 -4
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +13 -13
- data/spec/models/sir_trevor_rails/blocks/solr_documents_block_spec.rb +8 -8
- data/spec/models/{spotlight/sir_trevor_blocks → sir_trevor_rails/blocks}/textable_spec.rb +7 -8
- data/spec/models/solr_document_spec.rb +49 -50
- data/spec/models/spotlight/ability_spec.rb +17 -20
- data/spec/models/spotlight/about_page_spec.rb +6 -6
- data/spec/models/spotlight/analytics/ga_spec.rb +2 -2
- data/spec/models/spotlight/blacklight_configuration_spec.rb +196 -133
- data/spec/models/spotlight/contact_email_spec.rb +28 -24
- data/spec/models/spotlight/contact_spec.rb +6 -7
- data/spec/models/spotlight/custom_field_spec.rb +51 -52
- data/spec/models/spotlight/exhibit_spec.rb +102 -60
- data/spec/models/spotlight/feature_page_spec.rb +32 -32
- data/spec/models/spotlight/featured_image_spec.rb +5 -5
- data/spec/models/spotlight/field_metadata_spec.rb +78 -0
- data/spec/models/spotlight/home_page_spec.rb +11 -20
- data/spec/models/spotlight/{spotlight_image_derivatives_spec.rb → image_derivatives_spec.rb} +2 -2
- data/spec/models/spotlight/main_navigation_spec.rb +7 -9
- data/spec/models/spotlight/masthead_spec.rb +6 -6
- data/spec/models/spotlight/page_spec.rb +26 -29
- data/spec/models/spotlight/resource_spec.rb +56 -26
- data/spec/models/spotlight/resources/open_graph_spec.rb +16 -18
- data/spec/models/spotlight/resources/upload_spec.rb +32 -35
- data/spec/models/spotlight/resources/web_spec.rb +9 -11
- data/spec/models/spotlight/role_spec.rb +20 -20
- data/spec/models/spotlight/search_spec.rb +32 -15
- data/spec/models/spotlight/solr_document/atomic_updates_spec.rb +34 -0
- data/spec/models/spotlight/{solr_document_images_spec.rb → solr_document/spotlight_images_spec.rb} +18 -10
- data/spec/models/spotlight/solr_document/uploaded_resource_spec.rb +52 -0
- data/spec/models/spotlight/solr_document_sidecar_spec.rb +3 -4
- data/spec/routing/spotlight/exhibit_catalog_spec.rb +5 -5
- data/spec/routing/spotlight/pages_routing_spec.rb +24 -25
- data/spec/serializers/spotlight/exhibit_export_serializer_spec.rb +88 -68
- data/spec/spec_helper.rb +13 -22
- data/spec/support/features/test_features_helpers.rb +50 -46
- data/spec/support/views/test_view_helpers.rb +1 -1
- data/spec/test_app_templates/Gemfile.extra +0 -1
- data/spec/test_app_templates/carrierwave.rb +2 -2
- data/spec/test_app_templates/catalog_controller.rb +42 -42
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +20 -11
- data/spec/test_app_templates/spotlight_test.rake +3 -3
- data/spec/uploaders/spotlight/item_uploader_spec.rb +68 -0
- data/spec/views/_user_util_links.html.erb_spec.rb +14 -14
- data/spec/views/shared/_analytics.html.erb_spec.rb +4 -6
- data/spec/views/shared/_exhibit_masthead.html.erb_spec.rb +19 -20
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +129 -131
- data/spec/views/shared/_footer.html.erb_spec.rb +6 -7
- data/spec/views/shared/_header_navbar.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/about_pages/_empty.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/about_pages/_sidebar.html.erb_spec.rb +9 -11
- data/spec/views/spotlight/about_pages/index.html.erb_spec.rb +31 -28
- data/spec/views/spotlight/browse/_search.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/_sort_and_per_page.html.erb_spec.rb +10 -12
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/browse/show.html.erb_spec.rb +19 -20
- data/spec/views/spotlight/catalog/_edit_default.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/admin.html.erb_spec.rb +7 -7
- data/spec/views/spotlight/catalog/edit.html.erb_spec.rb +3 -6
- data/spec/views/spotlight/catalog/new.html.erb_spec.rb +8 -10
- data/spec/views/spotlight/contacts/edit.html.erb_spec.rb +8 -8
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +22 -22
- data/spec/views/spotlight/exhibits/edit.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/feature_pages/_empty.html.erb_spec.rb +5 -5
- data/spec/views/spotlight/feature_pages/_sidebar.html.erb_spec.rb +24 -26
- data/spec/views/spotlight/home_pages/_empty.html.erb_spec.rb +13 -9
- data/spec/views/spotlight/home_pages/_sidebar.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +26 -0
- data/spec/views/spotlight/metadata_configurations/edit.html.erb_spec.rb +22 -0
- data/spec/views/spotlight/pages/edit.html.erb_spec.rb +16 -16
- data/spec/views/spotlight/pages/index.html.erb_spec.rb +19 -17
- data/spec/views/spotlight/pages/new.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +27 -28
- data/spec/views/spotlight/roles/index.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/search_configurations/_search_fields.html.erb_spec.rb +54 -0
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +28 -0
- data/spec/views/spotlight/searches/_search.html.erb_spec.rb +20 -10
- data/spec/views/spotlight/searches/edit.html.erb_spec.rb +12 -11
- data/spec/views/spotlight/searches/index.html.erb_spec.rb +12 -7
- data/spec/views/spotlight/sir_trevor/blocks/_iframe_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_rule_block.html.erb_spec.rb +4 -4
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_block.html.erb_spec.rb +38 -0
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_carousel_block.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_embed_block.html.erb_spec.rb +18 -13
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_features_block.html.erb_spec.rb +14 -12
- data/spec/views/spotlight/sir_trevor/blocks/_solr_documents_grid_block.html.erb_spec.rb +11 -12
- data/spec/views/spotlight/tags/index.html.erb_spec.rb +9 -9
- metadata +167 -83
- data/app/controllers/spotlight/blacklight_configurations_controller.rb +0 -101
- data/app/controllers/spotlight/resources/csv_controller.rb +0 -23
- data/app/forms/spotlight/appearance.rb +0 -86
- data/app/helpers/spotlight/attachments_helper.rb +0 -4
- data/app/helpers/spotlight/blacklight_configurations_helper.rb +0 -15
- data/app/jobs/spotlight/set_default_thumbnail_job.rb +0 -16
- data/app/models/spotlight/resources/csv.rb +0 -80
- data/app/uploaders/spotlight/csv_uploader.rb +0 -15
- data/app/views/spotlight/blacklight_configurations/edit_facet_fields.html.erb +0 -47
- data/app/views/spotlight/blacklight_configurations/edit_sort_fields.html.erb +0 -65
- data/app/views/spotlight/resources/csv/_form.html.erb +0 -17
- data/app/views/spotlight/resources/csv/new.html.erb +0 -3
- data/spec/controllers/spotlight/blacklight_configurations_controller_spec.rb +0 -167
- data/spec/features/edit_sort_fields_spec.rb +0 -42
- data/spec/features/exhibits/edit_facet_fields_spec.rb +0 -37
- data/spec/features/javascript/facet_admin_spec.rb +0 -36
- data/spec/features/search_facets_admin_spec.rb +0 -19
- data/spec/features/update_appearance_spec.rb +0 -58
- data/spec/helpers/spotlight/blacklight_configurations_helper_spec.rb +0 -12
- data/spec/models/spotlight/appearance_spec.rb +0 -33
- data/spec/models/spotlight/resources/csv_spec.rb +0 -101
- data/spec/models/spotlight/solr_document_atomic_updates_spec.rb +0 -29
- data/spec/models/spotlight/solr_document_uploaded_resource_spec.rb +0 -45
- data/spec/uploaders/item_uploader_spec.rb +0 -62
- data/spec/views/spotlight/blacklight_configuration/_metadata_field.html.erb_spec.rb +0 -27
- data/spec/views/spotlight/blacklight_configuration/edit_metadata_fields.html.erb_spec.rb +0 -23
- data/spec/views/spotlight/blacklight_configuration/edit_sort_fields.html.erb_spec.rb +0 -19
@@ -4,43 +4,61 @@ require 'base64'
|
|
4
4
|
require 'tempfile'
|
5
5
|
|
6
6
|
module Spotlight
|
7
|
+
##
|
8
|
+
# Serialize the Spotlight::BlacklightConfiguration
|
7
9
|
class ConfigurationRepresenter < Roar::Decorator
|
8
10
|
include Roar::JSON
|
9
11
|
|
10
|
-
(Spotlight::BlacklightConfiguration.attribute_names -
|
12
|
+
(Spotlight::BlacklightConfiguration.attribute_names - %w(id exhibit_id)).each do |prop|
|
11
13
|
property prop
|
12
14
|
end
|
13
15
|
end
|
14
16
|
|
17
|
+
##
|
18
|
+
# Serialize an exhibit with all the data needed to reconstruct it
|
19
|
+
# in a different environment
|
20
|
+
# rubocop:disable Metrics/ClassLength
|
15
21
|
class ExhibitExportSerializer < Roar::Decorator
|
16
22
|
include Roar::JSON
|
17
23
|
|
18
|
-
(Spotlight::Exhibit.attribute_names -
|
24
|
+
(Spotlight::Exhibit.attribute_names - %w(id slug)).each do |prop|
|
19
25
|
property prop
|
20
26
|
end
|
21
27
|
|
22
|
-
|
23
|
-
|
28
|
+
property :default, setter: ->(val, _args) { self.default = val if val && !Spotlight::Exhibit.default? }
|
29
|
+
|
30
|
+
collection :searches, parse_strategy: ->(fragment, _i, options) { options.represented.searches.find_or_initialize_by(slug: fragment['slug']) },
|
31
|
+
class: Spotlight::Search do
|
32
|
+
(Spotlight::Search.attribute_names - %w(id exhibit_id)).each do |prop|
|
24
33
|
property prop
|
25
34
|
end
|
26
35
|
end
|
27
36
|
|
28
|
-
collection :about_pages, parse_strategy:
|
37
|
+
collection :about_pages, parse_strategy: ->(fragment, _i, options) { options.represented.about_pages.find_or_initialize_by(slug: fragment['slug']) },
|
38
|
+
class: Spotlight::AboutPage,
|
39
|
+
decorator: PageRepresenter
|
29
40
|
|
30
|
-
collection :feature_pages, parse_strategy:
|
41
|
+
collection :feature_pages, parse_strategy: ->(fragment, _i, options) { options.represented.feature_pages.find_or_initialize_by(slug: fragment['slug']) },
|
42
|
+
getter: ->(_opts) { feature_pages.at_top_level },
|
43
|
+
class: Spotlight::FeaturePage,
|
44
|
+
decorator: NestedPageRepresenter
|
31
45
|
|
32
|
-
property :home_page, parse_strategy:
|
46
|
+
property :home_page, parse_strategy: ->(_fragment, options) { options.represented.home_page },
|
47
|
+
class: Spotlight::HomePage,
|
48
|
+
decorator: PageRepresenter
|
33
49
|
|
34
50
|
property :blacklight_configuration, class: Spotlight::BlacklightConfiguration, decorator: ConfigurationRepresenter
|
35
51
|
|
36
|
-
collection :custom_fields, parse_strategy:
|
37
|
-
|
52
|
+
collection :custom_fields, parse_strategy: ->(fragment, _i, options) { options.represented.custom_fields.find_or_initialize_by(slug: fragment['slug']) },
|
53
|
+
class: Spotlight::CustomField do
|
54
|
+
(Spotlight::CustomField.attribute_names - %w(id exhibit_id)).each do |prop|
|
38
55
|
property prop
|
39
56
|
end
|
40
57
|
end
|
41
58
|
|
42
|
-
collection :contacts, parse_strategy:
|
43
|
-
|
59
|
+
collection :contacts, parse_strategy: ->(fragment, _i, options) { options.represented.contacts.find_or_initialize_by(slug: fragment['slug']) },
|
60
|
+
class: Spotlight::Contact do
|
61
|
+
(Spotlight::Contact.attribute_names - %w(id exhibit_id avatar)).each do |prop|
|
44
62
|
property prop
|
45
63
|
end
|
46
64
|
|
@@ -52,19 +70,21 @@ module Spotlight
|
|
52
70
|
{ filename: file.filename, content_type: file.content_type, content: Base64.encode64(file.read) }
|
53
71
|
end
|
54
72
|
|
55
|
-
def avatar=
|
56
|
-
represented.avatar = CarrierWave::SanitizedFile.new tempfile: StringIO.new(Base64.decode64(file['content'])),
|
73
|
+
def avatar=(file)
|
74
|
+
represented.avatar = CarrierWave::SanitizedFile.new tempfile: StringIO.new(Base64.decode64(file['content'])),
|
75
|
+
filename: file['filename'],
|
76
|
+
content_type: file['content_type']
|
57
77
|
end
|
58
78
|
end
|
59
79
|
|
60
80
|
collection :contact_emails, class: Spotlight::ContactEmail do
|
61
|
-
(Spotlight::ContactEmail.attribute_names -
|
81
|
+
(Spotlight::ContactEmail.attribute_names - %w(id exhibit_id)).each do |prop|
|
62
82
|
property prop
|
63
83
|
end
|
64
84
|
end
|
65
85
|
|
66
86
|
collection :solr_document_sidecars, class: Spotlight::SolrDocumentSidecar do
|
67
|
-
(Spotlight::SolrDocumentSidecar.attribute_names -
|
87
|
+
(Spotlight::SolrDocumentSidecar.attribute_names - %w(id document_type exhibit_id)).each do |prop|
|
68
88
|
property prop
|
69
89
|
end
|
70
90
|
|
@@ -73,10 +93,8 @@ module Spotlight
|
|
73
93
|
def document_type
|
74
94
|
represented.document_type.to_s
|
75
95
|
end
|
76
|
-
|
77
|
-
|
78
|
-
represented.document_type = klass
|
79
|
-
end
|
96
|
+
|
97
|
+
delegate :document_type=, to: :represented
|
80
98
|
end
|
81
99
|
|
82
100
|
collection :owned_taggings, class: ActsAsTaggableOn::Tagging do
|
@@ -89,13 +107,13 @@ module Spotlight
|
|
89
107
|
represented.tag.name
|
90
108
|
end
|
91
109
|
|
92
|
-
def tag=
|
110
|
+
def tag=(tag)
|
93
111
|
represented.tag = ActsAsTaggableOn::Tag.find_or_create_by name: tag
|
94
112
|
end
|
95
113
|
end
|
96
114
|
|
97
115
|
collection :attachments, class: Spotlight::Attachment do
|
98
|
-
(Spotlight::Attachment.attribute_names -
|
116
|
+
(Spotlight::Attachment.attribute_names - %w(id exhibit_id file)).each do |prop|
|
99
117
|
property prop
|
100
118
|
end
|
101
119
|
|
@@ -107,29 +125,47 @@ module Spotlight
|
|
107
125
|
{ filename: file.filename, content_type: file.content_type, content: Base64.encode64(file.read) }
|
108
126
|
end
|
109
127
|
|
110
|
-
def file=
|
111
|
-
represented.file = CarrierWave::SanitizedFile.new tempfile: StringIO.new(Base64.decode64(file['content'])),
|
128
|
+
def file=(file)
|
129
|
+
represented.file = CarrierWave::SanitizedFile.new tempfile: StringIO.new(Base64.decode64(file['content'])),
|
130
|
+
filename: file['filename'],
|
131
|
+
content_type: file['content_type']
|
112
132
|
end
|
113
|
-
|
114
133
|
end
|
115
134
|
|
116
|
-
collection :resources, class:
|
117
|
-
(Spotlight::Resource.attribute_names -
|
135
|
+
collection :resources, class: ->(fragment, *) { fragment.key?('type') ? fragment['type'].constantize : Spotlight::Resource } do
|
136
|
+
(Spotlight::Resource.attribute_names - %w(id url exhibit_id)).each do |prop|
|
118
137
|
property prop
|
119
138
|
end
|
120
139
|
|
140
|
+
property :url, exec_context: :decorator
|
121
141
|
property :file, exec_context: :decorator
|
122
142
|
|
143
|
+
def url
|
144
|
+
return if represented.is_a? Spotlight::Resources::Upload
|
145
|
+
|
146
|
+
represented.url
|
147
|
+
end
|
148
|
+
|
149
|
+
def url=(url)
|
150
|
+
return if represented.is_a? Spotlight::Resources::Upload
|
151
|
+
|
152
|
+
represented.url = url
|
153
|
+
end
|
154
|
+
|
123
155
|
def file
|
156
|
+
return unless represented.is_a? Spotlight::Resources::Upload
|
124
157
|
file = represented.url.file
|
125
158
|
|
126
159
|
{ filename: file.filename, content_type: file.content_type, content: Base64.encode64(file.read) }
|
127
160
|
end
|
128
161
|
|
129
|
-
def file=
|
130
|
-
represented.
|
162
|
+
def file=(file)
|
163
|
+
return unless represented.is_a? Spotlight::Resources::Upload
|
164
|
+
represented.url = CarrierWave::SanitizedFile.new tempfile: StringIO.new(Base64.decode64(file['content'])),
|
165
|
+
filename: file['filename'],
|
166
|
+
content_type: file['content_type']
|
131
167
|
end
|
132
|
-
|
133
168
|
end
|
134
169
|
end
|
170
|
+
# rubocop:enable Metrics/ClassLength
|
135
171
|
end
|
@@ -1,9 +1,11 @@
|
|
1
1
|
require 'roar/decorator'
|
2
2
|
require 'roar/json'
|
3
3
|
module Spotlight
|
4
|
+
##
|
5
|
+
# Serialize an exhibit page
|
4
6
|
class PageRepresenter < Roar::Decorator
|
5
7
|
include Roar::JSON
|
6
|
-
(Spotlight::Page.attribute_names -
|
8
|
+
(Spotlight::Page.attribute_names - %w(id scope exhibit_id parent_page_id content)).each do |prop|
|
7
9
|
property prop
|
8
10
|
end
|
9
11
|
|
@@ -14,12 +16,14 @@ module Spotlight
|
|
14
16
|
represented.content.as_json
|
15
17
|
end
|
16
18
|
|
17
|
-
|
18
|
-
represented.content = content
|
19
|
-
end
|
19
|
+
delegate :content=, to: :represented
|
20
20
|
end
|
21
21
|
|
22
|
+
##
|
23
|
+
# Serialize the page hierarchy (e.g. for Feature pages)
|
22
24
|
class NestedPageRepresenter < PageRepresenter
|
23
|
-
collection :child_pages, parse_strategy:
|
25
|
+
collection :child_pages, parse_strategy: ->(fragment, _i, options) { options.represented.child_pages.find_or_initialize_by(slug: fragment['slug']) },
|
26
|
+
class: Spotlight::FeaturePage,
|
27
|
+
extend: NestedPageRepresenter
|
24
28
|
end
|
25
|
-
end
|
29
|
+
end
|
@@ -1,7 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Spotlight
|
3
|
+
##
|
4
|
+
# Sir-trevor image widget uploads
|
3
5
|
class AttachmentUploader < CarrierWave::Uploader::Base
|
4
|
-
|
5
6
|
# Include RMagick or MiniMagick support:
|
6
7
|
# include CarrierWave::RMagick
|
7
8
|
include CarrierWave::MiniMagick
|
@@ -14,19 +15,17 @@ module Spotlight
|
|
14
15
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
15
16
|
end
|
16
17
|
|
17
|
-
|
18
18
|
version :large do
|
19
19
|
process resize_to_limit: [850, nil]
|
20
20
|
end
|
21
|
-
|
21
|
+
|
22
22
|
version :medium do
|
23
23
|
process resize_to_limit: [640, nil]
|
24
24
|
end
|
25
|
-
|
25
|
+
|
26
26
|
version :small do
|
27
27
|
process resize_to_limit: [320, nil]
|
28
28
|
end
|
29
|
-
|
30
29
|
|
31
30
|
# Provide a default URL as a default if there hasn't been a file uploaded:
|
32
31
|
# def default_url
|
@@ -59,6 +58,5 @@ module Spotlight
|
|
59
58
|
# def filename
|
60
59
|
# "something.jpg" if original_filename
|
61
60
|
# end
|
62
|
-
|
63
61
|
end
|
64
62
|
end
|
@@ -1,12 +1,14 @@
|
|
1
1
|
module Spotlight
|
2
|
+
##
|
3
|
+
# Exhibit contact profile pictures
|
2
4
|
class AvatarUploader < CarrierWave::Uploader::Base
|
3
5
|
include CarrierWave::MiniMagick
|
4
6
|
|
5
7
|
storage Spotlight::Engine.config.uploader_storage
|
6
8
|
|
7
9
|
version :thumb do
|
8
|
-
process crop: :avatar
|
9
|
-
resize_to_limit(70,70)
|
10
|
+
process crop: :avatar ## Crops this version based on original image
|
11
|
+
resize_to_limit(70, 70)
|
10
12
|
end
|
11
13
|
|
12
14
|
# Override the directory where uploaded files will be stored.
|
@@ -14,6 +16,5 @@ module Spotlight
|
|
14
16
|
def store_dir
|
15
17
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
16
18
|
end
|
17
|
-
|
18
19
|
end
|
19
20
|
end
|
@@ -1,20 +1,21 @@
|
|
1
|
-
|
1
|
+
module Spotlight
|
2
|
+
##
|
3
|
+
# Page, browse category, and exhibit featured image thumbnails
|
4
|
+
class FeaturedImageUploader < CarrierWave::Uploader::Base
|
5
|
+
include CarrierWave::MiniMagick
|
2
6
|
|
3
|
-
|
4
|
-
include CarrierWave::MiniMagick
|
7
|
+
storage Spotlight::Engine.config.uploader_storage
|
5
8
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
process crop: :image ## Crops this version based on original image
|
10
|
-
end
|
9
|
+
version :cropped do
|
10
|
+
process crop: :image ## Crops this version based on original image
|
11
|
+
end
|
11
12
|
|
12
|
-
|
13
|
-
|
14
|
-
|
13
|
+
version :thumb, from_version: :cropped do
|
14
|
+
process resize_to_fill: [400, 300]
|
15
|
+
end
|
15
16
|
|
16
|
-
|
17
|
-
|
17
|
+
def store_dir
|
18
|
+
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
19
|
+
end
|
18
20
|
end
|
19
|
-
|
20
21
|
end
|
@@ -1,5 +1,8 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Spotlight
|
3
|
+
##
|
4
|
+
# Uploaded resource image attachments, downloaded locally for cropping and
|
5
|
+
# representation. See {Spotlight::Resource::Upload}
|
3
6
|
class ItemUploader < CarrierWave::Uploader::Base
|
4
7
|
include CarrierWave::MiniMagick
|
5
8
|
extend Spotlight::ImageDerivatives
|
@@ -14,6 +17,5 @@ module Spotlight
|
|
14
17
|
def store_dir
|
15
18
|
"uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
|
16
19
|
end
|
17
|
-
|
18
20
|
end
|
19
21
|
end
|
@@ -1,12 +1,14 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
module Spotlight
|
3
|
+
##
|
4
|
+
# Exhibit and browse category custom mastheads
|
3
5
|
class MastheadUploader < CarrierWave::Uploader::Base
|
4
6
|
include CarrierWave::MiniMagick
|
5
7
|
storage Spotlight::Engine.config.uploader_storage
|
6
8
|
|
7
9
|
version :cropped do
|
8
|
-
process crop: :image
|
9
|
-
process resize_to_fill: [1800,
|
10
|
+
process crop: :image ## Crops this version based on original image
|
11
|
+
process resize_to_fill: [1800, 180]
|
10
12
|
end
|
11
13
|
|
12
14
|
def store_dir
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<%= form_tag search_action_url, method: :get, class: 'search-query-form clearfix navbar-form', role: 'search' do %>
|
2
|
+
<%= render_hash_as_hidden_fields(params_for_search().except(:q, :search_field, :qt, :page, :utf8)) %>
|
3
|
+
|
4
|
+
<div class="input-group">
|
5
|
+
<% if search_fields.length > 1 %>
|
6
|
+
<span class="input-group-addon for-search-field">
|
7
|
+
<label for="search_field" class="sr-only"><%= t('blacklight.search.form.search_field.label') %></label>
|
8
|
+
<%= select_tag(:search_field, options_for_select(search_fields, h(params[:search_field])), title: t('blacklight.search.form.search_field.title'), id: "search_field", class: "search_field") %>
|
9
|
+
</span>
|
10
|
+
<% elsif search_fields.length == 1 %>
|
11
|
+
<%= hidden_field_tag :search_field, search_fields.first.last %>
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<label for="q" class="sr-only"><%= t('blacklight.search.form.search.label') %></label>
|
15
|
+
<%= text_field_tag :q, params[:q], placeholder: t('blacklight.search.form.search.placeholder'), class: "search_q q form-control", id: "q", autofocus: should_autofocus_on_search_box? %>
|
16
|
+
|
17
|
+
<span class="input-group-btn">
|
18
|
+
<button type="submit" class="btn btn-primary search-btn" id="search">
|
19
|
+
<span class="submit-search-text"><%= t('blacklight.search.form.submit') %></span>
|
20
|
+
<span class="glyphicon glyphicon-search"></span>
|
21
|
+
</button>
|
22
|
+
</span>
|
23
|
+
</div>
|
24
|
+
<% end %>
|
@@ -2,13 +2,13 @@
|
|
2
2
|
<div id="content" class="col-md-9">
|
3
3
|
<%= administration_page_title %>
|
4
4
|
|
5
|
-
<%= bootstrap_form_for @
|
6
|
-
<% if @
|
5
|
+
<%= bootstrap_form_for @exhibit, url: spotlight.exhibit_appearance_path(@exhibit), layout: :horizontal, label_col: 'col-md-3', control_col: 'col-sm-5', html: {data: { autocomplete_exhibit_catalog_index_path: spotlight.autocomplete_exhibit_catalog_index_path(current_exhibit, q: "%QUERY", format: "json") } } do |f| %>
|
6
|
+
<% if @exhibit.errors.any? %>
|
7
7
|
<div id="error_explanation">
|
8
|
-
<h2><%= pluralize(@
|
8
|
+
<h2><%= pluralize(@exhibit.errors.count, "error") %> prohibited this page from being saved:</h2>
|
9
9
|
|
10
10
|
<ul>
|
11
|
-
<% @
|
11
|
+
<% @exhibit.errors.full_messages.each do |msg| %>
|
12
12
|
<li><%= msg %></li>
|
13
13
|
<% end %>
|
14
14
|
</ul>
|
@@ -17,30 +17,19 @@
|
|
17
17
|
<div role="tabpanel">
|
18
18
|
<ul class="nav nav-tabs" role="tablist">
|
19
19
|
<li role="presentation" class="active">
|
20
|
-
<a href="#
|
21
|
-
</li>
|
22
|
-
<li role="presentation">
|
23
|
-
<a href="#site-masthead" area-controls="site-masthead" role="tab" data-toggle="tab"><%= t(:'.site_masthead.heading') %></a>
|
20
|
+
<a href="#site-masthead" aria-controls="site-masthead" role="tab" data-toggle="tab"><%= t(:'.site_masthead.heading') %></a>
|
24
21
|
</li>
|
25
22
|
|
26
23
|
<li role="presentation">
|
27
|
-
<a href="#site-thumbnail"
|
24
|
+
<a href="#site-thumbnail" aria-controls="site-thumbnail" role="tab" data-toggle="tab"><%= t(:'.site_thumbnail.heading') %></a>
|
28
25
|
</li>
|
29
26
|
|
30
27
|
<li role="presentation">
|
31
|
-
<a href="#main-menu"
|
32
|
-
</li>
|
33
|
-
<li role="presentation">
|
34
|
-
<a href="#search-results" area-controls="search-results" role="tab" data-toggle="tab"><%= t(:'.search_results') %></a>
|
28
|
+
<a href="#main-menu" aria-controls="main-menu" role="tab" data-toggle="tab"><%= t(:'.main_navigation.menu') %></a>
|
35
29
|
</li>
|
36
30
|
</ul>
|
37
31
|
<div class="tab-content">
|
38
|
-
<div role="tabpanel" class="tab-pane active" id="
|
39
|
-
<%= field_set_tag do %>
|
40
|
-
<%= f.check_box(:searchable, label: t(:'.exhibit_style.searchable.label')) %>
|
41
|
-
<% end %>
|
42
|
-
</div>
|
43
|
-
<div role="tabpanel" class="tab-pane" id="site-masthead">
|
32
|
+
<div role="tabpanel" class="tab-pane active" id="site-masthead">
|
44
33
|
<p class="instructions"><%= t(:'.site_masthead.help') %></p>
|
45
34
|
<%= f.fields_for(:masthead, current_exhibit.masthead || current_exhibit.build_masthead) do |m| %>
|
46
35
|
<%= render '/spotlight/featured_images/form', f: m, jcrop_options: default_masthead_jcrop_options %>
|
@@ -59,10 +48,8 @@
|
|
59
48
|
<p class="instructions"><%= t(:'.main_navigation.help') %></p>
|
60
49
|
<div class="panel-group dd main_navigation_admin col-sm-7" id="nested-navigation" data-behavior="nestable" data-max-depth="1">
|
61
50
|
<ol class="dd-list">
|
62
|
-
<%= f.fields_for :main_navigations do |
|
63
|
-
|
64
|
-
<%= navigation.fields_for nav.id.to_s, nav do |label| %>
|
65
|
-
<li class="dd-item dd3-item" data-id="<%= nav.id %>">
|
51
|
+
<%= f.fields_for :main_navigations do |label| %>
|
52
|
+
<li class="dd-item dd3-item" data-id="<%= label.object.id %>">
|
66
53
|
<div class="dd3-content panel panel-default">
|
67
54
|
<div class="dd-handle dd3-handle"><%= t :drag %></div>
|
68
55
|
<div class="panel-heading" data-behavior="restore-default">
|
@@ -74,43 +61,24 @@
|
|
74
61
|
</div>
|
75
62
|
<div class="main">
|
76
63
|
<h3 class="panel-title" data-in-place-edit-target=".edit-in-place" data-in-place-edit-field-target="[data-edit-field-target='true']">
|
77
|
-
<a href="#edit-in-place" class="field-label edit-in-place"><%=
|
78
|
-
<%= label.hidden_field :label, data: {:"default-value" =>
|
64
|
+
<a href="#edit-in-place" class="field-label edit-in-place"><%= label.object.label_or_default %></a>
|
65
|
+
<%= label.hidden_field :label, data: {:"default-value" => label.object.default_label, :"edit-field-target" => 'true'} %>
|
79
66
|
</h3>
|
80
67
|
</div>
|
81
68
|
</div>
|
82
69
|
<div class="col-sm-4">
|
83
|
-
<%= button_tag t(:'.restore_default'), data: {:"restore-default" => true}, class: "btn restore-default btn-default btn-sm pull-right #{'hidden' if
|
70
|
+
<%= button_tag t(:'.restore_default'), data: {:"restore-default" => true}, class: "btn restore-default btn-default btn-sm pull-right #{'hidden' if label.object.label.blank? || label.object.label == label.object.default_label}" %>
|
84
71
|
</div>
|
85
72
|
</div>
|
86
73
|
<%= label.hidden_field :weight, data: {property: "weight"} %>
|
87
74
|
</div>
|
88
75
|
</div>
|
89
76
|
</li>
|
90
|
-
<% end %>
|
91
|
-
<% end %>
|
92
77
|
<% end %>
|
93
78
|
</ol>
|
94
79
|
</div>
|
95
80
|
<% end %>
|
96
81
|
</div>
|
97
|
-
<div role="tabpanel" class="tab-pane" id="search-results">
|
98
|
-
<%= field_set_tag do %>
|
99
|
-
<%= f.form_group :document_index_view_types, label: {text: t(:'.document_index_view_types')} do %>
|
100
|
-
<%= f.fields_for :document_index_view_types, @appearance.document_index_view_types do |vt| %>
|
101
|
-
<% @appearance.view_type_options.each do |key| %>
|
102
|
-
<%= vt.check_box key %>
|
103
|
-
<% end %>
|
104
|
-
<% end %>
|
105
|
-
<% end %>
|
106
|
-
|
107
|
-
<%= f.form_group :default_per_page, label: { text: t(:'.default_per_page')} do %>
|
108
|
-
<% @appearance.per_page_options.each do |key| %>
|
109
|
-
<%= f.radio_button :default_per_page, key, label: key.to_s %>
|
110
|
-
<% end %>
|
111
|
-
<% end %>
|
112
|
-
<% end %>
|
113
|
-
</div>
|
114
82
|
</div>
|
115
83
|
</div>
|
116
84
|
|