Class: Effective::FormInputs::DateField

Inherits:
DatetimeField show all
Defined in:
app/models/effective/form_inputs/date_field.rb

Constant Summary

Constants inherited from Effective::FormInput

Effective::FormInput::BLANK, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES

Instance Attribute Summary

Attributes inherited from Effective::FormInput

#name, #options

Instance Method Summary collapse

Methods inherited from DatetimeField

#build_input

Methods inherited from Effective::FormInput

#feedback_options, #hint_options, #initialize, #label_options, #to_html, #wrapper_options

Constructor Details

This class inherits a constructor from Effective::FormInput

Instance Method Details

#datetime_to_sObject

ruby



20
21
22
# File 'app/models/effective/form_inputs/date_field.rb', line 20

def datetime_to_s # ruby
  value&.strftime('%F')
end

#formatObject

moment.js



28
29
30
# File 'app/models/effective/form_inputs/date_field.rb', line 28

def format # moment.js
  'YYYY-MM-DD'
end

#input_group_optionsObject



16
17
18
# File 'app/models/effective/form_inputs/date_field.rb', line 16

def input_group_options
  { input_group: { class: 'input-group effective_date_time_picker_input_group' }, prepend: (:span, icon('calendar'), class: 'input-group-text') }
end

#input_html_optionsObject



5
6
7
8
9
10
# File 'app/models/effective/form_inputs/date_field.rb', line 5

def input_html_options
  {
    class: ['form-control', 'effective_date_time_picker', 'effective_date', ('not-date-linked' if not_date_linked?)].compact.join(' '),
    pattern: pattern
  }
end

#input_js_optionsObject



12
13
14
# File 'app/models/effective/form_inputs/date_field.rb', line 12

def input_js_options
  { format: format, showTodayButton: false, showClear: false, useCurrent: 'hour', disabledDates: disabled_dates.presence, minDate: min_date.presence, maxDate: max_date.presence, locale: I18n.locale }.compact
end

#patternObject

html



24
25
26
# File 'app/models/effective/form_inputs/date_field.rb', line 24

def pattern # html
  '\d{4}(-\d{2})?(-\d{2})?'
end