Sha256: 7136dd2fba1bf634c72130eadab278ada40ad8ea0b1d46ddb71fab49d53042ca

Contents?: true

Size: 1.11 KB

Versions: 33

Compression:

Stored size: 1.11 KB

Contents

module Inputs
  module EffectiveDatePicker
    class Input < Effective::FormInput
      delegate :content_tag, :text_field_tag, :to => :@template

      def default_input_js
        {:format => 'YYYY-MM-DD'}
      end

      def default_input_html
        {class: 'effective_date_picker date'}
      end

      def to_html
        if options[:input_group] == false
          return text_field_tag(field_name, value, tag_options)
        end

        content_tag(:div, class: 'input-group') do
          content_tag(:span, class: 'input-group-addon') do
            content_tag(:i, '', class: 'glyphicon glyphicon-calendar').html_safe
          end +
          text_field_tag(field_name, value, tag_options)
        end
      end

      def value
        val = super
        val.kind_of?(Time) ? val.to_date : val
      end

      def html_options
        super.tap do |html_options|
          if js_options[:format] == default_input_js[:format] # Unless someone changed from the default
            html_options[:pattern] = '\d{4}-\d{2}-\d{2}' # Match default pattern defined above
          end
        end
      end
    end
  end
end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
effective_form_inputs-0.9.0 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.18 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.17 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.16 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.15 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.14 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.13 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.12 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.11 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.10 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.9 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.8 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.7 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.6 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.5 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.4 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.3 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.2 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.1 app/models/inputs/effective_date_picker/input.rb
effective_form_inputs-0.8.0 app/models/inputs/effective_date_picker/input.rb