2010-07-06 05:24:12 -04:00
|
|
|
module SimpleForm
|
|
|
|
module Inputs
|
|
|
|
class BooleanInput < Base
|
|
|
|
def input
|
2012-01-30 08:15:05 -05:00
|
|
|
if nested_boolean_style?
|
2012-01-31 12:57:45 -05:00
|
|
|
build_hidden_field_for_checkbox +
|
2012-01-30 13:38:28 -05:00
|
|
|
template.label_tag(nil, :class => "checkbox") {
|
|
|
|
build_check_box_without_hidden_field
|
|
|
|
}
|
2012-01-30 08:15:05 -05:00
|
|
|
else
|
|
|
|
build_check_box
|
|
|
|
end
|
2010-07-06 05:24:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def label_input
|
2012-01-26 08:30:08 -05:00
|
|
|
if options[:label] == false
|
|
|
|
input
|
2012-01-26 13:17:12 -05:00
|
|
|
elsif nested_boolean_style?
|
2012-02-03 16:58:06 -05:00
|
|
|
html_options = label_html_options.dup
|
|
|
|
html_options[:class].push(:checkbox)
|
|
|
|
|
2012-01-31 12:57:45 -05:00
|
|
|
build_hidden_field_for_checkbox +
|
2012-02-03 16:58:06 -05:00
|
|
|
@builder.label(label_target, html_options) {
|
2012-01-30 13:38:28 -05:00
|
|
|
build_check_box_without_hidden_field + label_text
|
|
|
|
}
|
2012-01-26 08:30:08 -05:00
|
|
|
else
|
|
|
|
input + label
|
|
|
|
end
|
2010-07-06 05:24:12 -04:00
|
|
|
end
|
|
|
|
|
2011-09-03 05:13:29 -04:00
|
|
|
private
|
2010-07-06 05:24:12 -04:00
|
|
|
|
2012-01-27 07:45:36 -05:00
|
|
|
# Build a checkbox tag using default unchecked value. This allows us to
|
2012-01-30 11:31:07 -05:00
|
|
|
# reuse the method for nested boolean style, but with no unchecked value,
|
|
|
|
# which won't generate the hidden checkbox. This is the default functionality
|
|
|
|
# in Rails > 3.2.1, and is backported in SimpleForm AV helpers.
|
2012-01-27 07:45:36 -05:00
|
|
|
def build_check_box(unchecked_value='0')
|
|
|
|
@builder.check_box(attribute_name, input_html_options, '1', unchecked_value)
|
|
|
|
end
|
|
|
|
|
2012-01-30 11:31:07 -05:00
|
|
|
# Build a checkbox without generating the hidden field. See
|
|
|
|
# #build_hidden_field_for_checkbox for more info.
|
|
|
|
def build_check_box_without_hidden_field
|
|
|
|
build_check_box(nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Create a hidden field for the current checkbox, so we can simulate Rails
|
|
|
|
# functionality with hidden + checkbox, but under a nested context, where
|
|
|
|
# we need the hidden field to be *outside* the label (otherwise it
|
|
|
|
# generates invalid html - html5 only).
|
|
|
|
def build_hidden_field_for_checkbox
|
2012-01-30 13:38:28 -05:00
|
|
|
@builder.hidden_field(attribute_name, :value => '0', :id => nil,
|
|
|
|
:disabled => input_html_options[:disabled])
|
2012-01-30 11:31:07 -05:00
|
|
|
end
|
|
|
|
|
2010-07-06 05:24:12 -04:00
|
|
|
# Booleans are not required by default because in most of the cases
|
|
|
|
# it makes no sense marking them as required. The only exception is
|
|
|
|
# Terms of Use usually presented at most sites sign up screen.
|
2011-12-04 07:00:39 -05:00
|
|
|
def required_by_default?
|
2010-07-06 05:24:12 -04:00
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-01-26 08:30:08 -05:00
|
|
|
end
|