Sha256: 836cc26ffa4d51626b95e5d58d0922d5b00273b75f0edc6d5b81ce3a062a8d5a

Contents?: true

Size: 581 Bytes

Versions: 141

Compression:

Stored size: 581 Bytes

Contents

# frozen_string_literal: true

module ActionView
  module Helpers
    module Tags # :nodoc:
      class ColorField < TextField # :nodoc:
        def render
          options = @options.stringify_keys
          options["value"] ||= validate_color_string(value)
          @options = options
          super
        end

        private
          def validate_color_string(string)
            regex = /#[0-9a-fA-F]{6}/
            if regex.match?(string)
              string.downcase
            else
              "#000000"
            end
          end
      end
    end
  end
end

Version data entries

141 entries across 136 versions & 11 rubygems

Version Path
omg-actionview-8.0.0.alpha9 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha8 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha7 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha4 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha3 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha2 lib/action_view/helpers/tags/color_field.rb
omg-actionview-8.0.0.alpha1 lib/action_view/helpers/tags/color_field.rb
actionview-7.1.4 lib/action_view/helpers/tags/color_field.rb
actionview-7.2.1 lib/action_view/helpers/tags/color_field.rb
actionview-7.2.0 lib/action_view/helpers/tags/color_field.rb
actionview-7.2.0.rc1 lib/action_view/helpers/tags/color_field.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.0.8.4/lib/action_view/helpers/tags/color_field.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/color_field.rb
actionview-7.2.0.beta3 lib/action_view/helpers/tags/color_field.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/color_field.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/color_field.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/actionview-7.0.5.1/lib/action_view/helpers/tags/color_field.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/color_field.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/actionview-7.1.3.4/lib/action_view/helpers/tags/color_field.rb
actionview-7.2.0.beta2 lib/action_view/helpers/tags/color_field.rb