blacklight-spotlight 3.0.0.alpha.8 → 3.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/app/assets/images/blacklight/arrow-alt-circle-left.svg +1 -0
- data/app/assets/images/blacklight/arrow-alt-circle-right.svg +1 -0
- data/app/assets/javascripts/spotlight/admin/{add_new_page_button.js → add_new_button.js} +7 -0
- data/app/assets/javascripts/spotlight/admin/block_mixins/autocompleteable.js +4 -4
- data/app/assets/javascripts/spotlight/admin/blocks/browse_block.js +55 -1
- data/app/assets/javascripts/spotlight/admin/blocks/browse_group_categories_block.js +88 -0
- data/app/assets/javascripts/spotlight/admin/blocks/pages_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/solr_documents_base_block.js +1 -1
- data/app/assets/javascripts/spotlight/admin/blocks/uploaded_items_block.js +7 -2
- data/app/assets/javascripts/spotlight/admin/crop.es6 +11 -0
- data/app/assets/javascripts/spotlight/admin/croppable.js +1 -1
- data/app/assets/javascripts/spotlight/admin/index.js +0 -2
- data/app/assets/javascripts/spotlight/admin/search_typeahead.js +2 -2
- data/app/assets/javascripts/spotlight/admin/sir-trevor/block_controls.js +21 -12
- data/app/assets/javascripts/spotlight/admin/sir-trevor/locales.js +11 -3
- data/app/assets/javascripts/spotlight/user/browse_group_categories.js +59 -0
- data/app/assets/javascripts/spotlight/user/index.js +1 -0
- data/app/assets/stylesheets/spotlight/_accessibility.scss +1 -1
- data/app/assets/stylesheets/spotlight/_breadcrumbs.scss +8 -0
- data/app/assets/stylesheets/spotlight/_browse.scss +16 -0
- data/app/assets/stylesheets/spotlight/_catalog.scss +6 -6
- data/app/assets/stylesheets/spotlight/_curation.scss +6 -0
- data/app/assets/stylesheets/spotlight/_featured_browse_categories_block.scss +214 -83
- data/app/assets/stylesheets/spotlight/_header.scss +1 -1
- data/app/assets/stylesheets/spotlight/_item_text_block.scss +6 -0
- data/app/assets/stylesheets/spotlight/_pages.scss +10 -5
- data/app/assets/stylesheets/spotlight/_report_a_problem.scss +5 -2
- data/app/assets/stylesheets/spotlight/_spotlight.scss +2 -0
- data/app/assets/stylesheets/spotlight/_translations.scss +7 -0
- data/app/assets/stylesheets/spotlight/browse_group_categories_block.scss +69 -0
- data/app/builders/spotlight/bootstrap_breadcrumbs_builder.rb +1 -2
- data/app/controllers/concerns/spotlight/search_helper.rb +2 -8
- data/app/controllers/spotlight/appearances_controller.rb +0 -12
- data/app/controllers/spotlight/browse_controller.rb +7 -3
- data/app/controllers/spotlight/catalog_controller.rb +1 -1
- data/app/controllers/spotlight/concerns/application_controller.rb +13 -2
- data/app/controllers/spotlight/exhibits_controller.rb +2 -3
- data/app/controllers/spotlight/featured_images_controller.rb +1 -1
- data/app/controllers/spotlight/groups_controller.rb +80 -0
- data/app/controllers/spotlight/pages_controller.rb +6 -9
- data/app/controllers/spotlight/resources/csv_upload_controller.rb +1 -1
- data/app/controllers/spotlight/searches_controller.rb +7 -19
- data/app/controllers/spotlight/translations_controller.rb +46 -0
- data/app/helpers/spotlight/application_helper.rb +1 -1
- data/app/helpers/spotlight/crop_helper.rb +4 -1
- data/app/helpers/spotlight/crud_link_helpers.rb +1 -1
- data/app/helpers/spotlight/main_app_helpers.rb +1 -1
- data/app/jobs/spotlight/add_uploads_from_csv.rb +30 -5
- data/app/mailers/spotlight/indexing_complete_mailer.rb +3 -2
- data/app/models/concerns/spotlight/exhibit_defaults.rb +1 -1
- data/app/models/concerns/spotlight/translatables.rb +17 -1
- data/app/models/sir_trevor_rails/blocks/browse_group_categories_block.rb +25 -0
- data/app/models/spotlight/ability.rb +2 -0
- data/app/models/spotlight/about_page.rb +3 -1
- data/app/models/spotlight/blacklight_configuration.rb +2 -1
- data/app/models/spotlight/contact.rb +1 -1
- data/app/models/spotlight/custom_field.rb +3 -3
- data/app/models/spotlight/exhibit.rb +18 -4
- data/app/models/spotlight/feature_page.rb +3 -1
- data/app/models/spotlight/featured_image.rb +29 -12
- data/app/models/spotlight/group.rb +22 -0
- data/app/models/spotlight/group_member.rb +11 -0
- data/app/models/spotlight/home_page.rb +3 -1
- data/app/models/spotlight/main_navigation.rb +2 -2
- data/app/models/spotlight/masthead.rb +1 -1
- data/app/models/spotlight/page.rb +5 -1
- data/app/models/spotlight/page_configurations.rb +6 -0
- data/app/models/spotlight/page_content.rb +2 -0
- data/app/models/spotlight/resources/csv_upload.rb +2 -1
- data/app/models/spotlight/resources/iiif_manifest.rb +8 -6
- data/app/models/spotlight/resources/upload.rb +1 -1
- data/app/models/spotlight/search.rb +10 -1
- data/app/models/spotlight/solr_document_sidecar.rb +7 -5
- data/app/models/spotlight/temporary_image.rb +8 -0
- data/app/services/spotlight/exhibit_import_export_service.rb +482 -0
- data/app/services/spotlight/solr_document_builder.rb +1 -0
- data/app/values/custom_field_name.rb +1 -0
- data/app/views/catalog/_save_search.html.erb +1 -1
- data/app/views/spotlight/about_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/browse/_search.html.erb +5 -3
- data/app/views/spotlight/browse/_search_title.html.erb +2 -1
- data/app/views/spotlight/browse/index.html.erb +13 -0
- data/app/views/spotlight/catalog/_document.html.erb +2 -4
- data/app/views/spotlight/catalog/index.iiif_json.jbuilder +22 -0
- data/app/views/spotlight/contacts/_form.html.erb +1 -1
- data/app/views/spotlight/feature_pages/_empty.html.erb +5 -5
- data/app/views/spotlight/featured_images/_form.html.erb +1 -1
- data/app/views/spotlight/featured_images/_upload_form.html.erb +1 -1
- data/app/views/spotlight/home_pages/_empty.html.erb +3 -3
- data/app/views/spotlight/indexing_complete_mailer/documents_indexed.html.erb +9 -0
- data/app/views/spotlight/pages/_form.html.erb +2 -2
- data/app/views/spotlight/searches/_form.html.erb +13 -0
- data/app/views/spotlight/searches/_group.html.erb +27 -0
- data/app/views/spotlight/searches/_search.html.erb +1 -0
- data/app/views/spotlight/searches/index.html.erb +58 -17
- data/app/views/spotlight/shared/_honeypot_field.html.erb +4 -0
- data/app/views/spotlight/shared/_report_a_problem.html.erb +7 -10
- data/app/views/spotlight/sir_trevor/blocks/_browse_block.html.erb +1 -0
- data/app/views/spotlight/sir_trevor/blocks/_browse_group_categories_block.html.erb +44 -0
- data/app/views/spotlight/sir_trevor/blocks/_uploaded_items_block.html.erb +7 -1
- data/app/views/spotlight/translations/_browse_categories.html.erb +29 -3
- data/app/views/spotlight/translations/_general.html.erb +7 -7
- data/app/views/spotlight/translations/_groups.html.erb +34 -0
- data/app/views/spotlight/translations/_import.html.erb +24 -0
- data/app/views/spotlight/translations/_metadata.html.erb +1 -1
- data/app/views/spotlight/translations/_page.html.erb +5 -5
- data/app/views/spotlight/translations/_pages.html.erb +4 -4
- data/app/views/spotlight/translations/_pages_table.html.erb +5 -5
- data/app/views/spotlight/translations/_search_fields.html.erb +3 -3
- data/app/views/spotlight/translations/edit.html.erb +14 -6
- data/app/views/spotlight/translations/show.yaml.yamlbuilder +81 -0
- data/config/i18n-tasks.yml +7 -0
- data/config/locales/spotlight.ar.yml +47 -24
- data/config/locales/spotlight.en.yml +182 -127
- data/config/routes.rb +16 -1
- data/db/migrate/20200403161512_add_subtitle_to_searches.rb +7 -0
- data/db/migrate/20210113092223_create_spotlight_groups.rb +23 -0
- data/lib/generators/spotlight/install_generator.rb +23 -2
- data/lib/generators/spotlight/templates/config/initializers/sir_trevor_rails.rb +10 -0
- data/lib/generators/spotlight/templates/config/initializers/spotlight_initializer.rb +3 -1
- data/lib/spotlight/engine.rb +27 -3
- data/lib/spotlight/upload_field_config.rb +1 -0
- data/lib/spotlight/version.rb +1 -1
- data/spec/controllers/spotlight/about_pages_controller_spec.rb +3 -3
- data/spec/controllers/spotlight/browse_controller_spec.rb +24 -1
- data/spec/controllers/spotlight/catalog_controller_spec.rb +1 -1
- data/spec/controllers/spotlight/contacts_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/feature_pages_controller_spec.rb +11 -0
- data/spec/controllers/spotlight/groups_controller_spec.rb +103 -0
- data/spec/controllers/spotlight/home_pages_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/resources/csv_upload_controller_spec.rb +4 -4
- data/spec/controllers/spotlight/resources/upload_controller_spec.rb +2 -2
- data/spec/controllers/spotlight/searches_controller_spec.rb +10 -3
- data/spec/controllers/spotlight/translations_controller_spec.rb +53 -2
- data/spec/controllers/spotlight/view_configurations_controller_spec.rb +1 -1
- data/spec/examples.txt +1437 -1389
- data/spec/factories/featured_images.rb +4 -0
- data/spec/factories/group.rb +17 -0
- data/spec/factories/searches.rb +11 -1
- data/spec/features/add_contacts_spec.rb +1 -1
- data/spec/features/browse_category_admin_spec.rb +39 -7
- data/spec/features/browse_category_navigation_spec.rb +44 -0
- data/spec/features/browse_category_spec.rb +2 -2
- data/spec/features/catalog_spec.rb +2 -2
- data/spec/features/create_exhibit_spec.rb +5 -4
- data/spec/features/dashboard_spec.rb +7 -7
- data/spec/features/edit_search_fields_spec.rb +2 -2
- data/spec/features/exhibits/administration_spec.rb +3 -3
- data/spec/features/exhibits/edit_metadata_fields_spec.rb +1 -1
- data/spec/features/exhibits/language_create_edit_spec.rb +3 -3
- data/spec/features/exhibits/translation_editing_spec.rb +57 -8
- data/spec/features/home_page_spec.rb +13 -4
- data/spec/features/item_admin_spec.rb +4 -4
- data/spec/features/javascript/about_page_admin_spec.rb +1 -1
- data/spec/features/javascript/block_controls_spec.rb +3 -1
- data/spec/features/javascript/blocks/browse_group_categories_block_spec.rb +64 -0
- data/spec/features/javascript/blocks/uploaded_items_block_spec.rb +4 -1
- data/spec/features/javascript/browse_group_admin_spec.rb +45 -0
- data/spec/features/javascript/edit_in_place_spec.rb +3 -3
- data/spec/features/javascript/feature_page_admin_spec.rb +1 -1
- data/spec/features/javascript/search_config_admin_spec.rb +1 -1
- data/spec/features/report_a_problem_spec.rb +6 -5
- data/spec/helpers/spotlight/crud_link_helpers_spec.rb +3 -3
- data/spec/helpers/spotlight/pages_helper_spec.rb +2 -2
- data/spec/i18n_spec.rb +0 -2
- data/spec/jobs/spotlight/add_uploads_from_csv_spec.rb +13 -1
- data/spec/mailers/spotlight/indexing_complete_mailer_spec.rb +11 -1
- data/spec/models/sir_trevor_rails/blocks/browse_group_categories_block_spec.rb +41 -0
- data/spec/models/solr_document_spec.rb +2 -3
- data/spec/models/spotlight/access_controls_enforcement_search_builder_spec.rb +1 -0
- data/spec/models/spotlight/exhibit_spec.rb +18 -2
- data/spec/models/spotlight/featured_image_spec.rb +27 -0
- data/spec/models/spotlight/group_spec.rb +19 -0
- data/spec/models/spotlight/main_navigation_spec.rb +1 -1
- data/spec/models/spotlight/page_spec.rb +6 -1
- data/spec/models/spotlight/resources/upload_spec.rb +43 -79
- data/spec/models/spotlight/role_spec.rb +3 -3
- data/spec/models/spotlight/search_spec.rb +30 -3
- data/spec/{serializers/spotlight/exhibit_export_serializer_spec.rb → services/spotlight/exhibit_import_export_service_spec.rb} +168 -23
- data/spec/services/spotlight/iiif_resource_resolver_spec.rb +1 -1
- data/spec/services/spotlight/solr_document_builder_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/support/features/test_features_helpers.rb +15 -0
- data/spec/test_app_templates/Gemfile.extra +1 -3
- data/spec/test_app_templates/catalog_controller.rb +6 -3
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +1 -1
- data/spec/views/shared/_exhibit_navbar.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/browse/index.html.erb_spec.rb +2 -0
- data/spec/views/spotlight/dashboards/_analytics.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/dashboards/_reindexing_activity.html.erb_spec.rb +6 -6
- data/spec/views/spotlight/metadata_configurations/_metadata_field.html.erb_spec.rb +3 -3
- data/spec/views/spotlight/pages/show.html.erb_spec.rb +1 -0
- data/spec/views/spotlight/search_configurations/_facets.html.erb_spec.rb +1 -1
- data/spec/views/spotlight/search_configurations/_sort.html.erb_spec.rb +7 -8
- data/spec/views/spotlight/translations/_import.html.erb_spec.rb +24 -0
- data/vendor/assets/javascripts/leaflet-iiif.js +46 -21
- data/vendor/assets/javascripts/tiny-slider.js +3218 -0
- data/vendor/assets/stylesheets/tiny-slider.css +1 -0
- metadata +399 -284
- data/app/serializers/spotlight/exhibit_export_serializer.rb +0 -205
- data/app/serializers/spotlight/featured_image_representer.rb +0 -29
- data/app/serializers/spotlight/main_navigation_representer.rb +0 -13
- data/app/serializers/spotlight/page_representer.rb +0 -33
- data/vendor/assets/javascripts/handlebars-v1.3.0.js +0 -2746
@@ -6,6 +6,10 @@ FactoryBot.define do
|
|
6
6
|
iiif_tilesource { 'https://exhibits-stage.stanford.edu/images/78' }
|
7
7
|
end
|
8
8
|
|
9
|
+
factory :temporary_image, class: 'Spotlight::TemporaryImage' do
|
10
|
+
image { Rack::Test::UploadedFile.new(File.expand_path(File.join('..', 'fixtures', 'avatar.png'), __dir__)) }
|
11
|
+
end
|
12
|
+
|
9
13
|
factory :masthead, class: 'Spotlight::Masthead' do
|
10
14
|
image { Rack::Test::UploadedFile.new(File.expand_path(File.join('..', 'fixtures', 'avatar.png'), __dir__)) }
|
11
15
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
FactoryBot.define do
|
4
|
+
factory :group, class: 'Spotlight::Group' do
|
5
|
+
exhibit
|
6
|
+
|
7
|
+
factory :group_with_searches do
|
8
|
+
transient do
|
9
|
+
searches_count { 5 }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
after(:create) do |group, evaluator|
|
14
|
+
create_list(:search, evaluator.searches_count, groups: [group]) if evaluator.respond_to?(:searches_count)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
data/spec/factories/searches.rb
CHANGED
@@ -7,6 +7,16 @@ FactoryBot.define do
|
|
7
7
|
sequence(:slug) { |n| "Search#{n}" }
|
8
8
|
|
9
9
|
after(:build) { |search| search.thumbnail = FactoryBot.create(:featured_image) }
|
10
|
+
|
11
|
+
factory :search_with_groups do
|
12
|
+
transient do
|
13
|
+
groups_count { 2 }
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
after(:create) do |search, evaluator|
|
18
|
+
create_list(:group, evaluator.groups_count, searches: [search]) if evaluator.respond_to?(:groups_count)
|
19
|
+
end
|
10
20
|
end
|
11
21
|
|
12
22
|
factory :published_search, parent: :search do
|
@@ -15,7 +25,7 @@ FactoryBot.define do
|
|
15
25
|
|
16
26
|
factory :default_search, class: 'Spotlight::Search' do
|
17
27
|
exhibit
|
18
|
-
title { 'All
|
28
|
+
title { 'All exhibit items' }
|
19
29
|
long_description { 'All items in this exhibit.' }
|
20
30
|
|
21
31
|
after(:build) { |search| search.thumbnail = FactoryBot.create(:featured_image) }
|
@@ -17,7 +17,7 @@ describe 'Add a contact to an exhibit', type: :feature do
|
|
17
17
|
fill_in 'Location', with: 'Rome'
|
18
18
|
fill_in 'Telephone', with: '(555) 555-5555 ext. 12345 (mobile)'
|
19
19
|
|
20
|
-
|
20
|
+
find('input[name="commit"]').click
|
21
21
|
end
|
22
22
|
expect(page).to have_content 'The contact was created.'
|
23
23
|
|
@@ -21,7 +21,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
21
21
|
expect(page).to have_css('#save-modal')
|
22
22
|
fill_in 'search_title', with: 'Some search'
|
23
23
|
expect do
|
24
|
-
|
24
|
+
find('input[name="commit"]').click
|
25
25
|
exhibit.searches.reload
|
26
26
|
end.to change { exhibit.searches.count }.by 1
|
27
27
|
expect(exhibit.searches.last.query_params).to eq 'q' => 'xyz'
|
@@ -32,7 +32,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
32
32
|
click_button 'Save this search'
|
33
33
|
expect(page).to have_css('#save-modal')
|
34
34
|
select search.title, from: 'id'
|
35
|
-
|
35
|
+
find('input[name="commit"]').click
|
36
36
|
expect(search.reload.query_params).to eq 'q' => 'xyz'
|
37
37
|
end
|
38
38
|
end
|
@@ -40,7 +40,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
40
40
|
describe 'edit' do
|
41
41
|
it 'displays an edit form' do
|
42
42
|
visit spotlight.edit_exhibit_search_path(exhibit, search)
|
43
|
-
expect(page).to have_css('h1 small', text: 'Edit
|
43
|
+
expect(page).to have_css('h1 small', text: 'Edit browse category')
|
44
44
|
expect(find_field('search_title').value).to eq search.title
|
45
45
|
within '.appliedParams' do
|
46
46
|
expect(page).to have_content 'Genre'
|
@@ -48,6 +48,38 @@ describe 'Browse Category Administration', type: :feature do
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
+
describe 'with a group present' do
|
52
|
+
let!(:group) { FactoryBot.create(:group, exhibit: exhibit, title: 'Good group') }
|
53
|
+
|
54
|
+
it 'enables group selection' do
|
55
|
+
visit spotlight.edit_exhibit_search_path(exhibit, search)
|
56
|
+
click_link 'Group'
|
57
|
+
expect(page).to have_content 'You can add this browse category'
|
58
|
+
|
59
|
+
within '#search-group' do
|
60
|
+
expect(find('input[type="checkbox"]')).not_to be_checked
|
61
|
+
check 'Good group'
|
62
|
+
end
|
63
|
+
|
64
|
+
click_button 'Save changes'
|
65
|
+
expect(page).to have_content('The browse category was successfully updated.')
|
66
|
+
visit spotlight.edit_exhibit_search_path(exhibit, search)
|
67
|
+
click_link 'Group'
|
68
|
+
|
69
|
+
within '#search-group' do
|
70
|
+
expect(find('input[type="checkbox"]')).to be_checked
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe 'without a group present' do
|
76
|
+
it 'displays no group help text' do
|
77
|
+
visit spotlight.edit_exhibit_search_path(exhibit, search)
|
78
|
+
click_link 'Group'
|
79
|
+
expect(page).to have_content 'You cannot add this browse category'
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
51
83
|
it 'attaches a masthead image' do
|
52
84
|
visit spotlight.edit_exhibit_search_path exhibit, search
|
53
85
|
|
@@ -63,7 +95,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
63
95
|
|
64
96
|
click_button 'Save changes'
|
65
97
|
|
66
|
-
expect(page).to have_content('The
|
98
|
+
expect(page).to have_content('The browse category was successfully updated.')
|
67
99
|
|
68
100
|
search.reload
|
69
101
|
|
@@ -83,7 +115,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
83
115
|
|
84
116
|
click_button 'Save changes'
|
85
117
|
|
86
|
-
expect(page).to have_content('The
|
118
|
+
expect(page).to have_content('The browse category was successfully updated.')
|
87
119
|
|
88
120
|
search.reload
|
89
121
|
|
@@ -97,7 +129,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
97
129
|
check 'Search box'
|
98
130
|
|
99
131
|
click_button 'Save changes'
|
100
|
-
expect(page).to have_content('The
|
132
|
+
expect(page).to have_content('The browse category was successfully updated.')
|
101
133
|
search.reload
|
102
134
|
|
103
135
|
expect(search.search_box).to eq true
|
@@ -109,7 +141,7 @@ describe 'Browse Category Administration', type: :feature do
|
|
109
141
|
|
110
142
|
click_button 'Save changes'
|
111
143
|
|
112
|
-
expect(page).to have_content('The
|
144
|
+
expect(page).to have_content('The browse category was successfully updated.')
|
113
145
|
|
114
146
|
search.reload
|
115
147
|
|
@@ -0,0 +1,44 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
describe 'Browse pages' do
|
4
|
+
let(:exhibit) { FactoryBot.create(:exhibit) }
|
5
|
+
let!(:search) { FactoryBot.create(:search, title: 'Some Saved Search', exhibit: exhibit, published: true) }
|
6
|
+
let!(:search_2) { FactoryBot.create(:search, title: 'Some Other Saved Search', exhibit: exhibit, published: true) }
|
7
|
+
let!(:group) { FactoryBot.create(:group, title: 'Awesome group', exhibit: exhibit, published: true, searches: [search]) }
|
8
|
+
|
9
|
+
describe 'landing page' do
|
10
|
+
before do
|
11
|
+
visit spotlight.exhibit_browse_index_path(exhibit)
|
12
|
+
end
|
13
|
+
|
14
|
+
it 'displays all categories and tabs for each group' do
|
15
|
+
within '.browse-group-navigation' do
|
16
|
+
expect(page).to have_css 'li.nav-item a.nav-link.active', text: 'All'
|
17
|
+
expect(page).to have_css 'li.nav-item a.nav-link', count: exhibit.groups.count + 1
|
18
|
+
end
|
19
|
+
within '.browse-landing' do
|
20
|
+
expect(page).to have_css '.category', count: 2
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
it 'filters browse categories when navigated' do
|
25
|
+
within '.browse-group-navigation' do
|
26
|
+
click_link group.title
|
27
|
+
expect(page).to have_css 'li.nav-item a.nav-link.active', text: group.title
|
28
|
+
end
|
29
|
+
within '.browse-landing' do
|
30
|
+
expect(page).to have_css '.category', count: 1
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'clicking through from the context of a category provides the breadcrums' do
|
35
|
+
within '.browse-group-navigation' do
|
36
|
+
click_link group.title
|
37
|
+
expect(page).to have_css 'li.nav-item a.nav-link.active', text: group.title
|
38
|
+
end
|
39
|
+
click_link 'Some Saved Search'
|
40
|
+
expect(page).to have_css 'ul.breadcrumb li.breadcrumb-item', count: 4
|
41
|
+
expect(page).to have_css 'li.breadcrumb-item', text: 'Awesome group'
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -100,7 +100,7 @@ describe 'Browse pages' do
|
|
100
100
|
it 'uses the appropriate view config' do
|
101
101
|
visit spotlight.exhibit_browse_path(exhibit, search)
|
102
102
|
|
103
|
-
expect(page).to have_css('#documents.gallery .document', count: 1)
|
103
|
+
expect(page).to have_css('#documents.documents-gallery .document', count: 1)
|
104
104
|
|
105
105
|
within '.document' do
|
106
106
|
expect(page).not_to have_css('dt')
|
@@ -113,7 +113,7 @@ describe 'Browse pages' do
|
|
113
113
|
it 'renders the gallery view' do
|
114
114
|
visit spotlight.exhibit_browse_path(exhibit, search)
|
115
115
|
expect(page).to have_selector '.view-type-gallery.active'
|
116
|
-
expect(page).to have_selector '#documents.gallery'
|
116
|
+
expect(page).to have_selector '#documents.documents-gallery'
|
117
117
|
end
|
118
118
|
end
|
119
119
|
|
@@ -23,13 +23,13 @@ describe 'Catalog', type: :feature do
|
|
23
23
|
|
24
24
|
it "has a 'Item Visiblity' facet" do
|
25
25
|
visit spotlight.search_exhibit_catalog_path(exhibit)
|
26
|
-
expect(page).to have_selector '.card-header', text: 'Item
|
26
|
+
expect(page).to have_selector '.card-header', text: 'Item visibility'
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
30
|
it 'has breadcrumbs' do
|
31
31
|
visit spotlight.search_exhibit_catalog_path(exhibit, q: 'xyz')
|
32
|
-
expect(page).to have_breadcrumbs 'Home', 'Search
|
32
|
+
expect(page).to have_breadcrumbs 'Home', 'Search results'
|
33
33
|
end
|
34
34
|
|
35
35
|
describe 'Non-spotlight #show' do
|
@@ -24,7 +24,7 @@ describe 'Create a new exhibit', type: :feature do
|
|
24
24
|
|
25
25
|
fill_in 'Title', with: 'My exhibit title'
|
26
26
|
|
27
|
-
|
27
|
+
find('input[name="commit"]').click
|
28
28
|
|
29
29
|
expect(page).to have_content 'The exhibit was created.'
|
30
30
|
expect(Spotlight::Exhibit.last.slug).to eq 'my-exhibit-title'
|
@@ -39,7 +39,7 @@ describe 'Create a new exhibit', type: :feature do
|
|
39
39
|
fill_in 'Title', with: 'My exhibit title'
|
40
40
|
fill_in 'URL slug', with: 'custom-slug'
|
41
41
|
|
42
|
-
|
42
|
+
find('input[name="commit"]').click
|
43
43
|
|
44
44
|
expect(page).to have_content 'The exhibit was created.'
|
45
45
|
expect(Spotlight::Exhibit.last.slug).to eq 'custom-slug'
|
@@ -51,14 +51,15 @@ describe 'Create a new exhibit', type: :feature do
|
|
51
51
|
fill_in 'Title', with: 'My exhibit title'
|
52
52
|
fill_in 'URL slug', with: 'custom-slug'
|
53
53
|
|
54
|
-
|
54
|
+
find('input[name="commit"]').click
|
55
55
|
|
56
56
|
visit spotlight.new_exhibit_path
|
57
57
|
|
58
58
|
fill_in 'Title', with: 'My exhibit title'
|
59
59
|
fill_in 'URL slug', with: 'custom-slug'
|
60
60
|
|
61
|
-
|
61
|
+
find('input[name="commit"]').click
|
62
|
+
|
62
63
|
expect(page).to have_content 'has already been taken'
|
63
64
|
end
|
64
65
|
end
|
@@ -2,11 +2,6 @@
|
|
2
2
|
|
3
3
|
describe 'Dashboard', type: :feature do
|
4
4
|
let(:exhibit) { FactoryBot.create(:exhibit) }
|
5
|
-
let(:admin) { FactoryBot.create(:exhibit_admin, exhibit: exhibit) }
|
6
|
-
before do
|
7
|
-
login_as(admin)
|
8
|
-
end
|
9
|
-
|
10
5
|
let!(:parent_feature_page) do
|
11
6
|
FactoryBot.create(:feature_page, title: 'Parent Page', exhibit: exhibit)
|
12
7
|
end
|
@@ -18,17 +13,22 @@ describe 'Dashboard', type: :feature do
|
|
18
13
|
exhibit: exhibit
|
19
14
|
)
|
20
15
|
end
|
16
|
+
let(:admin) { FactoryBot.create(:exhibit_admin, exhibit: exhibit) }
|
17
|
+
|
18
|
+
before do
|
19
|
+
login_as(admin)
|
20
|
+
end
|
21
21
|
|
22
22
|
it 'includes a list of recently edited feature pages' do
|
23
23
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
24
|
-
expect(page).to have_content 'Recent
|
24
|
+
expect(page).to have_content 'Recent site building activity'
|
25
25
|
expect(page).to have_content 'Parent Page'
|
26
26
|
expect(page).to have_content 'Child Page'
|
27
27
|
end
|
28
28
|
|
29
29
|
it 'includes a list of recently indexed items' do
|
30
30
|
visit spotlight.exhibit_dashboard_path(exhibit)
|
31
|
-
expect(page).to have_content 'Recently
|
31
|
+
expect(page).to have_content 'Recently updated items'
|
32
32
|
expect(page).to have_selector('#documents')
|
33
33
|
end
|
34
34
|
end
|
@@ -54,7 +54,7 @@ describe 'Search Administration', type: :feature do
|
|
54
54
|
visit spotlight.edit_exhibit_search_configuration_path(exhibit)
|
55
55
|
|
56
56
|
expect(page).to have_css("input[name='blacklight_configuration[sort_fields][relevance][enable]'][disabled='disabled']")
|
57
|
-
expect(page).to have_css('#nested-sort-fields .dd-item:nth-child(5) h3', text: '
|
57
|
+
expect(page).to have_css('#nested-sort-fields .dd-item:nth-child(5) h3', text: 'date (new to old)')
|
58
58
|
|
59
59
|
uncheck 'blacklight_configuration_sort_fields_title_enabled'
|
60
60
|
uncheck 'blacklight_configuration_sort_fields_identifier_enabled'
|
@@ -72,7 +72,7 @@ describe 'Search Administration', type: :feature do
|
|
72
72
|
expect(find('#blacklight_configuration_sort_fields_identifier_enabled')).not_to be_checked
|
73
73
|
|
74
74
|
# Type is now sorted last
|
75
|
-
expect(page).to have_css('#nested-sort-fields .dd-item:nth-child(5) h3', text: '
|
75
|
+
expect(page).to have_css('#nested-sort-fields .dd-item:nth-child(5) h3', text: 'type')
|
76
76
|
end
|
77
77
|
end
|
78
78
|
end
|
@@ -63,9 +63,9 @@ describe 'Exhibit Administration', type: :feature do
|
|
63
63
|
it 'updates the aria-labels properly', js: true do
|
64
64
|
visit spotlight.edit_exhibit_path(exhibit)
|
65
65
|
|
66
|
-
expect(find_field(email_id_0)['aria-label']).to eq '
|
66
|
+
expect(find_field(email_id_0)['aria-label']).to eq 'Recipient email 1'
|
67
67
|
find('#another-email').click
|
68
|
-
expect(find_field(email_id_1)['aria-label']).to eq '
|
68
|
+
expect(find_field(email_id_1)['aria-label']).to eq 'Recipient email 2'
|
69
69
|
end
|
70
70
|
|
71
71
|
it 'allows deletion of contact email addresses', js: true do
|
@@ -135,7 +135,7 @@ describe 'Exhibit Administration', type: :feature do
|
|
135
135
|
find_all('.contact-email-delete').first.click
|
136
136
|
end
|
137
137
|
|
138
|
-
expect(page).to have_css("##{hidden_input_id_0}~div span.contact-email-delete-error", text: 'Problem deleting
|
138
|
+
expect(page).to have_css("##{hidden_input_id_0}~div span.contact-email-delete-error", text: 'Problem deleting recipient: Not Found')
|
139
139
|
end
|
140
140
|
end
|
141
141
|
end
|
@@ -9,7 +9,7 @@ describe 'Editing metadata fields', type: :feature do
|
|
9
9
|
it 'works' do
|
10
10
|
visit spotlight.edit_exhibit_metadata_configuration_path exhibit
|
11
11
|
|
12
|
-
expect(page).to have_content 'Display and
|
12
|
+
expect(page).to have_content 'Display and order metadata fields'
|
13
13
|
|
14
14
|
check :blacklight_configuration_index_fields_language_ssm_show
|
15
15
|
check :blacklight_configuration_index_fields_abstract_tesim_show
|
@@ -13,7 +13,7 @@ describe 'Language', type: :feature do
|
|
13
13
|
it 'successfully adds languages' do
|
14
14
|
within '#language' do
|
15
15
|
select 'Albanian'
|
16
|
-
|
16
|
+
find('input[name="commit"]').click
|
17
17
|
end
|
18
18
|
expect(page).to have_css '.flash_messages', text: 'The language was created.'
|
19
19
|
within '#language' do
|
@@ -27,7 +27,7 @@ describe 'Language', type: :feature do
|
|
27
27
|
it 'successfully updates the language' do
|
28
28
|
within '#language' do
|
29
29
|
select 'Albanian'
|
30
|
-
|
30
|
+
find('input[name="commit"]').click
|
31
31
|
end
|
32
32
|
expect(page).to have_css '.flash_messages', text: 'The language was created.'
|
33
33
|
within '#language' do
|
@@ -43,7 +43,7 @@ describe 'Language', type: :feature do
|
|
43
43
|
it 'successfully updates the language' do
|
44
44
|
within '#language' do
|
45
45
|
select 'Albanian'
|
46
|
-
|
46
|
+
find('input[name="commit"]').click
|
47
47
|
end
|
48
48
|
expect(page).to have_css '.flash_messages', text: 'The language was created.'
|
49
49
|
within '#language' do
|
@@ -148,7 +148,7 @@ describe 'Translation editing', type: :feature do
|
|
148
148
|
before do
|
149
149
|
within '.translation-edit-form #general' do
|
150
150
|
fill_in 'Home', with: 'Maison'
|
151
|
-
fill_in 'Search
|
151
|
+
fill_in 'Search results', with: 'Résultats de la recherche'
|
152
152
|
click_button 'Save changes'
|
153
153
|
end
|
154
154
|
end
|
@@ -310,7 +310,7 @@ describe 'Translation editing', type: :feature do
|
|
310
310
|
click_link 'Search field labels'
|
311
311
|
|
312
312
|
within('#search_fields', visible: true) do
|
313
|
-
fill_in '
|
313
|
+
fill_in 'relevance', with: 'French Relevance'
|
314
314
|
click_button 'Save changes'
|
315
315
|
end
|
316
316
|
|
@@ -330,10 +330,10 @@ describe 'Translation editing', type: :feature do
|
|
330
330
|
|
331
331
|
it 'has a title and description for every browse category' do
|
332
332
|
within '#browse' do
|
333
|
-
expect(page).to have_css('input[type="text"]', count:
|
333
|
+
expect(page).to have_css('input[type="text"]', count: 4)
|
334
334
|
expect(page).to have_css('textarea', count: 2)
|
335
335
|
|
336
|
-
expect(page).to have_field 'All
|
336
|
+
expect(page).to have_field 'All exhibit items'
|
337
337
|
expect(page).to have_field 'Browse Category 1'
|
338
338
|
expect(page).to have_css('.form-text', text: 'All items in this exhibit.')
|
339
339
|
end
|
@@ -342,7 +342,7 @@ describe 'Translation editing', type: :feature do
|
|
342
342
|
it 'redirects to the same form tab' do
|
343
343
|
click_link 'Browse categories'
|
344
344
|
within('#browse', visible: true) do
|
345
|
-
fill_in 'All
|
345
|
+
fill_in 'All exhibit items', with: "Tous les objets d'exposition"
|
346
346
|
click_button 'Save changes'
|
347
347
|
end
|
348
348
|
|
@@ -354,7 +354,7 @@ describe 'Translation editing', type: :feature do
|
|
354
354
|
click_link 'Browse categories'
|
355
355
|
|
356
356
|
within('#browse', visible: true) do
|
357
|
-
fill_in 'All
|
357
|
+
fill_in 'All exhibit items', with: "Tous les objets d'exposition"
|
358
358
|
|
359
359
|
first('.translation-description-toggle').click
|
360
360
|
|
@@ -366,7 +366,7 @@ describe 'Translation editing', type: :feature do
|
|
366
366
|
|
367
367
|
expect(page).to have_css('.flash_messages', text: 'The exhibit was successfully updated.')
|
368
368
|
|
369
|
-
expect(exhibit.searches.first.title).to eq 'All
|
369
|
+
expect(exhibit.searches.first.title).to eq 'All exhibit items'
|
370
370
|
expect(exhibit.searches.first.long_description).to eq 'All items in this exhibit.'
|
371
371
|
|
372
372
|
I18n.locale = :fr
|
@@ -378,6 +378,55 @@ describe 'Translation editing', type: :feature do
|
|
378
378
|
end
|
379
379
|
end
|
380
380
|
|
381
|
+
describe 'Browse groups' do
|
382
|
+
before do
|
383
|
+
FactoryBot.create(:group, exhibit: exhibit, title: 'Browse Group 1')
|
384
|
+
FactoryBot.create(:group, exhibit: exhibit, title: 'Browse Group 2')
|
385
|
+
|
386
|
+
visit spotlight.edit_exhibit_translations_path(exhibit, language: 'fr')
|
387
|
+
end
|
388
|
+
|
389
|
+
it 'has a title browse group' do
|
390
|
+
within '#groups' do
|
391
|
+
expect(page).to have_css('input[type="text"]', count: 2)
|
392
|
+
|
393
|
+
expect(page).to have_field 'Browse Group 1'
|
394
|
+
expect(page).to have_field 'Browse Group 2'
|
395
|
+
end
|
396
|
+
end
|
397
|
+
|
398
|
+
it 'redirects to the same form tab' do
|
399
|
+
click_link 'Browse categories'
|
400
|
+
within('#groups', visible: true) do
|
401
|
+
fill_in 'Browse Group 1', with: 'parcourir le groupe 1'
|
402
|
+
click_button 'Save changes'
|
403
|
+
end
|
404
|
+
|
405
|
+
expect(page).to have_css '.nav-pills .nav-link.active', text: 'French'
|
406
|
+
expect(page).to have_css '.nav-tabs .nav-link.active', text: 'Browse groups'
|
407
|
+
end
|
408
|
+
|
409
|
+
it 'persists changes', js: true do
|
410
|
+
click_link 'Browse groups'
|
411
|
+
|
412
|
+
within('#groups', visible: true) do
|
413
|
+
fill_in 'Browse Group 1', with: 'parcourir le groupe 1'
|
414
|
+
|
415
|
+
click_button 'Save changes'
|
416
|
+
end
|
417
|
+
|
418
|
+
expect(page).to have_css('.flash_messages', text: 'The exhibit was successfully updated.')
|
419
|
+
|
420
|
+
expect(exhibit.groups.first.title).to eq 'Browse Group 1'
|
421
|
+
|
422
|
+
I18n.locale = :fr
|
423
|
+
Translation.current_exhibit = exhibit
|
424
|
+
expect(exhibit.groups.first.title).to eq 'parcourir le groupe 1'
|
425
|
+
I18n.locale = I18n.default_locale
|
426
|
+
Translation.current_exhibit = nil
|
427
|
+
end
|
428
|
+
end
|
429
|
+
|
381
430
|
describe 'home page translation table entry' do
|
382
431
|
let(:feature_page) { FactoryBot.create(:feature_page, exhibit: exhibit) }
|
383
432
|
let(:about_page) { FactoryBot.create(:about_page, exhibit: exhibit) }
|
@@ -407,7 +456,7 @@ describe 'Translation editing', type: :feature do
|
|
407
456
|
visit spotlight.edit_exhibit_translations_path(exhibit, language: 'fr')
|
408
457
|
expect(page).to have_link('General 1/8')
|
409
458
|
expect(page).to have_link('Search field labels 0/16')
|
410
|
-
expect(page).to have_link('Browse categories 0/
|
459
|
+
expect(page).to have_link('Browse categories 0/3')
|
411
460
|
expect(page).to have_link('Metadata field labels 0/17')
|
412
461
|
end
|
413
462
|
end
|