pxs-forms 0.0.7 → 0.0.9
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/lib/pxs/forms/model_form_builder.rb +2 -8
- 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: 78dfbf48f4433764cbda0d245568d7b8b7bbdfb4336e1b2a5ca66e4b8ab5ed88
|
4
|
+
data.tar.gz: 5d2c6b57d885e06f0dc61914ee900d32b0923e3e882c43da03126e6066deab63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eab3a2ad0db3e9304743bab95685546cb29c41770545c6d0c69e6da6fbc4953997888736da03956366f5e5e157740856596e29783dcd93ab4f50db5716bdca4d
|
7
|
+
data.tar.gz: f301fa6e25eee10066027dfbf7ee72d098844e5ba28aaab205d37cb1f78b14f3c78d7e953f793e60c6b99fca4324e5d76e98f83647eef913b99e2d61145eb1e8
|
@@ -5,14 +5,11 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
5
5
|
# define a model field
|
6
6
|
# the format is deduced from the column type or attribute name
|
7
7
|
def field(attribute, options = {})
|
8
|
-
puts attribute
|
9
|
-
puts options.inspect
|
10
8
|
@form_options = options
|
11
9
|
|
12
10
|
# extract the object type from the attribute
|
13
11
|
object_type = object_type_for_attribute(attribute)
|
14
12
|
|
15
|
-
puts object_type.inspect
|
16
13
|
# set the input type depending on the attribute type
|
17
14
|
input_type = case object_type
|
18
15
|
when :date then :string
|
@@ -20,8 +17,6 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
20
17
|
else object_type
|
21
18
|
end
|
22
19
|
|
23
|
-
puts input_type.inspect
|
24
|
-
|
25
20
|
# if as: :input_type is set, use it to set input type
|
26
21
|
override_input_type = if options[:as]
|
27
22
|
options[:as]
|
@@ -30,8 +25,6 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
30
25
|
:select
|
31
26
|
end
|
32
27
|
|
33
|
-
puts override_input_type.inspect
|
34
|
-
|
35
28
|
# return result of [input_type]_input method
|
36
29
|
send("#{override_input_type || input_type}_input", attribute, options)
|
37
30
|
end
|
@@ -79,11 +72,12 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
79
72
|
end
|
80
73
|
|
81
74
|
def boolean_input(attribute, options = {})
|
75
|
+
raise 'fuck you piece of shit'
|
82
76
|
field_block(attribute, options) do
|
83
77
|
tag.div(class: "checkbox-field") do
|
84
78
|
safe_join [
|
85
|
-
check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
86
79
|
label(attribute, options[:label], class: "checkbox-label"),
|
80
|
+
check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
87
81
|
]
|
88
82
|
end
|
89
83
|
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.0.
|
4
|
+
version: 0.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|