Sha256: 9b852a8beb6817ad34db8cc797ae31753fe3e39e7450f706276cb4ed61e463d3
Contents?: true
Size: 993 Bytes
Versions: 26
Compression:
Stored size: 993 Bytes
Contents
module Effective module FormInputs class DateField < DatetimeField 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 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 def input_group_options { input_group: { class: 'input-group effective_date_time_picker_input_group' }, prepend: content_tag(:span, icon('calendar'), class: 'input-group-text') } end def datetime_to_s # ruby (value&.strftime('%F') rescue nil) end def pattern # html '\d{4}(-\d{2})?(-\d{2})?' end def format # moment.js 'YYYY-MM-DD' end end end end
Version data entries
26 entries across 26 versions & 1 rubygems