pxs-forms 0.0.2 → 0.0.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: ec159c4ff23244fbe1b2f5864fa4d1b698f4c99af7f48b99ef11c8b6f1bde3a1
4
- data.tar.gz: 0f787b5d018363d6be3a668a32f66599cd0ea3f8e0478bdad9f7e89839df36a7
3
+ metadata.gz: a8da1ac34353aaecca98a9314d669053b8bd4212681349d2cb5a05b5cc555207
4
+ data.tar.gz: bb24505ddf539187c82ab89baff8a81213351e7ea8f3bdeae907e709e303f4de
5
5
  SHA512:
6
- metadata.gz: cef42da34b3882ba400f98582acb718f88861c5d3e8f07584c7ca7ab144447f46749702961c0a94eebb283dd77f672e6bae01af68d5169d3fa03816b158ea2ac
7
- data.tar.gz: ae9e2287a745cbc8832addf20d604d5cb32e1049e6e68038e53341c1c0103e0d7d212dce03463e5807d8c3abeea8e6b3938796f974c4d4c023e7ac34c26788eb
6
+ metadata.gz: e5174781bfef2632e8544bb3ac51ef58861c3f71a35bbb666bcdaab46a3ef2957ebf67d650ba33439ef1fe98e15ca7792a13a6217c54f0d9d56fc4165af6099e
7
+ data.tar.gz: 92f020826fb32a28db8ee1a89aa16562195f026e56a9b70af3e234ef79b7e1901f074f762ed0d5c7ecf1ce1605b967a8ed3c5e714fed4ba5668b96cafc070344
@@ -0,0 +1,205 @@
1
+ class ModelFormBuilder < ActionView::Helpers::FormBuilder
2
+
3
+ delegate :tag, :safe_join, to: :@template
4
+
5
+ def field(attribute, options = {})
6
+ @form_options = options
7
+ object_type = object_type_for_attribute(attribute)
8
+
9
+ input_type = case object_type
10
+ when :date then :string
11
+ when :integer then :string
12
+ else object_type
13
+ end
14
+
15
+ override_input_type = if options[:as]
16
+ options[:as]
17
+ elsif options[:collection]
18
+ :select
19
+ end
20
+
21
+ send("#{override_input_type || input_type}_input", attribute, options)
22
+ end
23
+
24
+ def radio_buttons_field(attribute, options = {})
25
+ collection_of(:radio_buttons, attribute, options)
26
+ end
27
+
28
+ def check_boxes_field(attribute, options = {})
29
+ collection_of(:check_boxes, attribute, options)
30
+ end
31
+
32
+ private
33
+ def object_type_for_attribute(attribute)
34
+ # if @object defines an attribute
35
+ result = if @object.respond_to?(:type_for_attribute) && @object.has_attribute?(attribute)
36
+ # return attribute type
37
+ @object.type_for_attribute(attribute.to_s).try(:type)
38
+ # else if @object matches a column
39
+ elsif @object.respond_to?(:column_for_attribute) && @object.has_attribute?(attribute)
40
+ @object.column_for_attribute(attribute).try(:type)
41
+ end
42
+
43
+ result || :string
44
+ end
45
+
46
+ ## inputs and helpers
47
+
48
+ def string_input(attribute, options = {})
49
+ field_block(attribute, options) do
50
+ safe_join [
51
+ (field_label(attribute, options[:label]) unless options[:label] == false),
52
+ string_field(attribute, merge_input_options({class: "form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
53
+ ]
54
+ end
55
+ end
56
+
57
+ def text_input(attriubte, options = {})
58
+ field_block(attribute, options) do
59
+ safe_join [
60
+ (field_label(attribute, options[:label]) unless options[:label] == false),
61
+ text_area(attribute, merge_input_options({class: "form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
62
+ ]
63
+ end
64
+ end
65
+
66
+ def boolean_input(attribute, options = {})
67
+ field_block(attribute, options) do
68
+ tag.div(class: "checkbox-field") do
69
+ safe_join [
70
+ check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
71
+ label(attribute, options[:label], class: "checkbox-label"),
72
+ ]
73
+ end
74
+ end
75
+ end
76
+
77
+ def collection_input(attriubte, options, &block)
78
+ field_block(method, options) do
79
+ safe_join [
80
+ label(method, options[:label]),
81
+ block.call,
82
+ ]
83
+ end
84
+ end
85
+
86
+ def select_input(attribute, options = {})
87
+
88
+ value_method = options[:value_method] || :to_s
89
+ text_method = options[:text_method] || :to_s
90
+ input_options = options[:input_html] || {}
91
+
92
+ multiple = input_options[:multiple]
93
+
94
+ collection_input(attribute, options) do
95
+ collection_select(attribute, options[:collection], value_method, text_method, options, merge_input_options({class: "#{"custom-select" unless multiple} form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
96
+ end
97
+ end
98
+
99
+ def grouped_select_input(attribute, options = {})
100
+
101
+ # We probably need to go back later and adjust this for more customization
102
+ collection_input(attribute, options) do
103
+ grouped_collection_select(attribute, options[:collection], :last, :first, :to_s, :to_s, options, merge_input_options({class: "custom-select form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
104
+ end
105
+ end
106
+
107
+ def file_input(attribute, options = {})
108
+ field_block(attribute, options) do
109
+ safe_join [
110
+ (field_label(attribute, options[:label]) unless options[:label] == false),
111
+ custom_file_field(attribute, options),
112
+ ]
113
+ end
114
+ end
115
+
116
+ def collection_of(input_type, attribute, options = {})
117
+ form_builder_method, custom_class, input_builder_method = case input_type
118
+ when :radio_buttons then [:collection_radio_buttons, "radio", :radio_button]
119
+ when :check_boxes then [:collection_check_boxes, "checkbox", :check_box]
120
+ else raise "Invalid input_type for collection_of, valid input_types are \":radio_buttons\", \":check_boxes\""
121
+ end
122
+
123
+ field_block(attribute, options) do
124
+ safe_join [
125
+ field_label(attribute, options[:label]),
126
+ tag.div(class: "#{custom_class}-list") {
127
+ (send(form_builder_method, attribute, options[:collection], options[:value_method], options[:text_method]) do |b|
128
+ tag.div(class: "#{custom_class}") {
129
+ safe_join [
130
+ b.send(input_builder_method, class: "#{custom_class}-input"),
131
+ b.label(class: "#{custom_class}-label"),
132
+ ]
133
+ }
134
+ end)
135
+ },
136
+ ]
137
+ end
138
+ end
139
+
140
+ def string_field(attribute, options = {})
141
+ case object_type_for_attribute(attribute)
142
+ when :date then
143
+ safe_join [
144
+ date_field(attribute, merge_input_options(options, {data: {datepicker: true}})),
145
+ tag.div {
146
+ date_select(attribute, {
147
+ order: [:year, :month, :day],
148
+ start_year: Date.today.year,
149
+ end_year: Date.today.year,
150
+ }, {data: {date_select: true}})
151
+ },
152
+ ]
153
+ when :integer then number_field(attribute, options)
154
+ when :string
155
+ case attribute.to_s
156
+ when /password/ then password_field(attribute, options)
157
+ # when /time_zone/ then :time_zone
158
+ # when /country/ then :country
159
+ when /email/ then email_field(attribute, options)
160
+ when /phone/ then telephone_field(attribute, options)
161
+ when /url/ then url_field(attribute, options)
162
+ else
163
+ text_field(attribute, options)
164
+ end
165
+ end
166
+ end
167
+
168
+ def field_block(attribute, options = {}, &block)
169
+ tag.div class: "field #{attribute}" do
170
+ safe_join [
171
+ block.call,
172
+ hint_text(options[:hint]),
173
+ error_text(attribute),
174
+ ].compact
175
+ end
176
+ end
177
+
178
+ def field_label(attribute, options = {})
179
+ label(attribute, options)
180
+ end
181
+
182
+ def hint_text(text)
183
+ unless text.nil?
184
+ tag.small text, class: "hint hint--form"
185
+ end
186
+ end
187
+
188
+ def error_text(attribute)
189
+ if has_error? attribute
190
+ tag.div @object.errors[method].join("<br />").html_safe, class: "form-errors"
191
+ end
192
+ end
193
+
194
+ def has_error?(attribute)
195
+ return false unless @object.respond_to?(:errors)
196
+ @object.errors.key?(attribute)
197
+ end
198
+
199
+ def merge_input_options(options, user_options)
200
+ return options if user_options.nil?
201
+
202
+ # TODO handle class merging here
203
+ options.merge(user_options)
204
+ end
205
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.2"
5
+ VERSION = "0.0.3"
6
6
  end
7
7
  end
data/lib/pxs/forms.rb CHANGED
@@ -3,8 +3,4 @@
3
3
  require_relative "forms/version"
4
4
  require_relative "forms/link_helpers"
5
5
  require_relative "forms/model_helpers"
6
-
7
- module Pxs
8
- module Forms
9
- end
10
- end
6
+ require_relative "forms/model_form_builder"
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Poubelle
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-20 00:00:00.000000000 Z
11
+ date: 2024-03-24 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -25,6 +25,7 @@ files:
25
25
  - Rakefile
26
26
  - lib/pxs/forms.rb
27
27
  - lib/pxs/forms/link_helpers.rb
28
+ - lib/pxs/forms/model_form_builder.rb
28
29
  - lib/pxs/forms/model_helpers.rb
29
30
  - lib/pxs/forms/version.rb
30
31
  - pxs-forms.gemspec