Sha256: 644db3d91bce9838455e8856b1876b17cfd6cf6cf7504efa5eebebb76fda4473
Contents?: true
Size: 767 Bytes
Versions: 99
Compression:
Stored size: 767 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: class DatetimeField < TextField # :nodoc: def render options = @options.stringify_keys options["value"] ||= format_date(value) options["min"] = format_date(datetime_value(options["min"])) options["max"] = format_date(datetime_value(options["max"])) @options = options super end private def format_date(value) raise NotImplementedError end def datetime_value(value) if value.is_a? String DateTime.parse(value) rescue nil else value end end end end end end
Version data entries
99 entries across 95 versions & 7 rubygems