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: b78b1ae5381a69dd4f9b75d4c90878f8eaadc09c3a336c5ded134d92e529ab6b
4
- data.tar.gz: 8325584e7c5158a52ffb7f5f8618b2001b897e83f15c41731b55332ac14292ae
3
+ metadata.gz: 6e83e2d9a0088755ab0b519b2495476327ad96af31addb008a8f96c82890722c
4
+ data.tar.gz: 4fd9cc083e77c243552b82ec2df6753a1fe1e05b3ab771d167a7b9efdf9c49b4
5
5
  SHA512:
6
- metadata.gz: f6de19d9021c51c308c53640a1eea5570da58149f0353d552b26ca9b0dab9657ef6a1acab747a98dfcc13ad84036c509636ff43805a70a71ba240e3e70b96e41
7
- data.tar.gz: 5c9cefb22209e754a9cc32141bc6b4308c95f48a3cd937952e7ddfc2cd75e50788905e79823c72d9d33bea13e300ee554714af313a696d7af4c4291a8452c9d9
6
+ metadata.gz: 4b0b7570c5fccd9bfa43aa5181edb65cd128340af8b9231e953cdb07065eb19b66fa43a98cbc55f2fe3bc57408f0fd27a3ed4c9211cc0936ec87e04ec44cdd20
7
+ data.tar.gz: '009b5107d4405b6cde9cb2910ade4c47a2f2afce001409025f95479a6df5190db366ec8a3042255e6d6bfa66d23d653bc2f4b99bd568e05d3ab3965fae3a6f04'
@@ -1,6 +1,6 @@
1
1
  module Pxs
2
2
  module Forms
3
- module LinkHelpers
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::LinkHelpers
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(attriubte, options = {})
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(attriubte, options, &block)
86
- field_block(method, options) do
92
+ def collection_input(attribute, options, &block)
93
+ field_block(attribute, options) do tem
87
94
  safe_join [
88
- label(method, options[: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[method].join("<br />").html_safe, class: "form-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 ModelHelpers
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::ModelHelpers
56
+ ActionView::Base.send :include, Pxs::Forms::ModelsHelper
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.4"
5
+ VERSION = "0.0.6"
6
6
  end
7
7
  end
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/link_helpers"
5
- require_relative "forms/model_helpers"
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
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-24 00:00:00.000000000 Z
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/link_helpers.rb
27
+ - lib/pxs/forms/links_helper.rb
28
28
  - lib/pxs/forms/model_form_builder.rb
29
- - lib/pxs/forms/model_helpers.rb
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