Class: DateTimePickerInput

Inherits:
Formtastic::Inputs::StringInput
  • Object
show all
Defined in:
app/inputs/date_time_picker_input.rb

Overview

The MIT License (MIT)

Copyright © 2015 Igor Fedoronchuk

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Instance Method Summary collapse

Instance Method Details

#datetime_picker_optionsObject



52
53
54
55
56
57
58
# File 'app/inputs/date_time_picker_input.rb', line 52

def datetime_picker_options
  @datetime_picker_options ||= begin
    opts = options.fetch(:picker_options, {})
    opts = Hash[opts.map { |k, v| [k.to_s.camelcase(:lower), v] }]
    default_picker_options.merge(opts)
  end
end

#input_html_options(input_name = nil) ⇒ Object



32
33
34
35
36
37
38
39
40
# File 'app/inputs/date_time_picker_input.rb', line 32

def input_html_options(input_name = nil)
  opts = {}
  opts[:class] = [options[:class], 'date-time-picker'].compact.join(' ')
  opts[:data] ||= {}
  opts[:data].merge!(picker_options: datetime_picker_options)
  opts[:value] ||= input_value(input_name)
  opts[:maxlength] = 19
  opts
end

#input_value(input_name = nil) ⇒ Object



42
43
44
45
46
47
48
49
50
# File 'app/inputs/date_time_picker_input.rb', line 42

def input_value(input_name = nil)
  v = object.public_send(input_name || method)

  if v.is_a?(Time)
    return DateTime.new(v.year, v.month, v.day, v.hour, v.min, v.sec).strftime(format)
  end

  v.to_s
end