actionview 4.2.11.3 → 5.2.7.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionview might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +115 -245
- data/MIT-LICENSE +1 -1
- data/README.rdoc +5 -6
- data/lib/action_view/base.rb +38 -28
- data/lib/action_view/buffers.rb +3 -1
- data/lib/action_view/context.rb +3 -3
- data/lib/action_view/dependency_tracker.rb +54 -20
- data/lib/action_view/digestor.rb +94 -83
- data/lib/action_view/flows.rb +11 -11
- data/lib/action_view/gem_version.rb +5 -3
- data/lib/action_view/helpers/active_model_helper.rb +17 -11
- data/lib/action_view/helpers/asset_tag_helper.rb +244 -62
- data/lib/action_view/helpers/asset_url_helper.rb +170 -67
- data/lib/action_view/helpers/atom_feed_helper.rb +19 -17
- data/lib/action_view/helpers/cache_helper.rb +105 -42
- data/lib/action_view/helpers/capture_helper.rb +16 -13
- data/lib/action_view/helpers/controller_helper.rb +15 -4
- data/lib/action_view/helpers/csp_helper.rb +24 -0
- data/lib/action_view/helpers/csrf_helper.rb +7 -5
- data/lib/action_view/helpers/date_helper.rb +170 -112
- data/lib/action_view/helpers/debug_helper.rb +7 -6
- data/lib/action_view/helpers/form_helper.rb +521 -127
- data/lib/action_view/helpers/form_options_helper.rb +109 -63
- data/lib/action_view/helpers/form_tag_helper.rb +110 -67
- data/lib/action_view/helpers/javascript_helper.rb +27 -12
- data/lib/action_view/helpers/number_helper.rb +77 -58
- data/lib/action_view/helpers/output_safety_helper.rb +36 -4
- data/lib/action_view/helpers/record_tag_helper.rb +14 -99
- data/lib/action_view/helpers/rendering_helper.rb +6 -5
- data/lib/action_view/helpers/sanitize_helper.rb +20 -15
- data/lib/action_view/helpers/tag_helper.rb +229 -73
- data/lib/action_view/helpers/tags/base.rb +134 -97
- data/lib/action_view/helpers/tags/check_box.rb +20 -18
- data/lib/action_view/helpers/tags/checkable.rb +4 -2
- data/lib/action_view/helpers/tags/collection_check_boxes.rb +12 -33
- data/lib/action_view/helpers/tags/collection_helpers.rb +70 -36
- data/lib/action_view/helpers/tags/collection_radio_buttons.rb +6 -11
- data/lib/action_view/helpers/tags/collection_select.rb +4 -2
- data/lib/action_view/helpers/tags/color_field.rb +3 -1
- data/lib/action_view/helpers/tags/date_field.rb +2 -0
- data/lib/action_view/helpers/tags/date_select.rb +38 -36
- data/lib/action_view/helpers/tags/datetime_field.rb +4 -2
- data/lib/action_view/helpers/tags/datetime_local_field.rb +2 -0
- data/lib/action_view/helpers/tags/datetime_select.rb +2 -0
- data/lib/action_view/helpers/tags/email_field.rb +2 -0
- data/lib/action_view/helpers/tags/file_field.rb +2 -0
- data/lib/action_view/helpers/tags/grouped_collection_select.rb +4 -2
- data/lib/action_view/helpers/tags/hidden_field.rb +2 -0
- data/lib/action_view/helpers/tags/label.rb +3 -1
- data/lib/action_view/helpers/tags/month_field.rb +2 -0
- data/lib/action_view/helpers/tags/number_field.rb +2 -0
- data/lib/action_view/helpers/tags/password_field.rb +3 -1
- data/lib/action_view/helpers/tags/placeholderable.rb +3 -1
- data/lib/action_view/helpers/tags/radio_button.rb +7 -5
- data/lib/action_view/helpers/tags/range_field.rb +2 -0
- data/lib/action_view/helpers/tags/search_field.rb +14 -9
- data/lib/action_view/helpers/tags/select.rb +11 -9
- data/lib/action_view/helpers/tags/tel_field.rb +2 -0
- data/lib/action_view/helpers/tags/text_area.rb +4 -2
- data/lib/action_view/helpers/tags/text_field.rb +8 -7
- data/lib/action_view/helpers/tags/time_field.rb +2 -0
- data/lib/action_view/helpers/tags/time_select.rb +2 -0
- data/lib/action_view/helpers/tags/time_zone_select.rb +3 -1
- data/lib/action_view/helpers/tags/translator.rb +17 -13
- data/lib/action_view/helpers/tags/url_field.rb +2 -0
- data/lib/action_view/helpers/tags/week_field.rb +2 -0
- data/lib/action_view/helpers/tags.rb +3 -1
- data/lib/action_view/helpers/text_helper.rb +55 -36
- data/lib/action_view/helpers/translation_helper.rb +74 -32
- data/lib/action_view/helpers/url_helper.rb +159 -104
- data/lib/action_view/helpers.rb +5 -1
- data/lib/action_view/layouts.rb +65 -58
- data/lib/action_view/log_subscriber.rb +60 -8
- data/lib/action_view/lookup_context.rb +80 -65
- data/lib/action_view/model_naming.rb +3 -1
- data/lib/action_view/path_set.rb +30 -19
- data/lib/action_view/railtie.rb +39 -6
- data/lib/action_view/record_identifier.rb +53 -25
- data/lib/action_view/renderer/abstract_renderer.rb +21 -15
- data/lib/action_view/renderer/partial_renderer/collection_caching.rb +57 -0
- data/lib/action_view/renderer/partial_renderer.rb +218 -214
- data/lib/action_view/renderer/renderer.rb +8 -6
- data/lib/action_view/renderer/streaming_template_renderer.rb +50 -48
- data/lib/action_view/renderer/template_renderer.rb +67 -66
- data/lib/action_view/rendering.rb +19 -14
- data/lib/action_view/routing_url_for.rb +27 -17
- data/lib/action_view/tasks/cache_digests.rake +25 -0
- data/lib/action_view/template/error.rb +16 -16
- data/lib/action_view/template/handlers/builder.rb +10 -11
- data/lib/action_view/template/handlers/erb/erubi.rb +83 -0
- data/lib/action_view/template/handlers/erb.rb +9 -80
- data/lib/action_view/template/handlers/html.rb +11 -0
- data/lib/action_view/template/handlers/raw.rb +3 -3
- data/lib/action_view/template/handlers.rb +11 -7
- data/lib/action_view/template/html.rb +5 -5
- data/lib/action_view/template/resolver.rb +140 -115
- data/lib/action_view/template/text.rb +8 -9
- data/lib/action_view/template/types.rb +18 -18
- data/lib/action_view/template.rb +54 -33
- data/lib/action_view/test_case.rb +50 -29
- data/lib/action_view/testing/resolvers.rb +31 -31
- data/lib/action_view/version.rb +3 -1
- data/lib/action_view/view_paths.rb +28 -34
- data/lib/action_view.rb +8 -7
- data/lib/assets/compiled/rails-ujs.js +720 -0
- metadata +28 -27
- data/lib/action_view/tasks/dependencies.rake +0 -23
@@ -1,38 +1,237 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_support/core_ext/string/output_safety"
|
4
|
+
require "set"
|
3
5
|
|
4
6
|
module ActionView
|
5
7
|
# = Action View Tag Helpers
|
6
8
|
module Helpers #:nodoc:
|
7
|
-
# Provides methods to generate HTML tags programmatically
|
8
|
-
#
|
9
|
+
# Provides methods to generate HTML tags programmatically both as a modern
|
10
|
+
# HTML5 compliant builder style and legacy XHTML compliant tags.
|
9
11
|
module TagHelper
|
10
12
|
extend ActiveSupport::Concern
|
11
13
|
include CaptureHelper
|
12
14
|
include OutputSafetyHelper
|
13
15
|
|
14
|
-
BOOLEAN_ATTRIBUTES = %w(
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
16
|
+
BOOLEAN_ATTRIBUTES = %w(allowfullscreen async autofocus autoplay checked
|
17
|
+
compact controls declare default defaultchecked
|
18
|
+
defaultmuted defaultselected defer disabled
|
19
|
+
enabled formnovalidate hidden indeterminate inert
|
20
|
+
ismap itemscope loop multiple muted nohref
|
21
|
+
noresize noshade novalidate nowrap open
|
22
|
+
pauseonexit readonly required reversed scoped
|
23
|
+
seamless selected sortable truespeed typemustmatch
|
24
|
+
visible).to_set
|
25
|
+
|
26
|
+
BOOLEAN_ATTRIBUTES.merge(BOOLEAN_ATTRIBUTES.map(&:to_sym))
|
27
|
+
|
28
|
+
TAG_PREFIXES = ["aria", "data", :aria, :data].to_set
|
29
|
+
|
30
|
+
PRE_CONTENT_STRINGS = Hash.new { "" }
|
31
|
+
PRE_CONTENT_STRINGS[:textarea] = "\n"
|
32
|
+
PRE_CONTENT_STRINGS["textarea"] = "\n"
|
33
|
+
|
34
|
+
class TagBuilder #:nodoc:
|
35
|
+
include CaptureHelper
|
36
|
+
include OutputSafetyHelper
|
37
|
+
|
38
|
+
VOID_ELEMENTS = %i(area base br col embed hr img input keygen link meta param source track wbr).to_set
|
39
|
+
|
40
|
+
def initialize(view_context)
|
41
|
+
@view_context = view_context
|
42
|
+
end
|
43
|
+
|
44
|
+
def tag_string(name, content = nil, **options, &block)
|
45
|
+
escape = handle_deprecated_escape_options(options)
|
46
|
+
content = @view_context.capture(self, &block) if block_given?
|
47
|
+
|
48
|
+
if VOID_ELEMENTS.include?(name) && content.nil?
|
49
|
+
"<#{name.to_s.dasherize}#{tag_options(options, escape)}>".html_safe
|
50
|
+
else
|
51
|
+
content_tag_string(name.to_s.dasherize, content || "", options, escape)
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def content_tag_string(name, content, options, escape = true)
|
56
|
+
tag_options = tag_options(options, escape) if options
|
57
|
+
|
58
|
+
if escape
|
59
|
+
name = ERB::Util.xml_name_escape(name)
|
60
|
+
content = ERB::Util.unwrapped_html_escape(content)
|
61
|
+
end
|
20
62
|
|
21
|
-
|
63
|
+
"<#{name}#{tag_options}>#{PRE_CONTENT_STRINGS[name]}#{content}</#{name}>".html_safe
|
64
|
+
end
|
22
65
|
|
23
|
-
|
66
|
+
def tag_options(options, escape = true)
|
67
|
+
return if options.blank?
|
68
|
+
output = "".dup
|
69
|
+
sep = " "
|
70
|
+
options.each_pair do |key, value|
|
71
|
+
if TAG_PREFIXES.include?(key) && value.is_a?(Hash)
|
72
|
+
value.each_pair do |k, v|
|
73
|
+
next if v.nil?
|
74
|
+
output << sep
|
75
|
+
output << prefix_tag_option(key, k, v, escape)
|
76
|
+
end
|
77
|
+
elsif BOOLEAN_ATTRIBUTES.include?(key)
|
78
|
+
if value
|
79
|
+
output << sep
|
80
|
+
output << boolean_tag_option(key)
|
81
|
+
end
|
82
|
+
elsif !value.nil?
|
83
|
+
output << sep
|
84
|
+
output << tag_option(key, value, escape)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
output unless output.empty?
|
88
|
+
end
|
24
89
|
|
25
|
-
|
26
|
-
|
27
|
-
|
90
|
+
def boolean_tag_option(key)
|
91
|
+
%(#{key}="#{key}")
|
92
|
+
end
|
28
93
|
|
29
|
-
|
94
|
+
def tag_option(key, value, escape)
|
95
|
+
key = ERB::Util.xml_name_escape(key) if escape
|
96
|
+
|
97
|
+
if value.is_a?(Array)
|
98
|
+
value = escape ? safe_join(value, " ".freeze) : value.join(" ".freeze)
|
99
|
+
else
|
100
|
+
value = escape ? ERB::Util.unwrapped_html_escape(value) : value.to_s
|
101
|
+
end
|
102
|
+
%(#{key}="#{value.gsub('"'.freeze, '"'.freeze)}")
|
103
|
+
end
|
104
|
+
|
105
|
+
private
|
106
|
+
def prefix_tag_option(prefix, key, value, escape)
|
107
|
+
key = "#{prefix}-#{key.to_s.dasherize}"
|
108
|
+
unless value.is_a?(String) || value.is_a?(Symbol) || value.is_a?(BigDecimal)
|
109
|
+
value = value.to_json
|
110
|
+
end
|
111
|
+
tag_option(key, value, escape)
|
112
|
+
end
|
113
|
+
|
114
|
+
def respond_to_missing?(*args)
|
115
|
+
true
|
116
|
+
end
|
117
|
+
|
118
|
+
def handle_deprecated_escape_options(options)
|
119
|
+
# The option :escape_attributes has been merged into the options hash to be
|
120
|
+
# able to warn when it is used, so we need to handle default values here.
|
121
|
+
escape_option_provided = options.has_key?(:escape)
|
122
|
+
escape_attributes_option_provided = options.has_key?(:escape_attributes)
|
123
|
+
|
124
|
+
if escape_attributes_option_provided
|
125
|
+
ActiveSupport::Deprecation.warn(<<~MSG)
|
126
|
+
Use of the option :escape_attributes is deprecated. It currently \
|
127
|
+
escapes both names and values of tags and attributes and it is \
|
128
|
+
equivalent to :escape. If any of them are enabled, the escaping \
|
129
|
+
is fully enabled.
|
130
|
+
MSG
|
131
|
+
end
|
132
|
+
|
133
|
+
return true unless escape_option_provided || escape_attributes_option_provided
|
134
|
+
escape_option = options.delete(:escape)
|
135
|
+
escape_attributes_option = options.delete(:escape_attributes)
|
136
|
+
escape_option || escape_attributes_option
|
137
|
+
end
|
138
|
+
|
139
|
+
def method_missing(called, *args, **options, &block)
|
140
|
+
tag_string(called, *args, **options, &block)
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# Returns an HTML tag.
|
145
|
+
#
|
146
|
+
# === Building HTML tags
|
147
|
+
#
|
148
|
+
# Builds HTML5 compliant tags with a tag proxy. Every tag can be built with:
|
149
|
+
#
|
150
|
+
# tag.<tag name>(optional content, options)
|
151
|
+
#
|
152
|
+
# where tag name can be e.g. br, div, section, article, or any tag really.
|
153
|
+
#
|
154
|
+
# ==== Passing content
|
155
|
+
#
|
156
|
+
# Tags can pass content to embed within it:
|
157
|
+
#
|
158
|
+
# tag.h1 'All titles fit to print' # => <h1>All titles fit to print</h1>
|
159
|
+
#
|
160
|
+
# tag.div tag.p('Hello world!') # => <div><p>Hello world!</p></div>
|
161
|
+
#
|
162
|
+
# Content can also be captured with a block, which is useful in templates:
|
163
|
+
#
|
164
|
+
# <%= tag.p do %>
|
165
|
+
# The next great American novel starts here.
|
166
|
+
# <% end %>
|
167
|
+
# # => <p>The next great American novel starts here.</p>
|
168
|
+
#
|
169
|
+
# ==== Options
|
170
|
+
#
|
171
|
+
# Use symbol keyed options to add attributes to the generated tag.
|
172
|
+
#
|
173
|
+
# tag.section class: %w( kitties puppies )
|
174
|
+
# # => <section class="kitties puppies"></section>
|
175
|
+
#
|
176
|
+
# tag.section id: dom_id(@post)
|
177
|
+
# # => <section id="<generated dom id>"></section>
|
178
|
+
#
|
179
|
+
# Pass +true+ for any attributes that can render with no values, like +disabled+ and +readonly+.
|
180
|
+
#
|
181
|
+
# tag.input type: 'text', disabled: true
|
182
|
+
# # => <input type="text" disabled="disabled">
|
183
|
+
#
|
184
|
+
# HTML5 <tt>data-*</tt> attributes can be set with a single +data+ key
|
185
|
+
# pointing to a hash of sub-attributes.
|
186
|
+
#
|
187
|
+
# To play nicely with JavaScript conventions, sub-attributes are dasherized.
|
188
|
+
#
|
189
|
+
# tag.article data: { user_id: 123 }
|
190
|
+
# # => <article data-user-id="123"></article>
|
191
|
+
#
|
192
|
+
# Thus <tt>data-user-id</tt> can be accessed as <tt>dataset.userId</tt>.
|
193
|
+
#
|
194
|
+
# Data attribute values are encoded to JSON, with the exception of strings, symbols and
|
195
|
+
# BigDecimals.
|
196
|
+
# This may come in handy when using jQuery's HTML5-aware <tt>.data()</tt>
|
197
|
+
# from 1.4.3.
|
198
|
+
#
|
199
|
+
# tag.div data: { city_state: %w( Chicago IL ) }
|
200
|
+
# # => <div data-city-state="["Chicago","IL"]"></div>
|
201
|
+
#
|
202
|
+
# The generated attributes are escaped by default. This can be disabled using
|
203
|
+
# +escape_attributes+.
|
204
|
+
#
|
205
|
+
# tag.img src: 'open & shut.png'
|
206
|
+
# # => <img src="open & shut.png">
|
207
|
+
#
|
208
|
+
# tag.img src: 'open & shut.png', escape_attributes: false
|
209
|
+
# # => <img src="open & shut.png">
|
210
|
+
#
|
211
|
+
# The tag builder respects
|
212
|
+
# {HTML5 void elements}[https://www.w3.org/TR/html5/syntax.html#void-elements]
|
213
|
+
# if no content is passed, and omits closing tags for those elements.
|
214
|
+
#
|
215
|
+
# # A standard element:
|
216
|
+
# tag.div # => <div></div>
|
217
|
+
#
|
218
|
+
# # A void element:
|
219
|
+
# tag.br # => <br>
|
220
|
+
#
|
221
|
+
# === Legacy syntax
|
222
|
+
#
|
223
|
+
# The following format is for legacy syntax support. It will be deprecated in future versions of Rails.
|
224
|
+
#
|
225
|
+
# tag(name, options = nil, open = false, escape = true)
|
226
|
+
#
|
227
|
+
# It returns an empty HTML tag of type +name+ which by default is XHTML
|
30
228
|
# compliant. Set +open+ to true to create an open tag compatible
|
31
229
|
# with HTML 4.0 and below. Add HTML attributes by passing an attributes
|
32
230
|
# hash to +options+. Set +escape+ to false to disable attribute value
|
33
231
|
# escaping.
|
34
232
|
#
|
35
233
|
# ==== Options
|
234
|
+
#
|
36
235
|
# You can use symbols or strings for the attribute names.
|
37
236
|
#
|
38
237
|
# Use +true+ with boolean attributes that can render with no value, like
|
@@ -41,16 +240,8 @@ module ActionView
|
|
41
240
|
# HTML5 <tt>data-*</tt> attributes can be set with a single +data+ key
|
42
241
|
# pointing to a hash of sub-attributes.
|
43
242
|
#
|
44
|
-
# To play nicely with JavaScript conventions sub-attributes are dasherized.
|
45
|
-
# For example, a key +user_id+ would render as <tt>data-user-id</tt> and
|
46
|
-
# thus accessed as <tt>dataset.userId</tt>.
|
47
|
-
#
|
48
|
-
# Values are encoded to JSON, with the exception of strings, symbols and
|
49
|
-
# BigDecimals.
|
50
|
-
# This may come in handy when using jQuery's HTML5-aware <tt>.data()</tt>
|
51
|
-
# from 1.4.3.
|
52
|
-
#
|
53
243
|
# ==== Examples
|
244
|
+
#
|
54
245
|
# tag("br")
|
55
246
|
# # => <br />
|
56
247
|
#
|
@@ -71,8 +262,13 @@ module ActionView
|
|
71
262
|
#
|
72
263
|
# tag("div", data: {name: 'Stephen', city_state: %w(Chicago IL)})
|
73
264
|
# # => <div data-name="Stephen" data-city-state="["Chicago","IL"]" />
|
74
|
-
def tag(name, options = nil, open = false, escape = true)
|
75
|
-
|
265
|
+
def tag(name = nil, options = nil, open = false, escape = true)
|
266
|
+
if name.nil?
|
267
|
+
tag_builder
|
268
|
+
else
|
269
|
+
name = ERB::Util.xml_name_escape(name) if escape
|
270
|
+
"<#{name}#{tag_builder.tag_options(options, escape) if options}#{open ? ">" : " />"}".html_safe
|
271
|
+
end
|
76
272
|
end
|
77
273
|
|
78
274
|
# Returns an HTML block tag of type +name+ surrounding the +content+. Add
|
@@ -80,6 +276,7 @@ module ActionView
|
|
80
276
|
# Instead of passing the content as an argument, you can also use a block
|
81
277
|
# in which case, you pass your +options+ as the second parameter.
|
82
278
|
# Set escape to false to disable attribute value escaping.
|
279
|
+
# Note: this is legacy syntax, see +tag+ method description for details.
|
83
280
|
#
|
84
281
|
# ==== Options
|
85
282
|
# The +options+ hash can be used with attributes with no value like (<tt>disabled</tt> and
|
@@ -103,9 +300,9 @@ module ActionView
|
|
103
300
|
def content_tag(name, content_or_options_with_block = nil, options = nil, escape = true, &block)
|
104
301
|
if block_given?
|
105
302
|
options = content_or_options_with_block if content_or_options_with_block.is_a?(Hash)
|
106
|
-
content_tag_string(name, capture(&block), options, escape)
|
303
|
+
tag_builder.content_tag_string(name, capture(&block), options, escape)
|
107
304
|
else
|
108
|
-
content_tag_string(name, content_or_options_with_block, options, escape)
|
305
|
+
tag_builder.content_tag_string(name, content_or_options_with_block, options, escape)
|
109
306
|
end
|
110
307
|
end
|
111
308
|
|
@@ -123,7 +320,7 @@ module ActionView
|
|
123
320
|
# cdata_section("hello]]>world")
|
124
321
|
# # => <![CDATA[hello]]]]><![CDATA[>world]]>
|
125
322
|
def cdata_section(content)
|
126
|
-
splitted = content.to_s.gsub(/\]\]\>/,
|
323
|
+
splitted = content.to_s.gsub(/\]\]\>/, "]]]]><![CDATA[>")
|
127
324
|
"<![CDATA[#{splitted}]]>".html_safe
|
128
325
|
end
|
129
326
|
|
@@ -139,49 +336,8 @@ module ActionView
|
|
139
336
|
end
|
140
337
|
|
141
338
|
private
|
142
|
-
|
143
|
-
|
144
|
-
tag_options = tag_options(options, escape) if options
|
145
|
-
content = ERB::Util.unwrapped_html_escape(content) if escape
|
146
|
-
"<#{name}#{tag_options}>#{PRE_CONTENT_STRINGS[name.to_sym]}#{content}</#{name}>".html_safe
|
147
|
-
end
|
148
|
-
|
149
|
-
def tag_options(options, escape = true)
|
150
|
-
return if options.blank?
|
151
|
-
attrs = []
|
152
|
-
options.each_pair do |key, value|
|
153
|
-
if TAG_PREFIXES.include?(key) && value.is_a?(Hash)
|
154
|
-
value.each_pair do |k, v|
|
155
|
-
attrs << prefix_tag_option(key, k, v, escape)
|
156
|
-
end
|
157
|
-
elsif BOOLEAN_ATTRIBUTES.include?(key)
|
158
|
-
attrs << boolean_tag_option(key) if value
|
159
|
-
elsif !value.nil?
|
160
|
-
attrs << tag_option(key, value, escape)
|
161
|
-
end
|
162
|
-
end
|
163
|
-
" #{attrs * ' '}" unless attrs.empty?
|
164
|
-
end
|
165
|
-
|
166
|
-
def prefix_tag_option(prefix, key, value, escape)
|
167
|
-
key = "#{prefix}-#{key.to_s.dasherize}"
|
168
|
-
unless value.is_a?(String) || value.is_a?(Symbol) || value.is_a?(BigDecimal)
|
169
|
-
value = value.to_json
|
170
|
-
end
|
171
|
-
tag_option(key, value, escape)
|
172
|
-
end
|
173
|
-
|
174
|
-
def boolean_tag_option(key)
|
175
|
-
%(#{key}="#{key}")
|
176
|
-
end
|
177
|
-
|
178
|
-
def tag_option(key, value, escape)
|
179
|
-
if value.is_a?(Array)
|
180
|
-
value = escape ? safe_join(value, " ") : value.join(" ")
|
181
|
-
else
|
182
|
-
value = escape ? ERB::Util.unwrapped_html_escape(value) : value.to_s
|
183
|
-
end
|
184
|
-
%(#{key}="#{value.gsub('"'.freeze, '"'.freeze)}")
|
339
|
+
def tag_builder
|
340
|
+
@tag_builder ||= TagBuilder.new(self)
|
185
341
|
end
|
186
342
|
end
|
187
343
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActionView
|
2
4
|
module Helpers
|
3
5
|
module Tags # :nodoc:
|
@@ -11,10 +13,19 @@ module ActionView
|
|
11
13
|
@object_name, @method_name = object_name.to_s.dup, method_name.to_s.dup
|
12
14
|
@template_object = template_object
|
13
15
|
|
14
|
-
@object_name.sub!(/\[\]$/,"") || @object_name.sub!(/\[\]\]$/,"]")
|
16
|
+
@object_name.sub!(/\[\]$/, "") || @object_name.sub!(/\[\]\]$/, "]")
|
15
17
|
@object = retrieve_object(options.delete(:object))
|
18
|
+
@skip_default_ids = options.delete(:skip_default_ids)
|
19
|
+
@allow_method_names_outside_object = options.delete(:allow_method_names_outside_object)
|
16
20
|
@options = options
|
17
|
-
|
21
|
+
|
22
|
+
if Regexp.last_match
|
23
|
+
@generate_indexed_names = true
|
24
|
+
@auto_index = retrieve_autoindex(Regexp.last_match.pre_match)
|
25
|
+
else
|
26
|
+
@generate_indexed_names = false
|
27
|
+
@auto_index = nil
|
28
|
+
end
|
18
29
|
end
|
19
30
|
|
20
31
|
# This is what child classes implement.
|
@@ -24,131 +35,157 @@ module ActionView
|
|
24
35
|
|
25
36
|
private
|
26
37
|
|
27
|
-
|
28
|
-
|
29
|
-
|
38
|
+
def value
|
39
|
+
if @allow_method_names_outside_object
|
40
|
+
object.public_send @method_name if object && object.respond_to?(@method_name)
|
41
|
+
else
|
42
|
+
object.public_send @method_name if object
|
43
|
+
end
|
44
|
+
end
|
30
45
|
|
31
|
-
|
32
|
-
|
33
|
-
|
46
|
+
def value_before_type_cast
|
47
|
+
unless object.nil?
|
48
|
+
method_before_type_cast = @method_name + "_before_type_cast"
|
34
49
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
50
|
+
if value_came_from_user? && object.respond_to?(method_before_type_cast)
|
51
|
+
object.public_send(method_before_type_cast)
|
52
|
+
else
|
53
|
+
value
|
54
|
+
end
|
39
55
|
end
|
40
56
|
end
|
41
|
-
end
|
42
57
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
58
|
+
def value_came_from_user?
|
59
|
+
method_name = "#{@method_name}_came_from_user?"
|
60
|
+
!object.respond_to?(method_name) || object.public_send(method_name)
|
61
|
+
end
|
47
62
|
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
63
|
+
def retrieve_object(object)
|
64
|
+
if object
|
65
|
+
object
|
66
|
+
elsif @template_object.instance_variable_defined?("@#{@object_name}")
|
67
|
+
@template_object.instance_variable_get("@#{@object_name}")
|
68
|
+
end
|
69
|
+
rescue NameError
|
70
|
+
# As @object_name may contain the nested syntax (item[subobject]) we need to fallback to nil.
|
71
|
+
nil
|
53
72
|
end
|
54
|
-
rescue NameError
|
55
|
-
# As @object_name may contain the nested syntax (item[subobject]) we need to fallback to nil.
|
56
|
-
nil
|
57
|
-
end
|
58
73
|
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
74
|
+
def retrieve_autoindex(pre_match)
|
75
|
+
object = self.object || @template_object.instance_variable_get("@#{pre_match}")
|
76
|
+
if object && object.respond_to?(:to_param)
|
77
|
+
object.to_param
|
78
|
+
else
|
79
|
+
raise ArgumentError, "object[] naming but object param and @object var don't exist or don't respond to to_param: #{object.inspect}"
|
80
|
+
end
|
65
81
|
end
|
66
|
-
end
|
67
82
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
83
|
+
def add_default_name_and_id_for_value(tag_value, options)
|
84
|
+
if tag_value.nil?
|
85
|
+
add_default_name_and_id(options)
|
86
|
+
else
|
87
|
+
specified_id = options["id"]
|
88
|
+
add_default_name_and_id(options)
|
74
89
|
|
75
|
-
|
76
|
-
|
90
|
+
if specified_id.blank? && options["id"].present?
|
91
|
+
options["id"] += "_#{sanitized_value(tag_value)}"
|
92
|
+
end
|
77
93
|
end
|
78
94
|
end
|
79
|
-
end
|
80
95
|
|
81
|
-
|
82
|
-
|
83
|
-
options["name"]
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
options["id"] = options.fetch("id"){ tag_id }
|
96
|
+
def add_default_name_and_id(options)
|
97
|
+
index = name_and_id_index(options)
|
98
|
+
options["name"] = options.fetch("name") { tag_name(options["multiple"], index) }
|
99
|
+
|
100
|
+
if generate_ids?
|
101
|
+
options["id"] = options.fetch("id") { tag_id(index) }
|
102
|
+
if namespace = options.delete("namespace")
|
103
|
+
options["id"] = options["id"] ? "#{namespace}_#{options['id']}" : namespace
|
104
|
+
end
|
105
|
+
end
|
92
106
|
end
|
93
107
|
|
94
|
-
|
95
|
-
|
108
|
+
def tag_name(multiple = false, index = nil)
|
109
|
+
# a little duplication to construct less strings
|
110
|
+
case
|
111
|
+
when @object_name.empty?
|
112
|
+
"#{sanitized_method_name}#{"[]" if multiple}"
|
113
|
+
when index
|
114
|
+
"#{@object_name}[#{index}][#{sanitized_method_name}]#{"[]" if multiple}"
|
115
|
+
else
|
116
|
+
"#{@object_name}[#{sanitized_method_name}]#{"[]" if multiple}"
|
117
|
+
end
|
118
|
+
end
|
96
119
|
|
97
|
-
|
98
|
-
|
99
|
-
|
120
|
+
def tag_id(index = nil)
|
121
|
+
# a little duplication to construct less strings
|
122
|
+
case
|
123
|
+
when @object_name.empty?
|
124
|
+
sanitized_method_name.dup
|
125
|
+
when index
|
126
|
+
"#{sanitized_object_name}_#{index}_#{sanitized_method_name}"
|
127
|
+
else
|
128
|
+
"#{sanitized_object_name}_#{sanitized_method_name}"
|
129
|
+
end
|
130
|
+
end
|
100
131
|
|
101
|
-
|
102
|
-
|
103
|
-
|
132
|
+
def sanitized_object_name
|
133
|
+
@sanitized_object_name ||= @object_name.gsub(/\]\[|[^-a-zA-Z0-9:.]/, "_").sub(/_$/, "")
|
134
|
+
end
|
104
135
|
|
105
|
-
|
106
|
-
|
107
|
-
|
136
|
+
def sanitized_method_name
|
137
|
+
@sanitized_method_name ||= @method_name.sub(/\?$/, "")
|
138
|
+
end
|
108
139
|
|
109
|
-
|
110
|
-
|
111
|
-
|
140
|
+
def sanitized_value(value)
|
141
|
+
value.to_s.gsub(/\s/, "_").gsub(/[^-[[:word:]]]/, "").mb_chars.downcase.to_s
|
142
|
+
end
|
112
143
|
|
113
|
-
|
114
|
-
|
115
|
-
|
144
|
+
def select_content_tag(option_tags, options, html_options)
|
145
|
+
html_options = html_options.stringify_keys
|
146
|
+
add_default_name_and_id(html_options)
|
116
147
|
|
117
|
-
|
118
|
-
|
119
|
-
|
148
|
+
if placeholder_required?(html_options)
|
149
|
+
raise ArgumentError, "include_blank cannot be false for a required field." if options[:include_blank] == false
|
150
|
+
options[:include_blank] ||= true unless options[:prompt]
|
151
|
+
end
|
120
152
|
|
121
|
-
|
122
|
-
|
123
|
-
end
|
153
|
+
value = options.fetch(:selected) { value() }
|
154
|
+
select = content_tag("select", add_options(option_tags, options, value), html_options)
|
124
155
|
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
156
|
+
if html_options["multiple"] && options.fetch(:include_hidden, true)
|
157
|
+
tag("input", disabled: html_options["disabled"], name: html_options["name"], type: "hidden", value: "") + select
|
158
|
+
else
|
159
|
+
select
|
160
|
+
end
|
161
|
+
end
|
131
162
|
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
select
|
163
|
+
def placeholder_required?(html_options)
|
164
|
+
# See https://html.spec.whatwg.org/multipage/forms.html#attr-select-required
|
165
|
+
html_options["required"] && !html_options["multiple"] && html_options.fetch("size", 1).to_i == 1
|
136
166
|
end
|
137
|
-
end
|
138
167
|
|
139
|
-
|
140
|
-
|
141
|
-
|
168
|
+
def add_options(option_tags, options, value = nil)
|
169
|
+
if options[:include_blank]
|
170
|
+
option_tags = tag_builder.content_tag_string("option", options[:include_blank].kind_of?(String) ? options[:include_blank] : nil, value: "") + "\n" + option_tags
|
171
|
+
end
|
172
|
+
if value.blank? && options[:prompt]
|
173
|
+
option_tags = tag_builder.content_tag_string("option", prompt_text(options[:prompt]), value: "") + "\n" + option_tags
|
174
|
+
end
|
175
|
+
option_tags
|
176
|
+
end
|
142
177
|
|
143
|
-
|
144
|
-
|
145
|
-
|
178
|
+
def name_and_id_index(options)
|
179
|
+
if options.key?("index")
|
180
|
+
options.delete("index") || ""
|
181
|
+
elsif @generate_indexed_names
|
182
|
+
@auto_index || ""
|
183
|
+
end
|
146
184
|
end
|
147
|
-
|
148
|
-
|
185
|
+
|
186
|
+
def generate_ids?
|
187
|
+
!@skip_default_ids
|
149
188
|
end
|
150
|
-
option_tags
|
151
|
-
end
|
152
189
|
end
|
153
190
|
end
|
154
191
|
end
|