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 +4 -4
- data/app/concepts/kono_utils/object/cell/base.rb +4 -0
- data/app/concepts/kono_utils/object/cell/buttons/show.rb +23 -0
- data/app/concepts/kono_utils/object/cell/form.rb +7 -0
- data/app/concepts/kono_utils/object/cell/forms/base.rb +1 -0
- data/app/concepts/kono_utils/object/cell/forms/fields/date_time_field.rb +1 -1
- data/app/concepts/kono_utils/object/cell/searches/form.rb +6 -0
- data/app/concepts/kono_utils/object/view/form.erb +4 -2
- data/app/concepts/kono_utils/object/view/forms/fields/nested_wrappers/forms_containers/table_layout.erb +1 -1
- data/app/concepts/kono_utils/object/view/index/row_buttons.erb +2 -1
- data/app/concepts/kono_utils/object/view/searches/form.erb +3 -2
- data/lib/kono_utils_bootstrap_view4/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97774694179797f76da7122827aaebeb3b0fb4b55f33632cb8460d6b802342ac
|
4
|
+
data.tar.gz: 2614575e9e035fa42cee5a41dc7f893895bdea212e97747edab35b012a1edfdc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
@@ -32,7 +32,7 @@ module KonoUtils
|
|
32
32
|
#
|
33
33
|
def input_value
|
34
34
|
value = form.object.send(attribute_name)
|
35
|
-
value.
|
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
|
-
|
7
|
+
<% submit_buttons(form_builder:f).each do |btn| %>
|
8
|
+
<%= btn %>
|
9
|
+
<% end %>
|
8
10
|
|
9
11
|
<% end %>
|
@@ -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
|
-
|
11
|
-
|
10
|
+
<% submit_buttons(form_builder:f).each do |btn| %>
|
11
|
+
<%= btn %>
|
12
|
+
<% end %>
|
12
13
|
</div>
|
13
14
|
</div>
|
14
15
|
</div>
|
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.
|
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-
|
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.
|
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.
|
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
|