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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 78dfbf48f4433764cbda0d245568d7b8b7bbdfb4336e1b2a5ca66e4b8ab5ed88
4
- data.tar.gz: 5d2c6b57d885e06f0dc61914ee900d32b0923e3e882c43da03126e6066deab63
3
+ metadata.gz: 91a2c544708fe08e5a017f8edee131907b84a1744000b4941e8ada68533b0142
4
+ data.tar.gz: 5f81663eb39dab1393b33716338cff2338141deef033b500d150f9b186205fc8
5
5
  SHA512:
6
- metadata.gz: eab3a2ad0db3e9304743bab95685546cb29c41770545c6d0c69e6da6fbc4953997888736da03956366f5e5e157740856596e29783dcd93ab4f50db5716bdca4d
7
- data.tar.gz: f301fa6e25eee10066027dfbf7ee72d098844e5ba28aaab205d37cb1f78b14f3c78d7e953f793e60c6b99fca4324e5d76e98f83647eef913b99e2d61145eb1e8
6
+ metadata.gz: 2ddd794ed368567d91bf61de7dd667d26a25bc8e4748d094a1a1903c52843cc4c14447106aa145c64c04c42727f22da6a09d1453d66fdcc893a6c83ccdd8f89c
7
+ data.tar.gz: 8bded0314c15c49015b8af98f73cc519224e3cf4f7badfabeefe04685155a90afc166f17dae9f637d6fb551ea350afd78346f28c68043e752ac017921c10d40e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
- ## [0.1.0] - 2024-03-20
3
+ ## [0.0.1] - 2024-03-20
4
4
 
5
- - Initial release
5
+ - Initial setup
6
+
7
+ ## [0.0.11] - 2024-04-19
8
+
9
+ - Added currency field
@@ -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: "form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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: "form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html])),
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
- # default value method to :id
98
- value_method = options[:value_method] || :id
99
- # default text method to :name
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} form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
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 form-control #{"is-invalid" if has_error?(attribute)}"}, options[:input_html]))
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}", id: options[:field_id] do
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[attribute].join("<br />").html_safe, class: "form-errors"
200
+ tag.div @object.errors[method].join("<br />").html_safe, class: "form-errors"
202
201
  end
203
202
  end
204
203
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Pxs
4
4
  module Forms
5
- VERSION = "0.0.9"
5
+ VERSION = "0.0.12"
6
6
  end
7
7
  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.0.9
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-12 00:00:00.000000000 Z
11
+ date: 2024-04-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: