promethee 4.1.21 → 4.1.26
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/app/assets/stylesheets/promethee-edit/_move.sass +3 -1
- data/app/assets/stylesheets/promethee.sass +4 -3
- data/app/controllers/promethee_controller.rb +2 -1
- data/app/models/concerns/promethee_data.rb +2 -1
- data/app/views/promethee/components/collection/_show.html.erb +14 -12
- data/lib/promethee/rails/helper.rb +4 -1
- data/lib/promethee/rails/version.rb +1 -1
- 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: 473bae8dc86ea52263ca9be906530cde910ac9aefbe8514351f200b95a6bdd12
|
|
4
|
+
data.tar.gz: cf40e246e6243b85f806d8d452767190ad7c6e8db3129902cd45ca1e3f6543a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2efa47fe69f7e685b88f655dc3b8e04844c8b52f4843e9bd6e5417af68becf05df78ab850de63f0f649f936a2858d1ebd654e43bef9c76dd3f9f064ea61c1a20
|
|
7
|
+
data.tar.gz: 18c00c9742659417844601266d0646a24228da3843bdf28be650a8bcc2f867a2fa4aeee8c90650822447f85bb828dd04d0d233ebfe0d6b898419d51ee851cae4
|
|
@@ -63,14 +63,15 @@ $black: #000000 !default
|
|
|
63
63
|
|
|
64
64
|
&__collection
|
|
65
65
|
margin-bottom: $grid-gutter-width
|
|
66
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
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="
|
|
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="
|
|
19
|
-
|
|
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.
|
|
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'
|
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.
|
|
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:
|
|
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: '
|
|
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: '
|
|
38
|
+
version: '7'
|
|
39
39
|
- !ruby/object:Gem::Dependency
|
|
40
40
|
name: angularjs-rails
|
|
41
41
|
requirement: !ruby/object:Gem::Requirement
|