base_editing_bootstrap 1.7.0 → 1.8.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9c363b9569d715a8519f72345250ee7dd019de73ce87330e6a49d62acc0e0e10
4
- data.tar.gz: 9d7499c1ba5fbf66c2d0f466237e7b69bce234d022d21cd9d74b920564b6960f
3
+ metadata.gz: 785488fc3726ebf47d41122c81fd74cfc1d25dcef6b5f3848d80689a5eb00e5b
4
+ data.tar.gz: e63fa0c1c288e38fde44df84260eefd133d726ae387e8742f549753a83394959
5
5
  SHA512:
6
- metadata.gz: b2243dc34ddba312f01465774a8df4662ea78e832885774966d29c685164201284aae102b8188a59c54d8b3c44a1c8af81227e04ef28a780651e6cdcd1abe6c1
7
- data.tar.gz: 7c43ad6f7059a50c7719633e432d941ebd2433518712b9b5d20b5fff573cc802b24de785e81a96eebaf31c6d96639b2e3a99445dca3df086956d73a0529cc6d3
6
+ metadata.gz: 403dc430a15bdcb9030900197c2acc309fe2108a2a5c68340eed924a76264d2b57086022fa88be5bb2abc5b6b87acaaf62574c1c1d086a1cb5682afaddef20c0
7
+ data.tar.gz: f0b42845d080d3fc4d52d5eeca2edf35bca3cb4610bac33655b69c17e135c10b7fb96ee6fe0599cfdca66c645b30b03b50b76aa7953646f089d7bfb14e6832ed
data/CHANGELOG.md CHANGED
@@ -2,6 +2,28 @@
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.0 - 2025-03-20
6
+ #### Bug Fixes
7
+ - Correct pass locals datas - (00fd083) - Marino Bonetti
8
+ - Don't re-authorize if authorization is already done - (dd756b3) - Marino Bonetti
9
+ - Correct path for generator - (a7d9842) - Marino Bonetti
10
+ - Search partial with class name and without namespace - (2d08db3) - Marino Bonetti
11
+ - Belongs to polymorphic (#17) - (7d736d7) - Marino Bonetti
12
+ #### Documentation
13
+ - Update documentation - (07dd44d) - Marino Bonetti
14
+ - Correct documentation - (6337745) - Marino Bonetti
15
+ #### Features
16
+ - Aggiunto contenitore per gli errori base - (2f9f309) - Marino Bonetti
17
+ - Add layouts for customization - (1bb0201) - Marino Bonetti
18
+ - AutoRender text columns to TextArea - (8533b53) - Marino Bonetti
19
+ #### Refactoring
20
+ - Rename variable to be more logic - (8fa9bbb) - Marino Bonetti
21
+ - Rewrite for debugging - (b7a3756) - Marino Bonetti
22
+ #### Tests
23
+ - Typo - (a1ada44) - Marino Bonetti
24
+
25
+ - - -
26
+
5
27
  ## 1.7.0 - 2025-02-11
6
28
  #### Bug Fixes
7
29
  - 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
- authorize base_class
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
- authorize @object
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
- authorize @object
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
- authorize @object
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 { "#{type}->#{generic_field}->#{template.short_identifier}->#{ locals.inspect}" }
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
- # Precedenza modello e campo specifico
22
- if lookup_context.exists?(field, [obj_base_path], true)
23
- return lookup_context.find(field, [obj_base_path], true)
24
- end
25
- # Ricerca tramite campo generico e prefissi di contesto che contiene anche controller e namespace di controller
26
- if lookup_context.exists?("#{base_path}/#{generic_field}", lookup_context.prefixes, true)
27
- view = lookup_context.find_all("#{base_path}/#{generic_field}", lookup_context.prefixes, true)
28
- return view.first
29
- end
30
- if lookup_context.exists?(generic_field, [obj_base_path], true)
31
- return lookup_context.find(generic_field, [obj_base_path], true)
32
- end
33
- if lookup_context.exists?("base_editing/#{base_path}/#{generic_field}", [], true)
34
- return lookup_context.find_all("base_editing/#{base_path}/#{generic_field}", [], true).first
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
- <div class="card" id="card_id">
2
- <div class="card-header">
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
- <div class="card-body">
6
- <%= render partial: "form_field_header", local: {form:} %>
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
- </div>
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
- </div>
20
- </div>
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 %>
@@ -0,0 +1,3 @@
1
+ <div class="card-body">
2
+ <%= yield %>
3
+ </div>
@@ -0,0 +1,3 @@
1
+ <%= content_tag :div, class: "card", id: dom_id(@object, :form_container) do %>
2
+ <%= yield %>
3
+ <% end %>
@@ -2,18 +2,18 @@
2
2
  ##
3
3
  # Template per il rendering campo
4
4
  # - form -> FormBuilder
5
- # - form_field -> Array[String]
5
+ # - form_field -> String
6
6
  %>
7
7
  <%# locals: (form:, form_field:) -%>
8
8
  <%
9
- button_group_classes = ["mb-1"]
9
+ input_group_classes = ["mb-1"]
10
10
 
11
11
  content = form_print_field(form, form_field)
12
12
  unless content.match "checkbox"
13
- button_group_classes << "input-group"
13
+ input_group_classes << "input-group"
14
14
  end
15
- button_group_classes << (form.object.validated? ? "has-validation" : "")
16
- button_group_classes << "form-#{form_field}-input-group"
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: button_group_classes.join(" ") do %>
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) %>
@@ -0,0 +1,3 @@
1
+ <div class="card-footer">
2
+ <%= yield %>
3
+ </div>
@@ -0,0 +1,7 @@
1
+ <%
2
+ ##
3
+ # Template per il rendering del vero campo input
4
+ # eseguire override nei casi in cui si voglia renderizzare qualcosa di differente
5
+ %>
6
+ <%# locals: (form:, field:) -%>
7
+ <%= form.text_area(field) %>
@@ -76,3 +76,10 @@ it:
76
76
  ransack:
77
77
  predicates:
78
78
  i_cont: "contiene"
79
+ base_editing:
80
+ form_base_errors:
81
+ title: Presenti errori generici
82
+ post:
83
+ base_editing:
84
+ form_base_errors:
85
+ title: Presenti errori per il modello POST
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.8.0
@@ -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")) +
@@ -11,7 +11,7 @@ module BaseEditingBootstrap
11
11
  invoke :model
12
12
 
13
13
  def add_base_model
14
- inject_into_class "app/models/#{model_resource_name}.rb", class_name do
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.7.0
4
+ version: 1.8.0
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-02-11 00:00:00.000000000 Z
11
+ date: 2025-03-20 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