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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d50fc40d7619672b358b9a858d5fa475cad9c714e34b6b578e449972d092437
4
- data.tar.gz: ddd3bcd39966224b7c2eb2803b3ca1db2bd31ce7afa20c7b4e8d90e2bdd7a887
3
+ metadata.gz: 14b39bac9452c6f1c71de938ea6ef066dba69a0d861048f7f8c691af49b51ee6
4
+ data.tar.gz: 1a96903d410a21e147dc3fcdfa00752178c7e45ae6dd2f3b3c3215a60069f18d
5
5
  SHA512:
6
- metadata.gz: ce353d76d2f8363bd14a08899a8a96ccab5898bf73a1f819ea085aac5ffc7aa1f9d4be4d80d2db3fb259a90d9622917b107967d3ec7dd14545bd79c77774c369
7
- data.tar.gz: 4ab2e5a3b321f4808715402c5ed2b2fe351a165325051c7e3dca4ec06b1d1f5ba6831b289bba57aa357343295cc9f1981492256f20b97259340020e9d26108f0
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 text_input(attribute, options = {})
57
+ def datetime_input(attribute, options, &block)
60
58
  field_block(attribute, options) do
61
59
  safe_join [
62
- (field_label(attribute, options[:label]) unless options[:label] == false),
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 boolean_input(attribute, options = {})
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
- check_box(attribute, merge_input_options({class: "checkbox-input"}, options)),
73
- label(attribute, options[:label], class: "checkbox-label"),
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 currency_input(attribute, options = {})
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
- (field_label(attribute, options[:label]) unless options[:label] == false), number_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}", step: "0.01", placeholder: "0.00"}, options))
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] || :to_s
99
- text_method = options[:text_method] || :to_s
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[method].join("<br />").html_safe, class: "form-errors"
200
+ tag.div @object.errors[attribute].join("<br />").html_safe, class: "form-errors"
201
201
  end
202
202
  end
203
203
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.13"
5
+ VERSION = "0.0.15"
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.0.13
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-04-19 00:00:00.000000000 Z
11
+ date: 2024-05-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: