promethee 4.1.21 → 4.1.26

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: eb85b9e783ea7ca04f6256cbf1e8f07faf8465334f7747ccb4d98590e057c282
4
- data.tar.gz: 4eecc4d0a1a92ad141f2192b44c52f9305a2981089d9f33a786713a581333ff4
3
+ metadata.gz: 473bae8dc86ea52263ca9be906530cde910ac9aefbe8514351f200b95a6bdd12
4
+ data.tar.gz: cf40e246e6243b85f806d8d452767190ad7c6e8db3129902cd45ca1e3f6543a5
5
5
  SHA512:
6
- metadata.gz: f13fb885e2fb9c7a8a3d470a51784258de8db2053f667217405f9d55d5818f64729a895cc43db3fa427a070431422315aa7b719b68ee42812c27ddad0d5e8274
7
- data.tar.gz: 7d4943b42cdc7bb860f1a4c4982f89dcdcad11e99bdfe21f5c2cbb4e929ea2c21b323e29723139ee2d216c28be6d4f9e3a49a4859b6a6aa41f39cdbfd36cb325
6
+ metadata.gz: 2efa47fe69f7e685b88f655dc3b8e04844c8b52f4843e9bd6e5417af68becf05df78ab850de63f0f649f936a2858d1ebd654e43bef9c76dd3f9f064ea61c1a20
7
+ data.tar.gz: 18c00c9742659417844601266d0646a24228da3843bdf28be650a8bcc2f867a2fa4aeee8c90650822447f85bb828dd04d0d233ebfe0d6b898419d51ee851cae4
@@ -213,7 +213,9 @@
213
213
  padding-right: 10px
214
214
  &-header
215
215
  padding-left: 10px
216
-
216
+ &-content
217
+ display: flex
218
+ flex-wrap: wrap
217
219
  &__item-container, &__item
218
220
  display: inline-block
219
221
  &__item
@@ -63,14 +63,15 @@ $black: #000000 !default
63
63
 
64
64
  &__collection
65
65
  margin-bottom: $grid-gutter-width
66
- > div
66
+ [class*="col-"]
67
67
  margin-bottom: $grid-gutter-width
68
68
  .collection-item__content
69
69
  &:not(:last-of-type)
70
70
  margin-bottom: $grid-gutter-width
71
- a + p
72
- margin-bottom: 0
71
+ &__caption
73
72
  margin-top: 10px
73
+ p:last-of-type
74
+ margin-bottom: 0
74
75
 
75
76
  &__cover
76
77
  background-position: center center
@@ -18,7 +18,8 @@ class PrometheeController < ApplicationController
18
18
  def blob_show
19
19
  # as this is called only from promethee preview it sends an image resized to 720
20
20
  begin
21
- blob = ActiveStorage::Blob.find_signed(params[:id])
21
+ blob_find_method = ActiveStorage::Blob.respond_to?(:find_signed!) ? :find_signed! : :find_signed
22
+ blob = ActiveStorage::Blob.public_send(blob_find_method, params[:id])
22
23
  rescue
23
24
  raise ActiveRecord::RecordNotFound
24
25
  end
@@ -37,7 +37,8 @@ module PrometheeData
37
37
  end
38
38
 
39
39
  def promethee_data_page_thumbnail
40
- ActiveStorage::Blob.find_signed(data['attributes']['thumbnail']['value']['id'])
40
+ blob_find_method = ActiveStorage::Blob.respond_to?(:find_signed!) ? :find_signed! : :find_signed
41
+ ActiveStorage::Blob.public_send blob_find_method, data['attributes']['thumbnail']['value']['id']
41
42
  rescue
42
43
  nil
43
44
  end
@@ -12,20 +12,22 @@
12
12
  end
13
13
  %>
14
14
 
15
- <div class="row <%= promethee_class_for component %>"
15
+ <div class="<%= promethee_class_for component %>"
16
16
  id="<%= promethee_id_for component %>">
17
17
  <% component[:children].each.with_index do |child, n| %>
18
- <div class="<%= col_classes %>">
19
- <%= render 'promethee/show/component', component: child %>
18
+ <div class="row promethee__component__row">
19
+ <div class="<%= col_classes %>">
20
+ <%= render 'promethee/show/component', component: child %>
21
+ </div>
22
+ <% if n%items_per_line === items_per_line - 1 %>
23
+ <div class="clearfix hidden-sm hidden-xs d-none d-md-block"></div>
24
+ <% end %>
25
+ <% if items_per_line >= 4 && n.odd? %>
26
+ <div class="clearfix visible-xs-block d-block <%= items_per_line === 4 ? 'visible-sm-block d-md-none' : 'd-sm-none' %>"></div>
27
+ <% end %>
28
+ <% if items_per_line == 6 && n%3 == 2 %>
29
+ <div class="clearfix visible-sm-block .d-none .d-sm-block .d-md-none"></div>
30
+ <% end %>
20
31
  </div>
21
- <% if n%items_per_line === items_per_line - 1 %>
22
- <div class="clearfix hidden-sm hidden-xs d-none d-md-block"></div>
23
- <% end %>
24
- <% if items_per_line >= 4 && n.odd? %>
25
- <div class="clearfix visible-xs-block d-block <%= items_per_line === 4 ? 'visible-sm-block d-md-none' : 'd-sm-none' %>"></div>
26
- <% end %>
27
- <% if items_per_line == 6 && n%3 == 2 %>
28
- <div class="clearfix visible-sm-block .d-none .d-sm-block .d-md-none"></div>
29
- <% end %>
30
32
  <% end %>
31
33
  </div>
@@ -48,7 +48,10 @@ module Promethee::Rails::Helper
48
48
 
49
49
  def blob_from_data(blob_data = {})
50
50
  return unless blob_data&.has_key? :id
51
- ActiveStorage::Blob.find_signed(blob_data[:id]) rescue nil
51
+ blob_find_method = ActiveStorage::Blob.respond_to?(:find_signed!) ? :find_signed! : :find_signed
52
+ ActiveStorage::Blob.public_send blob_find_method, blob_data[:id]
53
+ rescue
54
+ nil
52
55
  end
53
56
 
54
57
  # promethee_bem_classes 'promethee-edit__move__droppable', '--{{type}}', '--first'
@@ -1,5 +1,5 @@
1
1
  module Promethee
2
2
  module Rails
3
- VERSION = '4.1.21'
3
+ VERSION = '4.1.26'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: promethee
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.21
4
+ version: 4.1.26
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sébastien Gaya
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2020-11-18 00:00:00.000000000 Z
17
+ date: 2021-01-08 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: rails
@@ -25,7 +25,7 @@ dependencies:
25
25
  version: 5.2.0
26
26
  - - "<"
27
27
  - !ruby/object:Gem::Version
28
- version: '6.1'
28
+ version: '7'
29
29
  type: :runtime
30
30
  prerelease: false
31
31
  version_requirements: !ruby/object:Gem::Requirement
@@ -35,7 +35,7 @@ dependencies:
35
35
  version: 5.2.0
36
36
  - - "<"
37
37
  - !ruby/object:Gem::Version
38
- version: '6.1'
38
+ version: '7'
39
39
  - !ruby/object:Gem::Dependency
40
40
  name: angularjs-rails
41
41
  requirement: !ruby/object:Gem::Requirement