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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f882bf75ec6ef1fa8258aac92f9aab8766a2c5a9522340b4c69d8c601fc07df5
4
- data.tar.gz: 1807072c6f54b2cef4739569c825e61fca4b775955c641a7f8a5dd71ea8e6e2e
3
+ metadata.gz: e9c05787b85813a1a754f426f21bbc85177f53e19d7a5c52e9197d8ce1b07fbb
4
+ data.tar.gz: 6a786ceebe5b82975834900ddc6f8cee270a5dea06bd0b5d3aac595af4aa3938
5
5
  SHA512:
6
- metadata.gz: f826272e261aba37f2c8dcf133c04a741f6144b13e58d40b9a542782e559484fb253db425f1dcc477a70730f8200c54ad651e9cf5fd1488c68040274b6b04809
7
- data.tar.gz: 798c44d36089f05471e182222acb21e37c14f0558deac3af84be12c82f79cc1df63c59c546686d2f94ff0234d2e917a6b788bfad82133e4c049a8bcc2b597d89
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, model_form_with
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: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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: "#{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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: "#{"is-invalid" if has_error?(attribute)}", value: object[attribute]}, options[:input_html])),
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: object[attribute]}.merge(options[:select] || {}), merge_input_options({class: "#{"custom-select" unless multiple} #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.1.1"
5
+ VERSION = "0.1.3"
6
6
  end
7
7
  end
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.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-09 00:00:00.000000000 Z
11
+ date: 2025-03-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: