Sha256: cc0d2cd1d8d95b14fd9bb340bce9bf2c7a1350dfcb520542ae129fb96c03a829

Contents?: true

Size: 992 Bytes

Versions: 7

Compression:

Stored size: 992 Bytes

Contents

# frozen_string_literal: true
module SimpleForm
  module Components
    # Needs to be enabled in order to do automatic lookups.
    module Maxlength
      def maxlength(wrapper_options = nil)
        input_html_options[:maxlength] ||= maximum_length_from_validation || limit
        nil
      end

      private

      def maximum_length_from_validation
        maxlength = options[:maxlength]
        if maxlength.is_a?(String) || maxlength.is_a?(Integer)
          maxlength
        else
          length_validator = find_length_validator
          maximum_length_value_from(length_validator)
        end
      end

      def find_length_validator
        find_validator(:length)
      end

      def has_tokenizer?(length_validator)
        length_validator.options[:tokenizer]
      end

      def maximum_length_value_from(length_validator)
        if length_validator
          length_validator.options[:is] || length_validator.options[:maximum]
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
simple_form-5.0.3 lib/simple_form/components/maxlength.rb
simple_form-5.0.2 lib/simple_form/components/maxlength.rb
simple_form-5.0.1 lib/simple_form/components/maxlength.rb
simple_form-5.0.0 lib/simple_form/components/maxlength.rb
simple_form-4.1.0 lib/simple_form/components/maxlength.rb
simple_form-4.0.1 lib/simple_form/components/maxlength.rb
simple_form-4.0.0 lib/simple_form/components/maxlength.rb