pxs-forms 0.1.2 → 0.1.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/pxs/forms/model_form_builder.rb +11 -5
- data/lib/pxs/forms/version.rb +1 -1
- data/lib/pxs/forms.rb +15 -0
- 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: a83bd63e124bd07ae7662b309bdaf33aab9c5ec06a0b1e761386900c6e6dc37b
|
4
|
+
data.tar.gz: 311e8798f78838ede6e5c4d374cd92c1a073e85b72a1827aa770ef5d2f97a96e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 962d7d9623091547fa863ddafaaf73cfa3007ce81abf29c0233987a5bda35c23eb1d79daaf6e54d7472feeeef45ec12e479cc0ffc3a926c80235747980aca5db
|
7
|
+
data.tar.gz: 85ac9829f5dc636e7467ff277af68cda8b0aa386e4098775c4619ff98a41130c0f314b1f31d8bb3cca6fdd87e707c332b2e64ae4732c442f0d806982f04003bf
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
## Unofficial Release
|
4
4
|
|
5
|
+
## [0.1.4] - 2025-04-01
|
6
|
+
|
7
|
+
- Change error file
|
8
|
+
- Add configuration file
|
9
|
+
|
10
|
+
## [0.1.3] - 2025-03-19
|
11
|
+
|
12
|
+
- Fix values not being automatically set for string, text, boolean fields
|
13
|
+
|
5
14
|
## [0.1.2] - 2025-03-09
|
6
15
|
|
7
16
|
- Fix Multiple Selects not selecting the correct values
|
@@ -188,7 +188,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
188
188
|
|
189
189
|
safe_join [
|
190
190
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
191
|
-
@template.text_field(base_input_name, attribute, merge_input_options({class: "
|
191
|
+
@template.text_field(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
192
192
|
]
|
193
193
|
end
|
194
194
|
end
|
@@ -196,7 +196,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
196
196
|
def datetime_input(attribute, options, &block)
|
197
197
|
field_block(attribute, options) do
|
198
198
|
safe_join [
|
199
|
-
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: "
|
199
|
+
(field_label(attribute, options[:label]) unless options[:label] == false), datetime_field(attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil}, objectify_options(options[:input_html] || {}))),
|
200
200
|
]
|
201
201
|
end
|
202
202
|
end
|
@@ -205,7 +205,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
205
205
|
field_block(attribute, options) do
|
206
206
|
safe_join [
|
207
207
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
208
|
-
@template.text_area(base_input_name, attribute, merge_input_options({class: "
|
208
|
+
@template.text_area(base_input_name, attribute, merge_input_options({class: has_error?(attribute) ? "is-invalid" : nil, value: object[attribute]}, objectify_options(options[:input_html] || {}))),
|
209
209
|
]
|
210
210
|
end
|
211
211
|
end
|
@@ -214,7 +214,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
214
214
|
field_block(attribute, options) do
|
215
215
|
tag.div(class: "checkbox-field") do
|
216
216
|
safe_join [
|
217
|
-
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, options[:input_html])),
|
217
|
+
@template.check_box(base_input_name, attribute, merge_input_options({class: "checkbox-input"}, objectify_options(options[:input_html] || {}))),
|
218
218
|
@template.label(base_input_name, attribute, options[:label], class: "checkbox-label"),
|
219
219
|
]
|
220
220
|
end
|
@@ -344,7 +344,13 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
344
344
|
|
345
345
|
def error_text(attribute)
|
346
346
|
if has_error? attribute
|
347
|
-
tag.div
|
347
|
+
tag.div class: "field__errors" do
|
348
|
+
tag.ul do
|
349
|
+
safe_join @object.errors[attribute.to_sym].map { |message|
|
350
|
+
tag.li ("#{attribute.to_s.humanize}")
|
351
|
+
}
|
352
|
+
end
|
353
|
+
end
|
348
354
|
end
|
349
355
|
end
|
350
356
|
|
data/lib/pxs/forms/version.rb
CHANGED
data/lib/pxs/forms.rb
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require_relative "forms/configuration"
|
3
4
|
require_relative "forms/version"
|
4
5
|
require_relative "forms/links_helper"
|
5
6
|
require_relative "forms/models_helper"
|
6
7
|
require_relative "forms/model_form_builder"
|
8
|
+
|
9
|
+
module Pxs
|
10
|
+
module Forms
|
11
|
+
class << self
|
12
|
+
attr_accessor :configuration
|
13
|
+
|
14
|
+
# Expose the configuration
|
15
|
+
def configure
|
16
|
+
self.configuration ||= Configuration.new
|
17
|
+
yield configuration if block_given?
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
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.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Poubelle
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|