pxs-forms 0.1.1 → 0.1.3
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/CHANGELOG.md +21 -1
- data/lib/pxs/forms/model_form_builder.rb +6 -5
- 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: e9c05787b85813a1a754f426f21bbc85177f53e19d7a5c52e9197d8ce1b07fbb
|
4
|
+
data.tar.gz: 6a786ceebe5b82975834900ddc6f8cee270a5dea06bd0b5d3aac595af4aa3938
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70867890491a94036e8b27d1079eb56763e5151537015e8cd4e6ee7e8d44eee8cfb90824e571c18ddc7e97e1118347feed8bb48ab04157fcdfcbf2653e7f10d4
|
7
|
+
data.tar.gz: ec788f41cb77b2586d4d8e90f3173234aa7133c449b3ff7bd9b0335a6bbd1cbb4285304552b6e1aa334481780d0584abfa5c372cc95417026ea99065f13ba430
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
# pxs-forms
|
2
|
+
|
3
|
+
## Unofficial Release
|
4
|
+
|
5
|
+
## [0.1.3] - 2025-03-19
|
6
|
+
|
7
|
+
- Fix values not being automatically set for string, text, boolean fields
|
8
|
+
|
9
|
+
## [0.1.2] - 2025-03-09
|
10
|
+
|
11
|
+
- Fix Multiple Selects not selecting the correct values
|
12
|
+
|
13
|
+
## [0.1.1] - 2025-03-08
|
14
|
+
|
15
|
+
- Fix a bug where empty values are ignored when explicitly specified
|
16
|
+
|
17
|
+
## [0.1.0]
|
18
|
+
|
19
|
+
- Mostly bug-free release, testing needs to be done
|
20
|
+
|
1
21
|
## [Unreleased]
|
2
22
|
|
3
23
|
## [0.0.1] - 2024-03-20
|
@@ -16,4 +36,4 @@
|
|
16
36
|
- Use base input names and IDs in model form builder
|
17
37
|
- Add select or create subform as a model form builder method
|
18
38
|
- Add nested association form and related methods to models helper
|
19
|
-
- Add shorthand methods: model_form_for,
|
39
|
+
- Add shorthand methods: model_form_for, model_form_wit
|
@@ -188,7 +188,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
188
188
|
|
189
189
|
safe_join [
|
190
190
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
191
|
-
@template.text_field(base_input_name, attribute, merge_input_options({class: "
|
191
|
+
@template.text_field(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
192
192
|
]
|
193
193
|
end
|
194
194
|
end
|
@@ -196,7 +196,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
196
196
|
def datetime_input(attribute, options, &block)
|
197
197
|
field_block(attribute, options) do
|
198
198
|
safe_join [
|
199
|
-
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: "
|
199
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
200
200
|
]
|
201
201
|
end
|
202
202
|
end
|
@@ -205,7 +205,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
205
205
|
field_block(attribute, options) do
|
206
206
|
safe_join [
|
207
207
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
208
|
-
@template.text_area(base_input_name, attribute, merge_input_options({class: "
|
208
|
+
@template.text_area(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil, value: object[attribute]}, objectify_options(options[:input_html] || {}))),
|
209
209
|
]
|
210
210
|
end
|
211
211
|
end
|
@@ -214,7 +214,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
214
214
|
field_block(attribute, options) do
|
215
215
|
tag.div(class: "checkbox-field") do
|
216
216
|
safe_join [
|
217
|
-
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
217
|
+
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, objectify_options(options[:input_html] || {}))),
|
218
218
|
@template.label(base_input_name, attribute, options[:label], class: "checkbox-label"),
|
219
219
|
]
|
220
220
|
end
|
@@ -241,10 +241,11 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
241
241
|
input_options = options || {}
|
242
242
|
|
243
243
|
multiple = input_options[:multiple]
|
244
|
+
selected = if object.respond_to? attribute then object.send(attribute) else object[attribute] end
|
244
245
|
|
245
246
|
safe_join [
|
246
247
|
collection_input(attribute, options) do
|
247
|
-
@template.collection_select(object.class.model_name.singular.to_sym, attribute, options[:collection], value_method, text_method, {selected:
|
248
|
+
@template.collection_select(object.class.model_name.singular.to_sym, attribute, options[:collection], value_method, text_method, {selected:}.merge(options[:select] || {}), merge_input_options({class: "#{"custom-select" unless multiple} #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
|
248
249
|
end
|
249
250
|
]
|
250
251
|
end
|
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.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|