Sha256: 3d73cd2830f89e0f5f690c95fb6b44fcc41fa1c3578cb858ea1b2ed4854617a1
Contents?: true
Size: 1.97 KB
Versions: 16
Compression:
Stored size: 1.97 KB
Contents
require 'rails_admin/config/fields/base' require 'rails_admin/support/datetime' module RailsAdmin module Config module Fields module Types class Datetime < RailsAdmin::Config::Fields::Base RailsAdmin::Config::Fields::Types.register(self) def parser RailsAdmin::Support::Datetime.new(strftime_format) end def parse_value(value) parser.parse_string(value) end def parse_input(params) params[name] = parse_value(params[name]) if params[name] end def value parent_value = super if %w(DateTime Date Time).include?(parent_value.class.name) parent_value.in_time_zone else parent_value end end register_instance_option :date_format do :long end register_instance_option :i18n_scope do [:time, :formats] end register_instance_option :strftime_format do begin ::I18n.t(date_format, scope: i18n_scope, raise: true) rescue ::I18n::ArgumentError "%B %d, %Y %H:%M" end end register_instance_option :datepicker_options do { showTodayButton: true, format: parser.to_momentjs, } end register_instance_option :html_attributes do { required: required?, size: 22, } end register_instance_option :sort_reverse? do true end register_instance_option :formatted_value do if time = (value || default_value) ::I18n.l(time, format: strftime_format) else ''.html_safe end end register_instance_option :partial do :form_datetime end end end end end end
Version data entries
16 entries across 16 versions & 1 rubygems