pxs-forms 0.0.9 → 0.0.12
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/CHANGELOG.md +6 -2
- data/lib/pxs/forms/model_form_builder.rb +20 -21
- 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: 91a2c544708fe08e5a017f8edee131907b84a1744000b4941e8ada68533b0142
|
4
|
+
data.tar.gz: 5f81663eb39dab1393b33716338cff2338141deef033b500d150f9b186205fc8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ddd794ed368567d91bf61de7dd667d26a25bc8e4748d094a1a1903c52843cc4c14447106aa145c64c04c42727f22da6a09d1453d66fdcc893a6c83ccdd8f89c
|
7
|
+
data.tar.gz: 8bded0314c15c49015b8af98f73cc519224e3cf4f7badfabeefe04685155a90afc166f17dae9f637d6fb551ea350afd78346f28c68043e752ac017921c10d40e
|
data/CHANGELOG.md
CHANGED
@@ -2,30 +2,22 @@ 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
|
7
5
|
def field(attribute, options = {})
|
8
6
|
@form_options = options
|
9
|
-
|
10
|
-
# extract the object type from the attribute
|
11
7
|
object_type = object_type_for_attribute(attribute)
|
12
8
|
|
13
|
-
# set the input type depending on the attribute type
|
14
9
|
input_type = case object_type
|
15
10
|
when :date then :string
|
16
11
|
when :integer then :string
|
17
12
|
else object_type
|
18
13
|
end
|
19
14
|
|
20
|
-
# if as: :input_type is set, use it to set input type
|
21
15
|
override_input_type = if options[:as]
|
22
16
|
options[:as]
|
23
|
-
# for collections, use a Select
|
24
17
|
elsif options[:collection]
|
25
18
|
:select
|
26
19
|
end
|
27
20
|
|
28
|
-
# return result of [input_type]_input method
|
29
21
|
send("#{override_input_type || input_type}_input", attribute, options)
|
30
22
|
end
|
31
23
|
|
@@ -45,9 +37,11 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
45
37
|
@object.type_for_attribute(attribute.to_s).try(:type)
|
46
38
|
# else if @object matches a column
|
47
39
|
elsif @object.respond_to?(:column_for_attribute) && @object.has_attribute?(attribute)
|
40
|
+
# return column type
|
48
41
|
@object.column_for_attribute(attribute).try(:type)
|
49
42
|
end
|
50
43
|
|
44
|
+
# default to string
|
51
45
|
result || :string
|
52
46
|
end
|
53
47
|
|
@@ -57,7 +51,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
57
51
|
field_block(attribute, options) do
|
58
52
|
safe_join [
|
59
53
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
60
|
-
string_field(attribute, merge_input_options({class: "
|
54
|
+
string_field(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options)),
|
61
55
|
]
|
62
56
|
end
|
63
57
|
end
|
@@ -66,23 +60,30 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
66
60
|
field_block(attribute, options) do
|
67
61
|
safe_join [
|
68
62
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
69
|
-
text_area(attribute, merge_input_options({class: "
|
63
|
+
text_area(attribute, merge_input_options({class: "#{"is-invalid" if has_error?(attribute)}"}, options)),
|
70
64
|
]
|
71
65
|
end
|
72
66
|
end
|
73
67
|
|
74
68
|
def boolean_input(attribute, options = {})
|
75
|
-
raise 'fuck you piece of shit'
|
76
69
|
field_block(attribute, options) do
|
77
70
|
tag.div(class: "checkbox-field") do
|
78
71
|
safe_join [
|
72
|
+
check_box(attribute, merge_input_options({class: "checkbox-input"}, options)),
|
79
73
|
label(attribute, options[:label], class: "checkbox-label"),
|
80
|
-
check_box(attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
81
74
|
]
|
82
75
|
end
|
83
76
|
end
|
84
77
|
end
|
85
78
|
|
79
|
+
def currency_input(attribute, options = {})
|
80
|
+
field_block(attribute, options) do
|
81
|
+
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)}", precision: 2}, options))
|
83
|
+
]
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
86
87
|
def collection_input(attribute, options, &block)
|
87
88
|
field_block(attribute, options) do
|
88
89
|
safe_join [
|
@@ -94,16 +95,14 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
94
95
|
|
95
96
|
def select_input(attribute, options = {})
|
96
97
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
text_method = options[:text_method] || :name
|
101
|
-
input_options = options[:input_html] || {}
|
98
|
+
value_method = options[:value_method] || :to_s
|
99
|
+
text_method = options[:text_method] || :to_s
|
100
|
+
input_options = options || {}
|
102
101
|
|
103
102
|
multiple = input_options[:multiple]
|
104
103
|
|
105
104
|
collection_input(attribute, options) do
|
106
|
-
collection_select(attribute, options[:collection], value_method, text_method, options, merge_input_options({class: "#{"custom-select" unless multiple}
|
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))
|
107
106
|
end
|
108
107
|
end
|
109
108
|
|
@@ -111,7 +110,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
111
110
|
|
112
111
|
# We probably need to go back later and adjust this for more customization
|
113
112
|
collection_input(attribute, options) do
|
114
|
-
grouped_collection_select(attribute, options[:collection], :last, :first, :to_s, :to_s, options, merge_input_options({class: "custom-select
|
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))
|
115
114
|
end
|
116
115
|
end
|
117
116
|
|
@@ -177,7 +176,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
177
176
|
end
|
178
177
|
|
179
178
|
def field_block(attribute, options = {}, &block)
|
180
|
-
tag.div class: "field #{attribute}"
|
179
|
+
tag.div class: "field #{attribute}" do
|
181
180
|
safe_join [
|
182
181
|
block.call,
|
183
182
|
hint_text(options[:hint]),
|
@@ -198,7 +197,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
198
197
|
|
199
198
|
def error_text(attribute)
|
200
199
|
if has_error? attribute
|
201
|
-
tag.div @object.errors[
|
200
|
+
tag.div @object.errors[method].join("<br />").html_safe, class: "form-errors"
|
202
201
|
end
|
203
202
|
end
|
204
203
|
|
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.12
|
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-
|
11
|
+
date: 2024-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|