Sha256: a1bfdcba125d49257193037960fffe9551f5cf5d184480f5750c39c9b6539796

Contents?: true

Size: 1.72 KB

Versions: 3

Compression:

Stored size: 1.72 KB

Contents

module ActiveAdminDatetimepicker
  module Base
    mattr_accessor :default_datetime_picker_options
    @@default_datetime_picker_options = {}
    mattr_accessor :format
    @@format = '%Y-%m-%d %H:%M'

    def html_class
      'date-time-picker'
    end

    def input_html_data
      {}
    end

    def input_html_options(input_name = nil, placeholder = nil)
      super().tap do |options|
        options[:class] = [self.options[:class], html_class].compact.join(' ')
        options[:data] ||= input_html_data
        options[:data].merge!(datepicker_options: datetime_picker_options)
        options[:value] = input_value(input_name)
        options[:maxlength] = 19
        options[:placeholder] = placeholder unless placeholder.nil?
      end
    end

    def input_value(input_name = nil)
      val = object.public_send(input_name || method)
      if val.nil?
        val
      elsif column.type == :date
        val
      else
        DateTime.new(val.year, val.month, val.day, val.hour, val.min, val.sec).strftime(format)
      end
    end

    def datetime_picker_options
      @datetime_picker_options ||= begin
        # backport support both :datepicker_options AND :datetime_picker_options
        options = self.options.fetch(:datepicker_options, {})
        options = self.options.fetch(:datetime_picker_options, options)
        options = Hash[options.map { |k, v| [k.to_s.camelcase(:lower), v] }]
        _default_datetime_picker_options.merge(options)
      end
    end

    protected

    def _default_datetime_picker_options
      res = default_datetime_picker_options.map do |k, v|
        if v.respond_to?(:call) || v.is_a?(Proc)
          [k, v.call]
        else
          [k, v]
        end
      end
      Hash[res]
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
active_admin_datetimepicker-0.7.4 lib/active_admin_datetimepicker/base.rb
active_admin_datetimepicker-0.7.3 lib/active_admin_datetimepicker/base.rb
active_admin_datetimepicker-0.7.2 lib/active_admin_datetimepicker/base.rb