pxs-forms 0.0.3 → 0.0.4
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 +13 -3
- data/lib/pxs/forms/model_helpers.rb +1 -1
- data/lib/pxs/forms/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b78b1ae5381a69dd4f9b75d4c90878f8eaadc09c3a336c5ded134d92e529ab6b
|
4
|
+
data.tar.gz: 8325584e7c5158a52ffb7f5f8618b2001b897e83f15c41731b55332ac14292ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6de19d9021c51c308c53640a1eea5570da58149f0353d552b26ca9b0dab9657ef6a1acab747a98dfcc13ad84036c509636ff43805a70a71ba240e3e70b96e41
|
7
|
+
data.tar.gz: 5c9cefb22209e754a9cc32141bc6b4308c95f48a3cd937952e7ddfc2cd75e50788905e79823c72d9d33bea13e300ee554714af313a696d7af4c4291a8452c9d9
|
@@ -2,22 +2,30 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
2
2
|
|
3
3
|
delegate :tag, :safe_join, to: :@template
|
4
4
|
|
5
|
+
# define a model field
|
6
|
+
# the format is deduced from the column type or attribute name
|
5
7
|
def field(attribute, options = {})
|
6
8
|
@form_options = options
|
9
|
+
|
10
|
+
# extract the object type from the attribute
|
7
11
|
object_type = object_type_for_attribute(attribute)
|
8
12
|
|
13
|
+
# set the input type depending on the attribute type
|
9
14
|
input_type = case object_type
|
10
15
|
when :date then :string
|
11
16
|
when :integer then :string
|
12
17
|
else object_type
|
13
18
|
end
|
14
19
|
|
20
|
+
# if as: :input_type is set, use it to set input type
|
15
21
|
override_input_type = if options[:as]
|
16
22
|
options[:as]
|
23
|
+
# for collections, use a Select
|
17
24
|
elsif options[:collection]
|
18
25
|
:select
|
19
26
|
end
|
20
27
|
|
28
|
+
# return result of [input_type]_input method
|
21
29
|
send("#{override_input_type || input_type}_input", attribute, options)
|
22
30
|
end
|
23
31
|
|
@@ -85,8 +93,10 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
85
93
|
|
86
94
|
def select_input(attribute, options = {})
|
87
95
|
|
88
|
-
|
89
|
-
|
96
|
+
# default value method to :id
|
97
|
+
value_method = options[:value_method] || :id
|
98
|
+
# default text method to :name
|
99
|
+
text_method = options[:text_method] || :name
|
90
100
|
input_options = options[:input_html] || {}
|
91
101
|
|
92
102
|
multiple = input_options[:multiple]
|
@@ -166,7 +176,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
166
176
|
end
|
167
177
|
|
168
178
|
def field_block(attribute, options = {}, &block)
|
169
|
-
tag.div class: "field #{attribute}" do
|
179
|
+
tag.div class: "field #{attribute}", id: options[:field_id] do
|
170
180
|
safe_join [
|
171
181
|
block.call,
|
172
182
|
hint_text(options[:hint]),
|
@@ -47,7 +47,7 @@ module Pxs
|
|
47
47
|
|
48
48
|
def model_form_with(model: nil, scope: nil, url: nil, format: nil, **options, &block)
|
49
49
|
options = options.reverse_merge(builder: ModelFormBuilder)
|
50
|
-
form_with(model: model, scope: scope, url: url, format: format, class: "form#{options.has_key? :class ? " #{options[:class]}" : ""}", **options, &block)
|
50
|
+
form_with(model: model, scope: scope, url: url, format: format, class: "form#{(options.has_key? :class) ? " #{options[:class]}" : ""}", **options, &block)
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
data/lib/pxs/forms/version.rb
CHANGED