blacklight-gallery 4.5.0 → 4.5.1

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: 7744bdfee07565681b5a97da2ce04211bd23fc72aafcb57b1578a185fde775fe
4
- data.tar.gz: dbda74765d58efa3dc60e8b06b184102c53a5bd53bfb4e83daf67df14dd6a85b
3
+ metadata.gz: 489c0dc3753e54b640a5e7c45247f1cc35a5761fe40f3d210c3d916b745d02aa
4
+ data.tar.gz: 687bc2a13226ddbbb6086c0273c74d06fd31f45b07f74933e550112c6f3e143a
5
5
  SHA512:
6
- metadata.gz: b545ffac529924cd4844c3b88848fea59ec5d4dae3c3c9e36734e3aa2d4742b4298a7679d1475f7e1579f4c9ec849def3c4abf28b341741bac7946da2e968db2
7
- data.tar.gz: b030ffa84501c52300ef27a736f457f29dc106b1a89e2242acc95323484cbfb316c932d45a41cc13c5edfdc9e4192dfba2ab5d541bef9bda43accde55cc4db72
6
+ metadata.gz: 0b6b951139a002872a5f4b4c1831f9b43ae21b9f95821c260f25dcac0949905a7fa3cf04b66df2f3cdde566536583c428893712c7be10e48d1371eb8f5c1955e
7
+ data.tar.gz: 77a7c845ce3c8a191b225d63f81700347cf9e21dd23334b6ca54c602006719e3b9831f89d9c386c4452b6f8183ebda91d8ae9218cc0835904767cc421dc7cab8
@@ -0,0 +1,11 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5
+
6
+ version: 2
7
+ updates:
8
+ - package-ecosystem: "bundler" # See documentation for possible values
9
+ directory: "/" # Location of package manifests
10
+ schedule:
11
+ interval: "weekly"
@@ -1,11 +1,9 @@
1
1
  <% component = Blacklight::VERSION > '8' ?
2
2
  Blacklight::DocumentComponent.new(classes: 'slideshow-preview-thumbnail', component: :div, document: @presenter, counter: @counter) :
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
6
  <% component.with_body do %>
7
- <%= @view_context.link_to_document(@document, thumbnail, class: 'thumbnail',
8
- data: { 'context-href': nil, 'slide-to': @document_counter, 'bs-slide-to': @document_counter,
9
- toggle: "modal", 'bs-toggle': "modal", target: "#slideshow-modal", 'bs-target': "#slideshow-modal" }) %>
7
+ <%= link_to_document %>
10
8
  <% end %>
11
9
  <% end %>
@@ -35,6 +35,24 @@ module Blacklight
35
35
  def render_document_class(*args)
36
36
  @view_context.render_document_class(*args)
37
37
  end
38
+
39
+ def link_to_document
40
+ helpers.link_to_document(@document, thumbnail, class: 'thumbnail', data: data_attributes)
41
+ end
42
+
43
+ def data_attributes
44
+ # 'context-href': nil is for Blacklight < 7.38, :context_href is for those after 7.38
45
+ {
46
+ 'context-href': nil,
47
+ context_href: nil,
48
+ 'slide-to': @document_counter,
49
+ 'bs-slide-to': @document_counter,
50
+ toggle: "modal",
51
+ 'bs-toggle': "modal",
52
+ target: "#slideshow-modal",
53
+ 'bs-target': "#slideshow-modal"
54
+ }
55
+ end
38
56
  end
39
57
  end
40
58
  end
@@ -1,5 +1,5 @@
1
1
  module Blacklight
2
2
  module Gallery
3
- VERSION = "4.5.0"
3
+ VERSION = "4.5.1"
4
4
  end
5
5
  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.5.0
4
+ version: 4.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-01 00:00:00.000000000 Z
11
+ date: 2024-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -197,6 +197,7 @@ executables: []
197
197
  extensions: []
198
198
  extra_rdoc_files: []
199
199
  files:
200
+ - ".github/dependabot.yml"
200
201
  - ".github/workflows/ruby.yml"
201
202
  - ".gitignore"
202
203
  - ".solr_wrapper.yml"
@@ -318,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
318
319
  - !ruby/object:Gem::Version
319
320
  version: '0'
320
321
  requirements: []
321
- rubygems_version: 3.4.19
322
+ rubygems_version: 3.5.15
322
323
  signing_key:
323
324
  specification_version: 4
324
325
  summary: Gallery display for Blacklight