Sha256: 7f83c48b6cca40bb23248fc80c7a9bf0883c59bcfecfe50fa871f981465f154e

Contents?: true

Size: 1.92 KB

Versions: 17

Compression:

Stored size: 1.92 KB

Contents

# frozen_string_literal: true

require "action_view/helpers/tags/checkable"

module ActionView
  module Helpers
    module Tags # :nodoc:
      class CheckBox < Base #:nodoc:
        include Checkable

        def initialize(object_name, method_name, template_object, checked_value, unchecked_value, options)
          @checked_value   = checked_value
          @unchecked_value = unchecked_value
          super(object_name, method_name, template_object, options)
        end

        def render
          options = @options.stringify_keys
          options["type"]     = "checkbox"
          options["value"]    = @checked_value
          options["checked"] = "checked" if input_checked?(options)

          if options["multiple"]
            add_default_name_and_id_for_value(@checked_value, options)
            options.delete("multiple")
          else
            add_default_name_and_id(options)
          end

          include_hidden = options.delete("include_hidden") { true }
          checkbox = tag("input", options)

          if include_hidden
            hidden = hidden_field_for_checkbox(options)
            hidden + checkbox
          else
            checkbox
          end
        end

        private
          def checked?(value)
            case value
            when TrueClass, FalseClass
              value == !!@checked_value
            when NilClass
              false
            when String
              value == @checked_value
            else
              if value.respond_to?(:include?)
                value.include?(@checked_value)
              else
                value.to_i == @checked_value.to_i
              end
            end
          end

          def hidden_field_for_checkbox(options)
            @unchecked_value ? tag("input", options.slice("name", "disabled", "form").merge!("type" => "hidden", "value" => @unchecked_value, "autocomplete" => "off")) : "".html_safe
          end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
actionview-6.1.7.10 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.9 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.8 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.7 lib/action_view/helpers/tags/check_box.rb
scrapbook-0.3.2 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.6 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.5 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.4 lib/action_view/helpers/tags/check_box.rb
scrapbook-0.3.1 vendor/ruby/2.7.0/gems/actionview-6.1.6.1/lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.3 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.2 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7.1 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.7 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.6.1 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.6 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.5.1 lib/action_view/helpers/tags/check_box.rb
actionview-6.1.5 lib/action_view/helpers/tags/check_box.rb