blacklight-gallery 3.5.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +9 -20
- data/app/assets/stylesheets/blacklight_gallery/_gallery.scss +0 -2
- data/app/helpers/blacklight/openseadragon_helper.rb +18 -1
- data/app/views/catalog/_openseadragon_default.html.erb +17 -14
- data/blacklight-gallery.gemspec +1 -1
- data/lib/blacklight/gallery/version.rb +1 -1
- data/lib/generators/blacklight_gallery/install_generator.rb +3 -4
- data/spec/test_app_templates/Gemfile.extra +0 -1
- data/spec/views/catalog/_document_slideshow.html.erb_spec.rb +1 -1
- data/spec/views/catalog/_openseadragon_default.html.erb_spec.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3920e96baf118137203d9e67fafc19564991399b4cf2082d8fc0409e0095982a
|
4
|
+
data.tar.gz: 7435e227a144f08d25b1748f1a1d3eddf9ef958e7b25a5e8460fd1e6a8a98c64
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f19253bc16e2ed53b6d5b1d6a96f9df64cc0708cc0197b01b3031a877a0bf89427212036450c6d0acaecf4b647f8b79c3f09cbe9ddfbd43f5463be93dd478b5
|
7
|
+
data.tar.gz: 94d41d45a7e516a84634607d891580bd8dc66f2347f4604633643bd94df3a80f6695224b5559f5a4bc974a32b78c9464da361870351c5b44525eb2fe3dbf0884
|
data/.github/workflows/ruby.yml
CHANGED
@@ -11,26 +11,15 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
strategy:
|
13
13
|
matrix:
|
14
|
-
rails_version: [6.1.
|
15
|
-
ruby: [2.7, '3.0']
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
ruby-version: ${{ matrix.ruby }}
|
24
|
-
- name: Install dependencies with Rails ${{ matrix.rails_version }}
|
25
|
-
run: bundle install
|
26
|
-
- name: Run tests
|
27
|
-
run: bundle exec rake
|
28
|
-
test_rails52:
|
29
|
-
runs-on: ubuntu-latest
|
30
|
-
strategy:
|
31
|
-
matrix:
|
32
|
-
rails_version: [5.2.4.4, 6.0.3.4]
|
33
|
-
ruby: [2.7]
|
14
|
+
rails_version: [6.1.4.6]
|
15
|
+
ruby: ['2.7', '3.0']
|
16
|
+
include:
|
17
|
+
- rails_version: 7.0.2.2
|
18
|
+
ruby: '3.0'
|
19
|
+
- rails_version: 5.2.4.4
|
20
|
+
ruby: '2.7'
|
21
|
+
- rails_version: 6.0.3.4
|
22
|
+
ruby: '2.7'
|
34
23
|
env:
|
35
24
|
RAILS_VERSION: ${{ matrix.rails_version }}
|
36
25
|
steps:
|
@@ -1,7 +1,24 @@
|
|
1
1
|
module Blacklight
|
2
2
|
module OpenseadragonHelper
|
3
|
+
# Somewhat arbitrary number; the only important thing is that
|
4
|
+
# it is bigger than the number of embedded viewers on a page
|
5
|
+
ID_COUNTER_MAX = (2**20) - 1
|
6
|
+
|
7
|
+
# Mint a (sufficiently) unique identifier, so we can associate
|
8
|
+
# the expand/collapse control with labels
|
9
|
+
def self.mint_id
|
10
|
+
@id_counter = ((@id_counter || 0) + 1) % ID_COUNTER_MAX
|
11
|
+
|
12
|
+
# We convert the ID to hex for markup compactness
|
13
|
+
@id_counter.to_s(16)
|
14
|
+
end
|
15
|
+
|
3
16
|
def osd_container_class
|
4
17
|
"col-md-6"
|
5
18
|
end
|
19
|
+
|
20
|
+
def osd_html_id_prefix
|
21
|
+
"osd-#{Blacklight::OpenseadragonHelper.mint_id}".to_param
|
22
|
+
end
|
6
23
|
end
|
7
|
-
end
|
24
|
+
end
|
@@ -1,13 +1,16 @@
|
|
1
|
-
<%
|
1
|
+
<%
|
2
|
+
image = document.to_openseadragon(blacklight_config.view_config(:show))
|
3
|
+
id_prefix = osd_html_id_prefix
|
4
|
+
%>
|
2
5
|
<%
|
3
6
|
osd_config = {
|
4
7
|
crossOriginPolicy: false,
|
5
|
-
zoomInButton: "
|
6
|
-
zoomOutButton: "
|
7
|
-
homeButton: "
|
8
|
-
fullPageButton: "
|
9
|
-
nextButton: "
|
10
|
-
previousButton: "
|
8
|
+
zoomInButton: "#{id_prefix}-zoom-in",
|
9
|
+
zoomOutButton: "#{id_prefix}-zoom-out",
|
10
|
+
homeButton: "#{id_prefix}-home",
|
11
|
+
fullPageButton: "#{id_prefix}-full-page",
|
12
|
+
nextButton: "#{id_prefix}-next",
|
13
|
+
previousButton: "#{id_prefix}-previous"
|
11
14
|
}
|
12
15
|
|
13
16
|
osd_config_referencestrip = {
|
@@ -26,16 +29,16 @@
|
|
26
29
|
<div class="col-md-6 pagination">
|
27
30
|
<% if count > 1 %>
|
28
31
|
<% osd_config = osd_config_referencestrip.merge(osd_config) %>
|
29
|
-
<a id="
|
30
|
-
<span id="
|
31
|
-
<a id="
|
32
|
+
<a id="<%= id_prefix %>-previous"><%= blacklight_icon('chevron_left') %></a>
|
33
|
+
<span id="<%= id_prefix %>-page">1</span> of <%= count %>
|
34
|
+
<a id="<%= id_prefix %>-next"><%= blacklight_icon('chevron_right') %></a>
|
32
35
|
<% end %>
|
33
36
|
</div>
|
34
37
|
<div class="col-md-6 controls">
|
35
|
-
<a id="
|
36
|
-
<a id="
|
37
|
-
<a id="
|
38
|
-
<a id="
|
38
|
+
<a id="<%= id_prefix %>-zoom-in"><%= blacklight_icon('add_circle') %></a>
|
39
|
+
<a id="<%= id_prefix %>-zoom-out"><%= blacklight_icon('remove_circle') %></a>
|
40
|
+
<a id="<%= id_prefix %>-home"><%= blacklight_icon('resize_small') %></a>
|
41
|
+
<a id="<%= id_prefix %>-full-page"><%= blacklight_icon('custom_fullscreen') %></a>
|
39
42
|
</div>
|
40
43
|
</div>
|
41
44
|
<%= openseadragon_picture_tag image, class: 'osd-image row', data: { openseadragon: osd_config } %>
|
data/blacklight-gallery.gemspec
CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
17
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
18
18
|
spec.require_paths = ["lib"]
|
19
19
|
|
20
|
-
spec.add_dependency "rails", '>= 5.1', '<
|
20
|
+
spec.add_dependency "rails", '>= 5.1', '< 8'
|
21
21
|
spec.add_dependency 'blacklight', '~> 7.17'
|
22
22
|
|
23
23
|
spec.add_development_dependency "rake"
|
@@ -16,10 +16,9 @@ module BlacklightGallery
|
|
16
16
|
|
17
17
|
def configuration
|
18
18
|
inject_into_file 'app/controllers/catalog_controller.rb', after: "configure_blacklight do |config|" do
|
19
|
-
"\n config.view.gallery
|
20
|
-
"\n
|
21
|
-
"\n config.view.
|
22
|
-
"\n config.view.slideshow.document_component = Blacklight::Gallery::SlideshowComponent" \
|
19
|
+
"\n config.view.gallery(document_component: Blacklight::Gallery::DocumentComponent)" \
|
20
|
+
"\n config.view.masonry(document_component: Blacklight::Gallery::DocumentComponent)" \
|
21
|
+
"\n config.view.slideshow(document_component: Blacklight::Gallery::SlideshowComponent)" \
|
23
22
|
"\n config.show.tile_source_field = :content_metadata_image_iiif_info_ssm" \
|
24
23
|
"\n config.show.partials.insert(1, :openseadragon)"
|
25
24
|
end
|
@@ -1 +0,0 @@
|
|
1
|
-
gem 'sprockets', '< 4'
|
@@ -3,7 +3,7 @@ require 'spec_helper'
|
|
3
3
|
describe "catalog/openseadragon_default" do
|
4
4
|
let(:document) { SolrDocument.new }
|
5
5
|
let(:blacklight_config) { Blacklight::Configuration.new }
|
6
|
-
let(:p) { "catalog/openseadragon_default
|
6
|
+
let(:p) { "catalog/openseadragon_default" }
|
7
7
|
|
8
8
|
before do
|
9
9
|
allow(view).to receive_messages(blacklight_config: blacklight_config, openseadragon_picture_tag: "<img />")
|
@@ -14,9 +14,9 @@ describe "catalog/openseadragon_default" do
|
|
14
14
|
render partial: p, locals: { document: document }
|
15
15
|
expect(rendered).to have_selector ".openseadragon-container"
|
16
16
|
end
|
17
|
-
|
17
|
+
|
18
18
|
it "should support passing a container class" do
|
19
19
|
render partial: p, locals: { document: document, osd_container_class: "custom-container" }
|
20
20
|
expect(rendered).to have_selector ".custom-container"
|
21
21
|
end
|
22
|
-
end
|
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
|
+
version: 4.0.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: 2022-
|
11
|
+
date: 2022-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '5.1'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '8'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '5.1'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '8'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: blacklight
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|