Sha256: 3ce72c3d5bfc9b13ce333ac8d3e91980f2adb76b74da94bd5771192cc75d7de2
Contents?: true
Size: 1 KB
Versions: 54
Compression:
Stored size: 1 KB
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, id: tag_id } 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') rescue nil) 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
54 entries across 54 versions & 1 rubygems