asbru 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45ab6b9c6737f74c9bc7b395f1bd7df468feb923ccdc07b09f51ddd9d39c90fd
4
- data.tar.gz: ef4da4d80683a0bfb4a24701ce22d4f2bb231f2c6b8f530e048cc3bfa372118a
3
+ metadata.gz: 392e033f6644c63cc44f180b0e6d5ad6544db1c1045a7ed6f214e58053d49e84
4
+ data.tar.gz: 36579ffc30c7b237a3d4610089fe68db7b530b13e1da8e67f0ff785ed12450ab
5
5
  SHA512:
6
- metadata.gz: c924577583ce3eeb2734aa77d90c13de7a3866b7a0626f737c7015151cca29c05d307c131bf3c624092d1232257caa9db8adaa3832eed5f03d8fcf1aa697d960
7
- data.tar.gz: f600444f70190663de4c021da4bc0f353aec551be1b151cbfab95754c0bf32d1d12b273ab5a886c5238006d7d00a52b2081fd97a701f44903a01065c0944cd54
6
+ metadata.gz: 85318b00ed09b9e5de6c81526c1d3782a6f0a9f9f6d1028d17c02a1ca0e2abe83409be931dc509abc144a7f11f4f4706dcadc1f091c6d27c12e4fcd9c3eb4d7d
7
+ data.tar.gz: e5e5a20151b86106c7b021f80ad5b5a2c4f100620ae098c5f5665f6b4d324d07032e692c3f611322585762084716bb190cf74b9657ef1c699efa864a9abf46ad
@@ -45,20 +45,12 @@ module Asbru
45
45
  end
46
46
  end
47
47
 
48
- def tag_name_for(method, multiple = false)
49
- name = ActionView::Helpers::Tags::TextField.new(object_name,
50
- method, {})
51
- .send(:tag_name)
52
- name += '[]' if multiple
53
- name
54
- end
55
-
56
48
  def render_form_element(attribute, options)
57
49
  new_options = options.reverse_merge(
58
50
  {
59
51
  name: tag_name_for(attribute),
60
52
  errors: errors(attribute),
61
- errorIcon: error_icon
53
+ errorIcon: error_icon,
62
54
  }
63
55
  )
64
56
 
@@ -122,12 +114,77 @@ module Asbru
122
114
  end
123
115
  end
124
116
 
117
+ # def submit(attribute = nil, options = {})
118
+ # render_form_element attribute,
119
+ # options.reverse_merge(text: 'Submit', type: 'submit')
120
+ # end
121
+
122
+ # def date_field(attribute = nil, options = {})
123
+ # render_form_element attribute,
124
+ # options.reverse_merge(type: 'datepicker')
125
+ # end
126
+
127
+ # def password_field(attribute = nil, options = {})
128
+ # render_form_element attribute,
129
+ # options.reverse_merge(type: 'password')
130
+ # end
131
+
132
+ # def text_area(attribute = nil, options = {})
133
+ # render_form_element attribute,
134
+ # options.reverse_merge(type: 'textarea')
135
+ # end
136
+
137
+ # def email_field(attribute = nil, options = {})
138
+ # render_form_element attribute,
139
+ # options.reverse_merge(type: 'email')
140
+ # end
141
+
142
+ # def check_box(attribute = nil, options = {})
143
+ # render_form_element attribute,
144
+ # options.reverse_merge(type: 'check_box')
145
+ # end
146
+
147
+ # def text_field(attribute = nil, options = {})
148
+ # render_form_element attribute, options
149
+ # end
150
+
151
+ # def telephone_field
152
+ # render_form_element attribute,
153
+ # options.reverse_merge(type: 'tel')
154
+ # end
155
+
125
156
  BASIC_FORM_FIELDS.each do |item|
126
157
  define_method item.keys.first do |attribute = nil, options = {}|
127
158
  render_form_element(attribute, options.reverse_merge(item.values.first))
128
159
  end
129
160
  end
130
161
 
162
+ def file_field(attribute = nil, options = {})
163
+ options = { name: tag_name_for(attribute),
164
+ errors: errors(attribute),
165
+ errorIcon: error_icon,
166
+ type: 'file',
167
+ **options
168
+ }
169
+ if @object.present? && attribute.present?
170
+ options[:label] ||= I18n.t(attribute,
171
+ scope: "activerecord.attributes.#{@object.class.name.downcase}")
172
+
173
+ attachment = @object.send(attribute)
174
+ if attachment.present?
175
+ options['incommingFile'] = {
176
+ name: attachment.filename,
177
+ size: attachment.send('byte_size'),
178
+ type: attachment.content_type
179
+ }
180
+ end
181
+ end
182
+
183
+ Asbru::Components::Savage.send "#{Asbru.config.form_builder_prefix}_element",
184
+ **options
185
+ end
186
+
187
+
131
188
  def collection_radio_buttons(attribute,
132
189
  collection,
133
190
  value_method,
@@ -217,5 +274,13 @@ module Asbru
217
274
  def error_icon
218
275
  Asbru.config.default_form_error_icon
219
276
  end
277
+
278
+ def tag_name_for(method, multiple = false)
279
+ name = ActionView::Helpers::Tags::TextField.new(object_name,
280
+ method, {})
281
+ .send(:tag_name)
282
+ name += '[]' if multiple
283
+ name
284
+ end
220
285
  end
221
286
  end
data/lib/asbru/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Asbru
2
- VERSION = '0.0.11'
2
+ VERSION = '0.0.12'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asbru
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stev-0
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-14 00:00:00.000000000 Z
11
+ date: 2022-06-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails