pxs-forms 0.0.4 → 0.0.6
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e83e2d9a0088755ab0b519b2495476327ad96af31addb008a8f96c82890722c
|
4
|
+
data.tar.gz: 4fd9cc083e77c243552b82ec2df6753a1fe1e05b3ab771d167a7b9efdf9c49b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b0b7570c5fccd9bfa43aa5181edb65cd128340af8b9231e953cdb07065eb19b66fa43a98cbc55f2fe3bc57408f0fd27a3ed4c9211cc0936ec87e04ec44cdd20
|
7
|
+
data.tar.gz: '009b5107d4405b6cde9cb2910ade4c47a2f2afce001409025f95479a6df5190db366ec8a3042255e6d6bfa66d23d653bc2f4b99bd568e05d3ab3965fae3a6f04'
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Pxs
|
2
2
|
module Forms
|
3
|
-
module
|
3
|
+
module LinksHelper
|
4
4
|
def turbo_link_button(text, target, method = :get)
|
5
5
|
link_to text, target, class: "button", data: { turbo_stream: true, turbo_method: method }
|
6
6
|
end
|
@@ -12,4 +12,4 @@ module Pxs
|
|
12
12
|
end
|
13
13
|
end
|
14
14
|
|
15
|
-
ActionView::Base.send :include, Pxs::Forms::
|
15
|
+
ActionView::Base.send :include, Pxs::Forms::LinksHelper
|
@@ -5,11 +5,14 @@ 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
|
8
10
|
@form_options = options
|
9
11
|
|
10
12
|
# extract the object type from the attribute
|
11
13
|
object_type = object_type_for_attribute(attribute)
|
12
14
|
|
15
|
+
puts object_type.inspect
|
13
16
|
# set the input type depending on the attribute type
|
14
17
|
input_type = case object_type
|
15
18
|
when :date then :string
|
@@ -17,6 +20,8 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
17
20
|
else object_type
|
18
21
|
end
|
19
22
|
|
23
|
+
puts input_type.inspect
|
24
|
+
|
20
25
|
# if as: :input_type is set, use it to set input type
|
21
26
|
override_input_type = if options[:as]
|
22
27
|
options[:as]
|
@@ -25,6 +30,8 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
25
30
|
:select
|
26
31
|
end
|
27
32
|
|
33
|
+
puts override_input_type.inspect
|
34
|
+
|
28
35
|
# return result of [input_type]_input method
|
29
36
|
send("#{override_input_type || input_type}_input", attribute, options)
|
30
37
|
end
|
@@ -62,7 +69,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
62
69
|
end
|
63
70
|
end
|
64
71
|
|
65
|
-
def text_input(
|
72
|
+
def text_input(attribute, options = {})
|
66
73
|
field_block(attribute, options) do
|
67
74
|
safe_join [
|
68
75
|
(field_label(attribute, options[:label]) unless options[:label] == false),
|
@@ -82,10 +89,10 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
82
89
|
end
|
83
90
|
end
|
84
91
|
|
85
|
-
def collection_input(
|
86
|
-
field_block(
|
92
|
+
def collection_input(attribute, options, &block)
|
93
|
+
field_block(attribute, options) do tem
|
87
94
|
safe_join [
|
88
|
-
label(
|
95
|
+
label(attribute, options[:label]),
|
89
96
|
block.call,
|
90
97
|
]
|
91
98
|
end
|
@@ -197,7 +204,7 @@ class ModelFormBuilder < ActionView::Helpers::FormBuilder
|
|
197
204
|
|
198
205
|
def error_text(attribute)
|
199
206
|
if has_error? attribute
|
200
|
-
tag.div @object.errors[
|
207
|
+
tag.div @object.errors[attribute].join("<br />").html_safe, class: "form-errors"
|
201
208
|
end
|
202
209
|
end
|
203
210
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Pxs
|
2
2
|
module Forms
|
3
|
-
module
|
3
|
+
module ModelsHelper
|
4
4
|
# base_path: the model's CRUD base path as an URL string, like the result of article_path(:id)
|
5
5
|
def model_edit_delete_actions(base_path)
|
6
6
|
[
|
@@ -53,4 +53,4 @@ module Pxs
|
|
53
53
|
end
|
54
54
|
end
|
55
55
|
|
56
|
-
ActionView::Base.send :include, Pxs::Forms::
|
56
|
+
ActionView::Base.send :include, Pxs::Forms::ModelsHelper
|
data/lib/pxs/forms/version.rb
CHANGED
data/lib/pxs/forms.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require_relative "forms/version"
|
4
|
-
require_relative "forms/
|
5
|
-
require_relative "forms/
|
4
|
+
require_relative "forms/links_helper"
|
5
|
+
require_relative "forms/models_helper"
|
6
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.
|
4
|
+
version: 0.0.6
|
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-
|
11
|
+
date: 2024-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|
@@ -24,9 +24,9 @@ files:
|
|
24
24
|
- README.md
|
25
25
|
- Rakefile
|
26
26
|
- lib/pxs/forms.rb
|
27
|
-
- lib/pxs/forms/
|
27
|
+
- lib/pxs/forms/links_helper.rb
|
28
28
|
- lib/pxs/forms/model_form_builder.rb
|
29
|
-
- lib/pxs/forms/
|
29
|
+
- lib/pxs/forms/models_helper.rb
|
30
30
|
- lib/pxs/forms/version.rb
|
31
31
|
- pxs-forms.gemspec
|
32
32
|
- sig/pxs/forms.rbs
|