blacklight-gallery 4.2.0 → 4.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d46a1601796a187729339ce0655d2537db43a7319608a2de67cd763b38fcbdcd
4
- data.tar.gz: b9f28ea874c0908cfc9e19f7134b7dfc29779ed5c7865af8f96f1becab54a478
3
+ metadata.gz: b2a0883ccc5d8a704089cb412b638f5c23e8a4c99c17f975ed9783e5bf2e0f73
4
+ data.tar.gz: a1535e02691bfcc2c282b5e4df8eb95d87f0f1a646b8c4d8aace0e5cba231b39
5
5
  SHA512:
6
- metadata.gz: 38912a52ab2cc3a35ec137d5e326e4e92f90228dd8254f9fa7526dc5f565945c08aefe3fcda4d028191dea8a7615b3073865e3c513a1701824deef9a3d4b092f
7
- data.tar.gz: 76f328cf6da35f629a2ce99396ec89be2b5d97331f38daee12574201b9a21392f09b366ff38e099b4510bf380a3ed40a9a74509e7be384455d99fb865a73c7b6
6
+ metadata.gz: 5e897d9dd4f500ca90f25ce99375ffd01b23627e1c1c3782c760c8d5393dd34164c3a77febf0adcab25efcee3e7d215d73fe79a0e1dd79241a593d8c0ab0ec64
7
+ data.tar.gz: 2c2d9760850e5718537c471737d74719f3555f702df073c243438d93cfc09ddf6488abb4f2bc99fe8d5ed84b83cc57e9d1c79234e1aad97caabd5b0110f96eae
@@ -24,15 +24,15 @@ jobs:
24
24
  rails_version: '7.0.4'
25
25
  blacklight_version: '~> 7.0'
26
26
  experimental: false
27
- - ruby: '3.1'
27
+ - ruby: '3.2'
28
28
  rails_version: '7.0.4'
29
- blacklight_version: '8.0.0.beta6'
29
+ blacklight_version: '~> 8.0'
30
30
  experimental: false
31
- - ruby: '3.1'
31
+ - ruby: '3.2'
32
32
  rails_version: '7.0.4'
33
33
  blacklight_version: 'github'
34
34
  experimental: true
35
- - ruby: '3.1'
35
+ - ruby: '3.2'
36
36
  rails_version: '7.0.4'
37
37
  blacklight_version: 'github'
38
38
  experimental: true
data/README.md CHANGED
@@ -49,3 +49,11 @@ If you would like to add or remove any particular view either add or remove the
49
49
  3. Commit your changes (`git commit -am 'Add some feature'`)
50
50
  4. Push to the branch (`git push origin my-new-feature`)
51
51
  5. Create new Pull Request
52
+
53
+ ## Releasing
54
+
55
+ 1. Edit `lib/version.rb` and `package.json` to set the new version
56
+ 1. Commit the changes e.g. `git commit -am "Bump version to X.X.X"`
57
+ 1. Push release to rubygems `bundle exec rake release`
58
+ 1. Push release to NPM `npm publish`
59
+ 1. Create a release on github with the tag that was just created: https://github.com/projectblacklight/blacklight-gallery/releases/new
@@ -0,0 +1,2 @@
1
+ //= link_tree ../../javascripts .js
2
+ //= link_tree ../../../../vendor/assets/javascripts .js
@@ -10,7 +10,7 @@
10
10
  }
11
11
  }
12
12
 
13
- margin-bottom: $spacer / 2;
13
+ margin-bottom: $spacer * 0.5;
14
14
  position: relative;
15
15
  width: auto;
16
16
 
@@ -3,7 +3,7 @@
3
3
  Blacklight::DocumentComponent.new(classes: 'col', component: :div, document: @document, presenter: @presenter, counter: @counter)
4
4
  %>
5
5
  <%= render(component) do |component| %>
6
- <% component.body do %>
6
+ <% component.with_body do %>
7
7
  <div class="thumbnail-container">
8
8
  <%= thumbnail %>
9
9
 
@@ -4,7 +4,7 @@ module Blacklight
4
4
  module Gallery
5
5
  class DocumentComponent < Blacklight::DocumentComponent
6
6
  def before_render
7
- thumbnail(image_options: { class: 'img-thumbnail' }) unless thumbnail.present?
7
+ with_thumbnail(image_options: { class: 'img-thumbnail' }) unless thumbnail.present?
8
8
  super
9
9
  end
10
10
 
@@ -3,7 +3,7 @@
3
3
  Blacklight::DocumentComponent.new(classes: 'slideshow-preview-thumbnail', component: :div, document: @document, presenter: @presenter, counter: @counter)
4
4
  %>
5
5
  <%= render(component) do |component| %>
6
- <% component.body do %>
7
- <%= @view_context.link_to_document(@document, thumbnail, class: 'thumbnail', data: { 'context-href': nil, 'slide-to': @document_counter - 1, toggle: "modal", target: "#slideshow-modal" }) %>
6
+ <% component.with_body do %>
7
+ <%= @view_context.link_to_document(@document, thumbnail, class: 'thumbnail', data: { 'context-href': nil, 'slide-to': @document_counter, toggle: "modal", target: "#slideshow-modal" }) %>
8
8
  <% end %>
9
9
  <% end %>
@@ -25,8 +25,7 @@ module Blacklight
25
25
  class: 'thumbnail thumbnail-placeholder'
26
26
  )
27
27
  end
28
-
29
- thumbnail(thumbnail_content)
28
+ with_thumbnail(thumbnail_content)
30
29
  end
31
30
 
32
31
  def presenter
@@ -29,6 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.add_development_dependency "solr_wrapper"
30
30
  spec.add_development_dependency "engine_cart", "~> 2.0"
31
31
  spec.add_development_dependency "capybara"
32
- spec.add_development_dependency 'webdrivers'
33
32
  spec.add_development_dependency "selenium-webdriver", '>= 3.13.1'
34
33
  end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ pin_all_from File.expand_path('../app/assets/javascripts/blacklight_gallery', __dir__), under: 'blacklight_gallery'
4
+ pin_all_from File.expand_path('../vendor/assets/javascripts', __dir__)
@@ -3,6 +3,9 @@ require 'blacklight'
3
3
  module Blacklight
4
4
  module Gallery
5
5
  class Engine < Rails::Engine
6
+ initializer 'blacklight_gallery.importmap', before: 'importmap' do |app|
7
+ app.config.importmap.paths << Engine.root.join('config/importmap.rb') if app.config.respond_to?(:importmap)
8
+ end
6
9
  end
7
10
  end
8
11
  end
@@ -1,5 +1,5 @@
1
1
  module Blacklight
2
2
  module Gallery
3
- VERSION = "4.2.0"
3
+ VERSION = "4.4.0"
4
4
  end
5
5
  end
@@ -29,6 +29,7 @@ module BlacklightGallery
29
29
 
30
30
  def assets
31
31
  copy_file "blacklight_gallery.css.scss", "app/assets/stylesheets/blacklight_gallery.css.scss"
32
+ append_to_file 'app/assets/config/manifest.js', "\n//= link blacklight_gallery/manifest.js"
32
33
  copy_file "blacklight_gallery.js", "app/assets/javascripts/blacklight_gallery.js"
33
34
 
34
35
  insert_into_file "app/assets/javascripts/application.js", after: '//= require blacklight/blacklight' do
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blacklight-gallery",
3
- "version": "4.2.0",
3
+ "version": "4.3.0",
4
4
  "description": "Gallery views for Blacklight search results",
5
5
  "main": "app/assets/javascripts/blacklight_gallery/default.js",
6
6
  "files": [
@@ -20,7 +20,7 @@
20
20
  "homepage": "https://github.com/projectblacklight/blacklight-gallery#readme",
21
21
  "devDependencies": { },
22
22
  "dependencies": {
23
- "blacklight-frontend": ">=7.1.0-alpha",
23
+ "blacklight-frontend": ">=7.1.0 <9",
24
24
  "jquery": ">=3.0"
25
25
  }
26
26
  }
@@ -12,7 +12,7 @@ RSpec.describe Blacklight::Gallery::DocumentComponent, type: :component do
12
12
  end
13
13
 
14
14
  let(:attr) { {} }
15
- let(:view_context) { controller.view_context }
15
+ let(:view_context) { vc_test_controller.view_context }
16
16
  let(:render) do
17
17
  component.render_in(view_context)
18
18
  end
@@ -43,13 +43,13 @@ RSpec.describe Blacklight::Gallery::DocumentComponent, type: :component do
43
43
  end
44
44
 
45
45
  before do
46
- allow(controller).to receive(:blacklight_config).and_return(blacklight_config)
46
+ allow(vc_test_controller).to receive(:blacklight_config).and_return(blacklight_config)
47
47
  allow(view_context).to receive(:current_search_session).and_return(nil)
48
48
  allow(view_context).to receive(:search_session).and_return({})
49
49
  allow(view_context).to receive(:blacklight_config).and_return(blacklight_config)
50
50
 
51
51
  # dumb hack to get our stubbing into the thumbnail component
52
- allow(controller).to receive(:view_context).and_return(view_context)
52
+ allow(vc_test_controller).to receive(:view_context).and_return(view_context)
53
53
  end
54
54
 
55
55
  it 'has a thumbnail and caption' do
@@ -12,7 +12,7 @@ RSpec.describe Blacklight::Gallery::SlideshowComponent, type: :component do
12
12
  end
13
13
 
14
14
  let(:attr) { {} }
15
- let(:view_context) { controller.view_context }
15
+ let(:view_context) { vc_test_controller.view_context }
16
16
  let(:render) do
17
17
  component.render_in(view_context)
18
18
  end
@@ -12,7 +12,7 @@ RSpec.describe Blacklight::Gallery::SlideshowPreviewComponent, type: :component
12
12
  end
13
13
 
14
14
  let(:attr) { {} }
15
- let(:view_context) { controller.view_context }
15
+ let(:view_context) { vc_test_controller.view_context }
16
16
  let(:render) do
17
17
  component.render_in(view_context)
18
18
  end
@@ -29,8 +29,8 @@ RSpec.describe Blacklight::Gallery::SlideshowPreviewComponent, type: :component
29
29
  allow(view_context).to receive(:current_search_session).and_return(nil)
30
30
  allow(view_context).to receive(:search_session).and_return({})
31
31
 
32
- # dumb hack to get our stubbing into the thumbnail component
33
- allow(controller).to receive(:view_context).and_return(view_context)
32
+ # Every call to view_context returns a different object. This ensures it stays stable.
33
+ allow(vc_test_controller).to receive(:view_context).and_return(view_context)
34
34
  end
35
35
 
36
36
  let(:blacklight_config) do
data/spec/spec_helper.rb CHANGED
@@ -9,8 +9,6 @@ require 'rspec/rails'
9
9
  require 'rspec/active_model/mocks'
10
10
 
11
11
  require 'selenium-webdriver'
12
- require 'webdrivers'
13
-
14
12
 
15
13
  Capybara.javascript_driver = :selenium_chrome_headless
16
14
  Capybara.disable_animation = true
@@ -20,7 +18,5 @@ require 'blacklight/gallery'
20
18
 
21
19
  RSpec.configure do |c|
22
20
  c.infer_spec_type_from_file_location!
23
- c.full_backtrace = true
24
21
  c.include ViewComponent::TestHelpers, type: :component
25
- #onfig.assets.precompile += %w(spotlight/default_thumbnail.jpg spotlight/default_browse_thumbnail.jpg)
26
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blacklight-gallery
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.0
4
+ version: 4.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-02 00:00:00.000000000 Z
11
+ date: 2023-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -176,20 +176,6 @@ dependencies:
176
176
  - - ">="
177
177
  - !ruby/object:Gem::Version
178
178
  version: '0'
179
- - !ruby/object:Gem::Dependency
180
- name: webdrivers
181
- requirement: !ruby/object:Gem::Requirement
182
- requirements:
183
- - - ">="
184
- - !ruby/object:Gem::Version
185
- version: '0'
186
- type: :development
187
- prerelease: false
188
- version_requirements: !ruby/object:Gem::Requirement
189
- requirements:
190
- - - ">="
191
- - !ruby/object:Gem::Version
192
- version: '0'
193
179
  - !ruby/object:Gem::Dependency
194
180
  name: selenium-webdriver
195
181
  requirement: !ruby/object:Gem::Requirement
@@ -218,6 +204,7 @@ files:
218
204
  - LICENSE.txt
219
205
  - README.md
220
206
  - Rakefile
207
+ - app/assets/config/blacklight_gallery/manifest.js
221
208
  - app/assets/images/blacklight/add_circle.svg
222
209
  - app/assets/images/blacklight/chevron_left.svg
223
210
  - app/assets/images/blacklight/chevron_right.svg
@@ -264,6 +251,7 @@ files:
264
251
  - app/views/catalog/_openseadragon_default.html.erb
265
252
  - app/views/catalog/_slideshow_modal.html.erb
266
253
  - blacklight-gallery.gemspec
254
+ - config/importmap.rb
267
255
  - config/locales/blacklight-gallery.ar.yml
268
256
  - config/locales/blacklight-gallery.de.yml
269
257
  - config/locales/blacklight-gallery.en.yml
@@ -330,7 +318,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
330
318
  - !ruby/object:Gem::Version
331
319
  version: '0'
332
320
  requirements: []
333
- rubygems_version: 3.3.26
321
+ rubygems_version: 3.4.20
334
322
  signing_key:
335
323
  specification_version: 4
336
324
  summary: Gallery display for Blacklight