Sha256: aedf7f22e080553319a1818430a3a73fd4fc84442b93932581ec8926b1ea7fbd
Contents?: true
Size: 990 Bytes
Versions: 33
Compression:
Stored size: 990 Bytes
Contents
module Effective module FormInputs class TimeField < DatetimeField def input_html_options { class: ['form-control', 'effective_date_time_picker', 'effective_time', ('not-date-linked' if not_date_linked?)].compact.join(' '), pattern: pattern } end def input_js_options { format: format, showTodayButton: false, showClear: false, useCurrent: 'hour', disabledDates: disabled_dates.presence, locale: I18n.locale }.compact end def input_group_options { input_group: { class: 'input-group effective_date_time_picker_input_group' }, prepend: content_tag(:span, icon('clock'), class: 'input-group-text') } end def datetime_to_s # ruby value&.strftime(am_pm? ? '%I:%M %p' : '%H:%M') end def pattern # html am_pm? ? '\d{1,2}(:\d{2} [aApPmM]{2})?' : '\d{2}(:\d{2})?' end def format # moment.js am_pm? ? 'LT' : 'HH:mm' end end end end
Version data entries
33 entries across 33 versions & 1 rubygems