bullet_train-themes 1.7.16 → 1.7.18

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: 1c904293926045140031ece8d356bc8bccd535e5bdae06f076f1b1885858532d
4
- data.tar.gz: '027628f9adc91284dcd7bfcccc8fc49d7aa9d4f667b32bf8585c9dd41b386a7e'
3
+ metadata.gz: ecf4296894135cca214a929fc0fdbd05c034b639c3152493de5285cb93ffbaf5
4
+ data.tar.gz: '0453972e193889809e822925cdd303de65d57433765cc589c44aa1bfa03c35e5'
5
5
  SHA512:
6
- metadata.gz: 634ae16dfdad8c59b653800bf80bdac4e501b5810bd9da491d2d83507592694d67175d4f2ae602b98efd2ee6ba79eef34e750a122f9a91605263505602da0003
7
- data.tar.gz: 6f72b4579d81a99d806998f874788cd5ef329e9ccbe16a8e5b16797fcc0b0324c6ae6ea118863eb7060d758b1cdb0fb6b38a82ea277a1de1e90e1610cbf9dc3e
6
+ metadata.gz: efbb56e43116baf7f9605599071d5a24b908f3461399c0ecb3895be92b819b14f41cb1ad21f6b40864e95937117ef95ee736378fd8a555af18540afd91c5d682
7
+ data.tar.gz: 8b066ac2063171e14571b8bd1ec9e8e6d0e1d748b1d7d40e359cc9357f880765ca5d01b2e168b5fdc5c35b37bd3456fa7625c162bca6998cf2ece36075127500
@@ -2,7 +2,7 @@
2
2
  <% strategy ||= current_attributes_strategy || :none %>
3
3
  <% url ||= nil %>
4
4
 
5
- <%= render 'shared/attributes/base', strategy: strategy, url: url do |p| %>
5
+ <%= render 'shared/attributes/base', strategy: strategy, url: url, attribute: attribute do |p| %>
6
6
  <% p.heading t("#{object.class.name.pluralize.underscore}.fields.#{attribute}.heading", default: object.class.human_attribute_name(attribute)) %>
7
7
  <% p.body yield %>
8
8
  <% end %>
@@ -7,5 +7,7 @@
7
7
  <% if cloudinary_enabled? %>
8
8
  <%= cloudinary_image_tag object.public_send(attribute), options %>
9
9
  <% else %>
10
- <%= image_tag photo_url_for_active_storage_attachment(object.public_send(attribute), options) %>
10
+ <% if object.public_send(attribute).attached? %>
11
+ <%= image_tag photo_url_for_active_storage_attachment(object.public_send(attribute), options) %>
12
+ <% end %>
11
13
  <% end %>
@@ -0,0 +1,16 @@
1
+ <% object ||= current_attributes_object %>
2
+ <% strategy ||= current_attributes_strategy || :none %>
3
+ <% url ||= nil %>
4
+ <% options ||= {} %>
5
+ <% options[:height] ||= 200 %>
6
+
7
+ <% if cloudinary_enabled? %>
8
+ <%# TODO: How do we attach mutliple cloundinary images? %>
9
+ <%= cloudinary_image_tag object.public_send(attribute), options %>
10
+ <% else %>
11
+ <% if object.public_send(attribute).attached? %>
12
+ <% object.send(attribute).each do |image| %>
13
+ <%= image_tag photo_url_for_active_storage_attachment(image, options) %>
14
+ <% end %>
15
+ <% end %>
16
+ <% end %>
@@ -1,5 +1,5 @@
1
1
  module BulletTrain
2
2
  module Themes
3
- VERSION = "1.7.16"
3
+ VERSION = "1.7.18"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-themes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.16
4
+ version: 1.7.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-09 00:00:00.000000000 Z
11
+ date: 2024-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: standard
@@ -93,6 +93,7 @@ files:
93
93
  - app/views/themes/base/attributes/_has_many.html.erb
94
94
  - app/views/themes/base/attributes/_html.html.erb
95
95
  - app/views/themes/base/attributes/_image.html.erb
96
+ - app/views/themes/base/attributes/_images.html.erb
96
97
  - app/views/themes/base/attributes/_number.html.erb
97
98
  - app/views/themes/base/attributes/_option.html.erb
98
99
  - app/views/themes/base/attributes/_options.html.erb