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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8da1ac34353aaecca98a9314d669053b8bd4212681349d2cb5a05b5cc555207
4
- data.tar.gz: bb24505ddf539187c82ab89baff8a81213351e7ea8f3bdeae907e709e303f4de
3
+ metadata.gz: b78b1ae5381a69dd4f9b75d4c90878f8eaadc09c3a336c5ded134d92e529ab6b
4
+ data.tar.gz: 8325584e7c5158a52ffb7f5f8618b2001b897e83f15c41731b55332ac14292ae
5
5
  SHA512:
6
- metadata.gz: e5174781bfef2632e8544bb3ac51ef58861c3f71a35bbb666bcdaab46a3ef2957ebf67d650ba33439ef1fe98e15ca7792a13a6217c54f0d9d56fc4165af6099e
7
- data.tar.gz: 92f020826fb32a28db8ee1a89aa16562195f026e56a9b70af3e234ef79b7e1901f074f762ed0d5c7ecf1ce1605b967a8ed3c5e714fed4ba5668b96cafc070344
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
- value_method = options[:value_method] || :to_s
89
- text_method = options[:text_method] || :to_s
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.3"
5
+ VERSION = "0.0.4"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pxs-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle