Class: Glib::JsonUi::ViewBuilder::Fields::Date

Inherits:
AbstractField show all
Defined in:
app/helpers/glib/json_ui/view_builder/fields.rb

Overview

string :directUploadUrl

# string :fileUrl
# string :fileTitle
hash :placeholderView

end

Instance Attribute Summary

Attributes inherited from JsonUiElement

#json, #page

Instance Method Summary collapse

Methods inherited from AbstractField

#context, #created, #default_url_options, #determine_value, #hint, #hint_args, #label, #label_args, #name, #placeholder, #placeholder_args, #prop

Methods inherited from View

component_name

Methods inherited from JsonUiElement

#initialize, #props

Constructor Details

This class inherits a constructor from Glib::JsonUi::JsonUiElement

Instance Method Details

#value(value) ⇒ Object

Override



394
395
396
397
# File 'app/helpers/glib/json_ui/view_builder/fields.rb', line 394

def value(value)
  value = "#{value}-01" if value.is_a?(String) && value&.length == 7 # yyyy-mm
  super(value&.to_date)
end