base_editing_bootstrap 1.7.0 → 1.8.1
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/CHANGELOG.md +28 -0
- data/app/controllers/base_editing_controller.rb +10 -4
- data/app/helpers/utilities/form_helper.rb +13 -2
- data/app/helpers/utilities/template_helper.rb +15 -14
- data/app/views/base_editing/_form.html.erb +16 -17
- data/app/views/base_editing/_form_base_errors.html.erb +22 -0
- data/app/views/base_editing/_form_body_container.html.erb +3 -0
- data/app/views/base_editing/_form_container.html.erb +3 -0
- data/app/views/base_editing/_form_field.html.erb +6 -6
- data/app/views/base_editing/_form_footer_container.html.erb +3 -0
- data/app/views/base_editing/form_field/_textarea.html.erb +7 -0
- data/config/locales/it.yml +7 -0
- data/lib/base_editing_bootstrap/VERSION +1 -1
- data/lib/base_editing_bootstrap/forms/base.rb +1 -1
- data/lib/generators/base_editing_bootstrap/install/install_generator.rb +12 -2
- data/lib/generators/base_editing_bootstrap/scaffold/scaffold_generator.rb +1 -1
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40690c34bdbdecebbcf083394fefe5ea626b958a085ce695fe4a039b17c8cfa9
|
4
|
+
data.tar.gz: a087acc3bda536ea0451af2e3818cc2c07c20a3a6a5e549bb74e96d7abcd6dd5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f85bc8f2ed0aa273b2e59258ace609e711dbcb088bf9420a5eaf5a48aa7a48c0907f7d6eb75ac9614cfcf0f536f1124a7bd9ee9541c68c3f4d29908e739a280d
|
7
|
+
data.tar.gz: 5565e435135fd2bae6a1a6e1907a6d150cb6be69d5b82c52d91095a3637efa811322519ae6f696578760b961339cd986b036f508a06d08532311f88d53209508
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,34 @@
|
|
2
2
|
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
|
3
3
|
|
4
4
|
- - -
|
5
|
+
## 1.8.1 - 2025-03-24
|
6
|
+
#### Bug Fixes
|
7
|
+
- Correct generator install multiple gems - (73948f5) - Marino Bonetti
|
8
|
+
|
9
|
+
- - -
|
10
|
+
|
11
|
+
## 1.8.0 - 2025-03-20
|
12
|
+
#### Bug Fixes
|
13
|
+
- Correct pass locals datas - (00fd083) - Marino Bonetti
|
14
|
+
- Don't re-authorize if authorization is already done - (dd756b3) - Marino Bonetti
|
15
|
+
- Correct path for generator - (a7d9842) - Marino Bonetti
|
16
|
+
- Search partial with class name and without namespace - (2d08db3) - Marino Bonetti
|
17
|
+
- Belongs to polymorphic (#17) - (7d736d7) - Marino Bonetti
|
18
|
+
#### Documentation
|
19
|
+
- Update documentation - (07dd44d) - Marino Bonetti
|
20
|
+
- Correct documentation - (6337745) - Marino Bonetti
|
21
|
+
#### Features
|
22
|
+
- Aggiunto contenitore per gli errori base - (2f9f309) - Marino Bonetti
|
23
|
+
- Add layouts for customization - (1bb0201) - Marino Bonetti
|
24
|
+
- AutoRender text columns to TextArea - (8533b53) - Marino Bonetti
|
25
|
+
#### Refactoring
|
26
|
+
- Rename variable to be more logic - (8fa9bbb) - Marino Bonetti
|
27
|
+
- Rewrite for debugging - (b7a3756) - Marino Bonetti
|
28
|
+
#### Tests
|
29
|
+
- Typo - (a1ada44) - Marino Bonetti
|
30
|
+
|
31
|
+
- - -
|
32
|
+
|
5
33
|
## 1.7.0 - 2025-02-11
|
6
34
|
#### Bug Fixes
|
7
35
|
- Add permits of ransack scopes - (5fa26c6) - Marino Bonetti
|
@@ -20,7 +20,8 @@ class BaseEditingController < RestrictedAreaController
|
|
20
20
|
class_attribute :default_distinct, default: true
|
21
21
|
|
22
22
|
def index
|
23
|
-
|
23
|
+
#se è già stato autorizzano non rieseguiamo, utile nel caso vogliamo sovrascrivere la logica di autorizzazione in inheritance
|
24
|
+
authorize base_class unless pundit_policy_authorized?
|
24
25
|
|
25
26
|
q = policy_scope(base_scope)
|
26
27
|
@search_instance = search_class.new(q, current_user,
|
@@ -34,7 +35,9 @@ class BaseEditingController < RestrictedAreaController
|
|
34
35
|
def new
|
35
36
|
@object = base_class.new
|
36
37
|
@object = yield(@object) if block_given?
|
37
|
-
|
38
|
+
|
39
|
+
#se è già stato autorizzano non rieseguiamo, utile nel caso vogliamo sovrascrivere la logica di autorizzazione in inheritance
|
40
|
+
authorize @object unless pundit_policy_authorized?
|
38
41
|
|
39
42
|
respond_to do |format|
|
40
43
|
format.html
|
@@ -64,7 +67,8 @@ class BaseEditingController < RestrictedAreaController
|
|
64
67
|
def create
|
65
68
|
@object = base_class.new(permitted_attributes)
|
66
69
|
@object = yield(@object) if block_given?
|
67
|
-
|
70
|
+
#se è già stato autorizzano non rieseguiamo, utile nel caso vogliamo sovrascrivere la logica di autorizzazione in inheritance
|
71
|
+
authorize @object unless pundit_policy_authorized?
|
68
72
|
|
69
73
|
respond_to do |format|
|
70
74
|
if @object.save
|
@@ -124,7 +128,9 @@ class BaseEditingController < RestrictedAreaController
|
|
124
128
|
|
125
129
|
def load_object
|
126
130
|
@object = base_class.find(params[:id])
|
127
|
-
|
131
|
+
|
132
|
+
#se è già stato autorizzano non rieseguiamo, utile nel caso vogliamo sovrascrivere la logica di autorizzazione in inheritance
|
133
|
+
authorize @object unless pundit_policy_authorized?
|
128
134
|
logger.debug { "Oggetto #{@object.inspect}" }
|
129
135
|
end
|
130
136
|
|
@@ -24,7 +24,8 @@ module Utilities
|
|
24
24
|
type = :enum
|
25
25
|
generic_field = "enum"
|
26
26
|
elsif form.object.class.respond_to?(:reflect_on_association) &&
|
27
|
-
form.object.class.reflect_on_association(field.to_s).is_a?(ActiveRecord::Reflection::BelongsToReflection)
|
27
|
+
form.object.class.reflect_on_association(field.to_s).is_a?(ActiveRecord::Reflection::BelongsToReflection) &&
|
28
|
+
!form.object.class.reflect_on_association(field.to_s).polymorphic? # non deve essere polymorphic
|
28
29
|
# Abbiamo una relazione belongs_to da gestire
|
29
30
|
reflection = form.object.class.reflect_on_association(field.to_s)
|
30
31
|
type = :belongs_to
|
@@ -60,6 +61,8 @@ module Utilities
|
|
60
61
|
generic_field = "boolean"
|
61
62
|
when :has_one_attachment
|
62
63
|
generic_field = "has_one_attachment"
|
64
|
+
when :text
|
65
|
+
generic_field = "textarea"
|
63
66
|
else
|
64
67
|
generic_field = "base"
|
65
68
|
end
|
@@ -71,7 +74,15 @@ module Utilities
|
|
71
74
|
"form_field",
|
72
75
|
generic_field
|
73
76
|
)
|
74
|
-
Rails.logger.debug
|
77
|
+
Rails.logger.debug do
|
78
|
+
<<~TEXT
|
79
|
+
[BASE EDITING BOOTSTRAP]
|
80
|
+
TYPE: #{type}
|
81
|
+
GENERIC_FIELD: #{generic_field}
|
82
|
+
TEMPLATE: #{template.short_identifier}
|
83
|
+
LOCALS:#{locals}
|
84
|
+
TEXT
|
85
|
+
end
|
75
86
|
template.render(self, locals)
|
76
87
|
end
|
77
88
|
|
@@ -18,21 +18,22 @@ module Utilities::TemplateHelper
|
|
18
18
|
partial_path = (obj.respond_to? :to_partial_path) ? obj.to_partial_path : obj._to_partial_path
|
19
19
|
obj_base_path = "#{partial_path}/#{base_path}"
|
20
20
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
21
|
+
[
|
22
|
+
# Precedenza modello e campo specifico
|
23
|
+
[field, [obj_base_path]],
|
24
|
+
# cerco tramite nome modello semplice, con namespace della risorsa (cell_field,header_field,form_field) e nome del campo specifico
|
25
|
+
["#{obj.model_name.element}/#{base_path}/#{field}", lookup_context.prefixes],
|
26
|
+
# Ricerca tramite campo generico e prefissi di contesto che contiene anche controller e namespace di controller
|
27
|
+
["#{base_path}/#{generic_field}", lookup_context.prefixes],
|
28
|
+
[generic_field, [obj_base_path]],
|
29
|
+
["base_editing/#{base_path}/#{generic_field}", []],
|
30
|
+
].each do |partial, prefixes|
|
31
|
+
Rails.logger.debug { "[BASE EDITING BOOTSTRAP] Cerco partial:`#{partial}` in #{prefixes.inspect}" }
|
32
|
+
if lookup_context.exists?(partial, prefixes, true)
|
33
|
+
return lookup_context.find(partial, prefixes, true)
|
34
|
+
end
|
35
35
|
end
|
36
|
+
# fallback finale
|
36
37
|
lookup_context.find("base_editing/#{base_path}/base", [], true)
|
37
38
|
end
|
38
39
|
|
@@ -1,20 +1,19 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
<%= form_for @object, builder: form_builder do |form| %>
|
1
|
+
<%= render layout: "form_container" do %>
|
2
|
+
<%= form_for @object, builder: form_builder do |form| %>
|
4
3
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
<div class="card-footer">
|
15
|
-
<%= render partial: "form_footer", locals: {form: form} %>
|
16
|
-
</div>
|
4
|
+
<%= render layout: "form_body_container" do %>
|
5
|
+
<%= render partial: "form_field_header", locals: {form:} %>
|
6
|
+
<%= render partial: "form_base_errors", locals: {form:} if form.object.errors.key?(:base) %>
|
7
|
+
<%= render layout: "form_fields_container" do %>
|
8
|
+
<%= render collection: form_attributes(form.object),
|
9
|
+
layout: "form_field_container",
|
10
|
+
partial: "form_field", locals: {form:} %>
|
11
|
+
<% end %>
|
12
|
+
<% end %>
|
17
13
|
|
14
|
+
<%= render layout: "form_footer_container" do %>
|
15
|
+
<%= render partial: "form_footer", locals: {form: form} %>
|
18
16
|
<% end %>
|
19
|
-
|
20
|
-
|
17
|
+
|
18
|
+
<% end %>
|
19
|
+
<% end %>
|
@@ -0,0 +1,22 @@
|
|
1
|
+
<%
|
2
|
+
##
|
3
|
+
# Template per il rendering degli errori base
|
4
|
+
# - form -> FormBuilder
|
5
|
+
%>
|
6
|
+
<%# locals: (form:) -%>
|
7
|
+
<% if form.object.errors.key?(:base) %>
|
8
|
+
<div class="row base-errors-container" id="<%= dom_id(@object,:base_errors_container) %>">
|
9
|
+
<div class="col-12">
|
10
|
+
<div class="card border-danger mb-3">
|
11
|
+
<div class="card-header"><%= t ".title", scope: form.object.class.model_name.i18n_key, default: t(".title") %></div>
|
12
|
+
<div class="card-body text-danger">
|
13
|
+
<ul>
|
14
|
+
<% form.object.errors.full_messages_for(:base).each do |m| %>
|
15
|
+
<li><%= m %></li>
|
16
|
+
<% end %>
|
17
|
+
</ul>
|
18
|
+
</div>
|
19
|
+
</div>
|
20
|
+
</div>
|
21
|
+
</div>
|
22
|
+
<% end %>
|
@@ -2,18 +2,18 @@
|
|
2
2
|
##
|
3
3
|
# Template per il rendering campo
|
4
4
|
# - form -> FormBuilder
|
5
|
-
# - form_field ->
|
5
|
+
# - form_field -> String
|
6
6
|
%>
|
7
7
|
<%# locals: (form:, form_field:) -%>
|
8
8
|
<%
|
9
|
-
|
9
|
+
input_group_classes = ["mb-1"]
|
10
10
|
|
11
11
|
content = form_print_field(form, form_field)
|
12
12
|
unless content.match "checkbox"
|
13
|
-
|
13
|
+
input_group_classes << "input-group"
|
14
14
|
end
|
15
|
-
|
16
|
-
|
15
|
+
input_group_classes << (form.object.validated? ? "has-validation" : "")
|
16
|
+
input_group_classes << "form-#{form_field}-input-group"
|
17
17
|
|
18
18
|
# Non renderizziamo il contenuto del label in questa vista se siamo nello switch
|
19
19
|
if content.match "form-switch"
|
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
%>
|
26
26
|
<%= label_content %>
|
27
|
-
<%= content_tag :div, class:
|
27
|
+
<%= content_tag :div, class: input_group_classes.join(" ") do %>
|
28
28
|
<%= render partial: "editing_form_measure_unit", locals: {object: form.object, field: form_field} %>
|
29
29
|
<%= content %>
|
30
30
|
<%= error_messages_for(form.object, form_field) %>
|
data/config/locales/it.yml
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.1
|
@@ -97,7 +97,7 @@ module BaseEditingBootstrap::Forms
|
|
97
97
|
# per il normale submit consiglio la lettura della guida standard di rails
|
98
98
|
# ATTENZIONE: nelle classi del bottone undo, abbiamo aggiunto .btn-undo-button
|
99
99
|
# che ascoltiamo dalle modal e utilizziamo per chiudere la modal, al posto
|
100
|
-
# seguire realmente il link con il browser.
|
100
|
+
# di seguire realmente il link con il browser.
|
101
101
|
def submit(value = nil, options = {})
|
102
102
|
@template.content_tag(:div, class: "btn-group mr-1") do
|
103
103
|
super(value, options.reverse_merge(class: "btn btn-primary")) +
|
@@ -17,8 +17,18 @@ module BaseEditingBootstrap
|
|
17
17
|
end
|
18
18
|
|
19
19
|
def prepare_test_environment
|
20
|
-
|
21
|
-
|
20
|
+
actual_gemfile_path = File.join(@destination_stack, "Gemfile")
|
21
|
+
if File.exist?(actual_gemfile_path)
|
22
|
+
actual_gemfile = File.read(File.join(@destination_stack, "Gemfile"))
|
23
|
+
else
|
24
|
+
actual_gemfile = ''
|
25
|
+
end
|
26
|
+
unless actual_gemfile =~ /factory_bot_rails/
|
27
|
+
gem "factory_bot_rails", group: :test, version: '~> 6.4', comment: "Necessary for spec"
|
28
|
+
end
|
29
|
+
unless actual_gemfile =~ /rails-controller-test/
|
30
|
+
gem 'rails-controller-testing', group: :test, comment: "Required if used with controllers spec"
|
31
|
+
end
|
22
32
|
end
|
23
33
|
end
|
24
34
|
end
|
@@ -11,7 +11,7 @@ module BaseEditingBootstrap
|
|
11
11
|
invoke :model
|
12
12
|
|
13
13
|
def add_base_model
|
14
|
-
inject_into_class "app/models/#{
|
14
|
+
inject_into_class "app/models/#{file_path}.rb", class_name do
|
15
15
|
" include BaseEditingBootstrap::BaseModel\n"
|
16
16
|
end
|
17
17
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: base_editing_bootstrap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Marino Bonetti
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -337,11 +337,15 @@ files:
|
|
337
337
|
- app/views/base_editing/_editing_form_help_text.html.erb
|
338
338
|
- app/views/base_editing/_editing_form_measure_unit.html.erb
|
339
339
|
- app/views/base_editing/_form.html.erb
|
340
|
+
- app/views/base_editing/_form_base_errors.html.erb
|
341
|
+
- app/views/base_editing/_form_body_container.html.erb
|
342
|
+
- app/views/base_editing/_form_container.html.erb
|
340
343
|
- app/views/base_editing/_form_field.html.erb
|
341
344
|
- app/views/base_editing/_form_field_container.html.erb
|
342
345
|
- app/views/base_editing/_form_field_header.html.erb
|
343
346
|
- app/views/base_editing/_form_fields_container.html.erb
|
344
347
|
- app/views/base_editing/_form_footer.html.erb
|
348
|
+
- app/views/base_editing/_form_footer_container.html.erb
|
345
349
|
- app/views/base_editing/_index_body.html.erb
|
346
350
|
- app/views/base_editing/_index_main_buttons.html.erb
|
347
351
|
- app/views/base_editing/_index_title_header.html.erb
|
@@ -368,6 +372,7 @@ files:
|
|
368
372
|
- app/views/base_editing/form_field/_enum.html.erb
|
369
373
|
- app/views/base_editing/form_field/_has_one_attachment.html.erb
|
370
374
|
- app/views/base_editing/form_field/_integer.html.erb
|
375
|
+
- app/views/base_editing/form_field/_textarea.html.erb
|
371
376
|
- app/views/base_editing/header_field/_base.html.erb
|
372
377
|
- app/views/base_editing/index.html.erb
|
373
378
|
- app/views/base_editing/new.html.erb
|