kono_utils_bootstrap_view4 0.1.1 → 0.2.3

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: a0869fde7cdac3f227c974d670959740352a6ce8244bff8ec08439264268470f
4
- data.tar.gz: 75ed284392e77c09b2ef9033f9f7201c176b88f95c68084c7c896b8c3a74d31b
3
+ metadata.gz: 97774694179797f76da7122827aaebeb3b0fb4b55f33632cb8460d6b802342ac
4
+ data.tar.gz: 2614575e9e035fa42cee5a41dc7f893895bdea212e97747edab35b012a1edfdc
5
5
  SHA512:
6
- metadata.gz: def54fb4f71d919cde8adf72494d258878db8e78c5999a89a40420e14642ccf04bdb7ee40a1fba1300beb8738e8b6ca8132f7b7ad7e861eb2118ac530403ec3e
7
- data.tar.gz: 5d92329145a3b55e5eadd638ac64f346a51c27f6143b39543870e868b011561bb1e86cf40b423172aefb5df31aa72c7222bffa0b9f205ea0877f8e999ec0c3b4
6
+ metadata.gz: '079b97baf17d95b65e461991143a7e66973a802c278e1c5726a18a471010245f56d97f8fbc2523b65fb21bf9ed296f2d0b7982d1a3bdc5486951e5c2ff48d0bd'
7
+ data.tar.gz: 38e65684fc2fc8bc5e4749a81bb4cdf46ba896069c52c0bf8cb533296467b5c99e3a78b84cf1db64d11c6094f1db61988caa7ea5b9c53c7677b2cf3b7508941b
@@ -33,6 +33,10 @@ module KonoUtils
33
33
  parent_controller.send(:destroy_custom_polymorphic_path, *rec)
34
34
  end
35
35
 
36
+ def show_custom_polymorphic_path(*rec)
37
+ parent_controller.send(:show_custom_polymorphic_path, *rec)
38
+ end
39
+
36
40
  ##
37
41
  # Registra il contenuto con una chiave, e lo renderizza poi dove è più necessario
38
42
  # @param [String] name
@@ -0,0 +1,23 @@
1
+ module KonoUtils
2
+ module Object
3
+ module Cell
4
+ module Buttons # namespace
5
+ class Show < Base
6
+
7
+ def url_to
8
+ options[:url_to] || show_custom_polymorphic_path(model)
9
+ end
10
+
11
+ def specific_button_class
12
+ 'btn-info'
13
+ end
14
+
15
+ def button_content
16
+ options.fetch(:content, fa_icon("eye"))
17
+ end
18
+
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -24,6 +24,13 @@ module KonoUtils
24
24
  [model, _form_options]
25
25
  end
26
26
 
27
+ ##
28
+ # Elenco di concept di bottoni da generare nella form per il submit
29
+ # @param [SimpleForm::FormBuilder] form_builder
30
+ def submit_buttons(form_builder:)
31
+ [concept("cell/forms/submit", nil, context: {form: form_builder})]
32
+ end
33
+
27
34
  protected
28
35
 
29
36
  def form_id
@@ -5,6 +5,7 @@ module KonoUtils
5
5
  # ha sempre un metodo form che viene ricevuto dal contesto della form
6
6
  class Forms::Base < Base
7
7
 
8
+ # @return [SimpleForm::FormBuilder]
8
9
  def form
9
10
  context[:form]
10
11
  end
@@ -32,7 +32,7 @@ module KonoUtils
32
32
  #
33
33
  def input_value
34
34
  value = form.object.send(attribute_name)
35
- value.is_a?(DateTime) ? "date: moment('#{value&.rfc2822}')," : ''
35
+ value.respond_to?(:rfc2822) ? "date: moment('#{value.rfc2822}')," : ''
36
36
  end
37
37
 
38
38
  def input_picker_format
@@ -11,6 +11,12 @@ module KonoUtils
11
11
  :search_buttons_container
12
12
  end
13
13
 
14
+ # @param [SimpleForm::FormBuilder] form_builder
15
+ # @return [Array<Concept>]
16
+ def submit_buttons(form_builder:)
17
+ super + [concept("cell/buttons/reset_search", model.search_form_builder.to_model)]
18
+ end
19
+
14
20
  end
15
21
  end
16
22
  end
@@ -1,9 +1,11 @@
1
1
  <%= simple_form_for(*forms_options) do |f| %>
2
2
 
3
- <%= concept("cell/forms/container", model, context: {form: f}, layout: container_layout) %>
3
+ <%= concept("cell/forms/container", model, context: { form: f }, layout: container_layout) %>
4
4
 
5
5
  <%= hidden_field_tag "kono_utils[form_id]", form_id %>
6
6
 
7
- <%= concept("cell/forms/submit", nil, context: {form: f}) %>
7
+ <% submit_buttons(form_builder:f).each do |btn| %>
8
+ <%= btn %>
9
+ <% end %>
8
10
 
9
11
  <% end %>
@@ -2,7 +2,7 @@
2
2
  <thead>
3
3
  <tr>
4
4
  <% columns_to_show.each do |c| %>
5
- <th><%= form.object.class.human_attribute_name(c.name) %></th>
5
+ <th><%= base_class.human_attribute_name(c.name) %></th>
6
6
  <% end %>
7
7
  <th></th>
8
8
  </tr>
@@ -1,2 +1,3 @@
1
+ <%= concept("cell/buttons/show", model) if policy(model).show? %>
1
2
  <%= concept("cell/buttons/edit", model) if policy(model).edit? %>
2
- <%= concept("cell/buttons/delete", model) if policy(model).destroy? %>
3
+ <%= concept("cell/buttons/delete", model) if policy(model).destroy? %>
@@ -7,8 +7,9 @@
7
7
  <div class="row">
8
8
  <div class="col-md">
9
9
  <div class="float-right">
10
- <%= concept("cell/forms/submit", nil, context: {form: f}) %>
11
- <%= concept("cell/buttons/reset_search", model.search_form_builder.to_model) %>
10
+ <% submit_buttons(form_builder:f).each do |btn| %>
11
+ <%= btn %>
12
+ <% end %>
12
13
  </div>
13
14
  </div>
14
15
  </div>
@@ -1,3 +1,3 @@
1
1
  module KonoUtilsBootstrapView4
2
- VERSION = '0.1.1'
2
+ VERSION = '0.2.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kono_utils_bootstrap_view4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marino Bonetti
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-15 00:00:00.000000000 Z
11
+ date: 2021-03-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -39,7 +39,7 @@ dependencies:
39
39
  version: '1.1'
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
- version: 1.1.2
42
+ version: 1.1.4
43
43
  type: :runtime
44
44
  prerelease: false
45
45
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,7 +49,7 @@ dependencies:
49
49
  version: '1.1'
50
50
  - - ">="
51
51
  - !ruby/object:Gem::Version
52
- version: 1.1.2
52
+ version: 1.1.4
53
53
  - !ruby/object:Gem::Dependency
54
54
  name: kaminari
55
55
  requirement: !ruby/object:Gem::Requirement
@@ -185,6 +185,7 @@ files:
185
185
  - app/concepts/kono_utils/object/cell/buttons/edit.rb
186
186
  - app/concepts/kono_utils/object/cell/buttons/list.rb
187
187
  - app/concepts/kono_utils/object/cell/buttons/reset_search.rb
188
+ - app/concepts/kono_utils/object/cell/buttons/show.rb
188
189
  - app/concepts/kono_utils/object/cell/create/base.rb
189
190
  - app/concepts/kono_utils/object/cell/create/page_title.rb
190
191
  - app/concepts/kono_utils/object/cell/create/side_title.rb