pxs-forms 0.0.13 → 0.0.15
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/lib/pxs/forms/model_form_builder.rb +18 -18
- data/lib/pxs/forms/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14b39bac9452c6f1c71de938ea6ef066dba69a0d861048f7f8c691af49b51ee6
|
4
|
+
data.tar.gz: 1a96903d410a21e147dc3fcdfa00752178c7e45ae6dd2f3b3c3215a60069f18d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 638a4ed2810a3e316043aad98a4720cde8317645171694ef026081e0fabe93588541236a35dd3f6854013bb79a9a45df29f060ed907ee821c9629c0906253553
|
7
|
+
data.tar.gz: ba16db0647f94210668ccf504bfa0c763ff62225be35cf431710f6466629ecd89d16fee5fe99387a8bacf188fa373c01fd88fe6792d5cdecd8a1dc0992f07eaf
|
@@ -37,11 +37,9 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
37
37
|
@object.type_for_attribute(attribute.to_s).try(:type)
|
38
38
|
# else if @object matches a column
|
39
39
|
elsif @object.respond_to?(:column_for_attribute) && @object.has_attribute?(attribute)
|
40
|
-
# return column type
|
41
40
|
@object.column_for_attribute(attribute).try(:type)
|
42
41
|
end
|
43
42
|
|
44
|
-
# default to string
|
45
43
|
result || :string
|
46
44
|
end
|
47
45
|
|
@@ -51,36 +49,36 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
51
49
|
field_block(attribute, options) do
|
52
50
|
safe_join [
|
53
51
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
54
|
-
string_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options)),
|
52
|
+
string_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
|
55
53
|
]
|
56
54
|
end
|
57
55
|
end
|
58
56
|
|
59
|
-
def
|
57
|
+
def datetime_input(attribute, options, &block)
|
60
58
|
field_block(attribute, options) do
|
61
59
|
safe_join [
|
62
|
-
|
63
|
-
text_area(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options)),
|
60
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
|
64
61
|
]
|
65
62
|
end
|
66
63
|
end
|
67
64
|
|
68
|
-
def
|
65
|
+
def text_input(attribute, options = {})
|
69
66
|
field_block(attribute, options) do
|
70
|
-
tag.div(class: "checkbox-field") do
|
71
67
|
safe_join [
|
72
|
-
|
73
|
-
|
68
|
+
(field_label(attribute, options[:label]) unless options[:label] == false),
|
69
|
+
text_area(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
|
74
70
|
]
|
75
|
-
end
|
76
71
|
end
|
77
72
|
end
|
78
73
|
|
79
|
-
def
|
74
|
+
def boolean_input(attribute, options = {})
|
80
75
|
field_block(attribute, options) do
|
76
|
+
tag.div(class: "checkbox-field") do
|
81
77
|
safe_join [
|
82
|
-
(
|
78
|
+
check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
79
|
+
label(attribute, options[:label], class: "checkbox-label"),
|
83
80
|
]
|
81
|
+
end
|
84
82
|
end
|
85
83
|
end
|
86
84
|
|
@@ -95,14 +93,14 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
95
93
|
|
96
94
|
def select_input(attribute, options = {})
|
97
95
|
|
98
|
-
value_method = options[:value_method] || :
|
99
|
-
text_method = options[:text_method] || :
|
96
|
+
value_method = options[:value_method] || :id
|
97
|
+
text_method = options[:text_method] || :name
|
100
98
|
input_options = options || {}
|
101
99
|
|
102
100
|
multiple = input_options[:multiple]
|
103
101
|
|
104
102
|
collection_input(attribute, options) do
|
105
|
-
collection_select(attribute, options[:collection], value_method, text_method, options, merge_input_options({class: "#{"custom-select" unless multiple} #{"is-invalid" if has_error?(attribute)}"}, options))
|
103
|
+
collection_select(attribute, options[:collection], value_method, text_method, options[:select_options] || {}, merge_input_options({class: "#{"custom-select" unless multiple} #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
|
106
104
|
end
|
107
105
|
end
|
108
106
|
|
@@ -110,7 +108,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
110
108
|
|
111
109
|
# We probably need to go back later and adjust this for more customization
|
112
110
|
collection_input(attribute, options) do
|
113
|
-
grouped_collection_select(attribute, options[:collection], :last, :first, :to_s, :to_s, options, merge_input_options({class: "custom-select #{"is-invalid" if has_error?(attribute)}"}, options))
|
111
|
+
grouped_collection_select(attribute, options[:collection], :last, :first, :to_s, :to_s, options, merge_input_options({class: "custom-select #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
|
114
112
|
end
|
115
113
|
end
|
116
114
|
|
@@ -160,6 +158,8 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
160
158
|
}, {data: {date_select: true}})
|
161
159
|
},
|
162
160
|
]
|
161
|
+
when :datetime then
|
162
|
+
datetime_field(attribute, options)
|
163
163
|
when :integer then number_field(attribute, options)
|
164
164
|
when :string
|
165
165
|
case attribute.to_s
|
@@ -197,7 +197,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
197
197
|
|
198
198
|
def error_text(attribute)
|
199
199
|
if has_error? attribute
|
200
|
-
tag.div @object.errors[
|
200
|
+
tag.div @object.errors[attribute].join("<br />").html_safe, class: "form-errors"
|
201
201
|
end
|
202
202
|
end
|
203
203
|
|
data/lib/pxs/forms/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pxs-forms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.15
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|