Class: RailsAdmin::Config::Fields::Base
- Inherits:
-
Object
- Object
- RailsAdmin::Config::Fields::Base
- Includes:
- Configurable, Groupable, Hideable, Inspectable, Proxyable
- Defined in:
- lib/rails_admin/config/fields/base.rb
Overview
rubocop:disable Metrics/ClassLength
Direct Known Subclasses
Association, Types::Boolean, Types::Datetime, Types::Decimal, Types::Enum, Types::FileUpload, Types::Float, Types::Inet, Types::Integer, Types::MultipleFileUpload, Types::StringLike
Constant Summary collapse
- NAMED_INSTANCE_VARIABLES =
[ :@parent, :@root, :@section, :@children_fields_registered, :@associated_model_config, :@group ].freeze
Instance Attribute Summary collapse
-
#abstract_model ⇒ Object
readonly
Returns the value of attribute abstract_model.
-
#defined ⇒ Object
Returns the value of attribute defined.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#order ⇒ Object
Returns the value of attribute order.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#properties ⇒ Object
readonly
Returns the value of attribute properties.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
-
#section ⇒ Object
Returns the value of attribute section.
Instance Method Summary collapse
-
#association? ⇒ Boolean
Is this an association.
- #editable? ⇒ Boolean
-
#errors ⇒ Object
Reader for validation errors of the bound object.
- #form_default_value ⇒ Object
- #form_value ⇒ Object
- #generic_field_help ⇒ Object
- #generic_help ⇒ Object
-
#initialize(parent, name, properties) ⇒ Base
constructor
A new instance of Base.
- #inverse_of ⇒ Object
- #method_name ⇒ Object
-
#optional(state = nil, &block) ⇒ Object
Inverse accessor whether this field is required.
-
#optional=(state) ⇒ Object
Writer to make field optional.
-
#optional? ⇒ Boolean
Reader whether field is optional.
- #parse_input(_params) ⇒ Object
- #parse_value(value) ⇒ Object
-
#type ⇒ Object
Reader for field’s type.
- #type_css_class ⇒ Object
-
#value ⇒ Object
Reader for field’s value.
- #virtual? ⇒ Boolean
Methods included from Inspectable
Methods included from Groupable
Methods included from Hideable
#hidden?, #hide, included, #show
Methods included from Configurable
#has_option?, included, #register_deprecated_instance_option, #register_instance_option
Methods included from Proxyable
Constructor Details
#initialize(parent, name, properties) ⇒ Base
Returns a new instance of Base.
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/rails_admin/config/fields/base.rb', line 26 def initialize(parent, name, properties) @parent = parent @root = parent.root @abstract_model = parent.abstract_model @defined = false @name = name.to_sym @order = 0 @properties = properties @section = parent end |
Instance Attribute Details
#abstract_model ⇒ Object (readonly)
Returns the value of attribute abstract_model.
17 18 19 |
# File 'lib/rails_admin/config/fields/base.rb', line 17 def abstract_model @abstract_model end |
#defined ⇒ Object
Returns the value of attribute defined.
18 19 20 |
# File 'lib/rails_admin/config/fields/base.rb', line 18 def defined @defined end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
17 18 19 |
# File 'lib/rails_admin/config/fields/base.rb', line 17 def name @name end |
#order ⇒ Object
Returns the value of attribute order.
18 19 20 |
# File 'lib/rails_admin/config/fields/base.rb', line 18 def order @order end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent.
19 20 21 |
# File 'lib/rails_admin/config/fields/base.rb', line 19 def parent @parent end |
#properties ⇒ Object (readonly)
Returns the value of attribute properties.
17 18 19 |
# File 'lib/rails_admin/config/fields/base.rb', line 17 def properties @properties end |
#root ⇒ Object (readonly)
Returns the value of attribute root.
19 20 21 |
# File 'lib/rails_admin/config/fields/base.rb', line 19 def root @root end |
#section ⇒ Object
Returns the value of attribute section.
18 19 20 |
# File 'lib/rails_admin/config/fields/base.rb', line 18 def section @section end |
Instance Method Details
#association? ⇒ Boolean
Is this an association
239 240 241 |
# File 'lib/rails_admin/config/fields/base.rb', line 239 def association? is_a?(RailsAdmin::Config::Fields::Association) end |
#editable? ⇒ Boolean
234 235 236 |
# File 'lib/rails_admin/config/fields/base.rb', line 234 def editable? !(@properties && @properties.read_only?) end |
#errors ⇒ Object
Reader for validation errors of the bound object
244 245 246 247 248 |
# File 'lib/rails_admin/config/fields/base.rb', line 244 def errors ([name] + children_fields).uniq.collect do |column_name| bindings[:object].errors[column_name] end.uniq.flatten end |
#form_default_value ⇒ Object
331 332 333 |
# File 'lib/rails_admin/config/fields/base.rb', line 331 def form_default_value (default_value if bindings[:object].new_record? && value.nil?) end |
#form_value ⇒ Object
335 336 337 |
# File 'lib/rails_admin/config/fields/base.rb', line 335 def form_value form_default_value.nil? ? formatted_value : form_default_value end |
#generic_field_help ⇒ Object
308 309 310 311 312 313 |
# File 'lib/rails_admin/config/fields/base.rb', line 308 def generic_field_help model = abstract_model.model_name.underscore model_lookup = "admin.help.#{model}.#{name}".to_sym translated = I18n.translate(model_lookup, help: generic_help, default: [generic_help]) (translated.is_a?(Hash) ? translated.to_a.first[1] : translated).html_safe end |
#generic_help ⇒ Object
304 305 306 |
# File 'lib/rails_admin/config/fields/base.rb', line 304 def generic_help (required? ? I18n.translate('admin.form.required') : I18n.translate('admin.form.optional')) + '. ' end |
#inverse_of ⇒ Object
323 324 325 |
# File 'lib/rails_admin/config/fields/base.rb', line 323 def inverse_of nil end |
#method_name ⇒ Object
327 328 329 |
# File 'lib/rails_admin/config/fields/base.rb', line 327 def method_name name end |
#optional(state = nil, &block) ⇒ Object
Inverse accessor whether this field is required.
260 261 262 263 264 265 266 |
# File 'lib/rails_admin/config/fields/base.rb', line 260 def optional(state = nil, &block) if !state.nil? || block required state.nil? ? proc { false == instance_eval(&block) } : false == state else optional? end end |
#optional=(state) ⇒ Object
Writer to make field optional.
271 272 273 |
# File 'lib/rails_admin/config/fields/base.rb', line 271 def optional=(state) optional(state) end |
#optional? ⇒ Boolean
Reader whether field is optional.
253 254 255 |
# File 'lib/rails_admin/config/fields/base.rb', line 253 def optional? !required? end |
#parse_input(_params) ⇒ Object
319 320 321 |
# File 'lib/rails_admin/config/fields/base.rb', line 319 def parse_input(_params) # overriden end |
#parse_value(value) ⇒ Object
315 316 317 |
# File 'lib/rails_admin/config/fields/base.rb', line 315 def parse_value(value) value end |
#type ⇒ Object
Reader for field’s type
276 277 278 |
# File 'lib/rails_admin/config/fields/base.rb', line 276 def type @type ||= self.class.name.to_s.demodulize.underscore.to_sym end |
#type_css_class ⇒ Object
42 43 44 |
# File 'lib/rails_admin/config/fields/base.rb', line 42 def type_css_class "#{type}_type" end |
#value ⇒ Object
Reader for field’s value
281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/rails_admin/config/fields/base.rb', line 281 def value bindings[:object].safe_send(name) rescue NoMethodError => e raise e.exception <<-EOM.gsub(/^\s{10}/, '') #{e.} If you want to use a RailsAdmin virtual field(= a field without corresponding instance method), you should declare 'formatted_value' in the field definition. field :#{name} do formatted_value{ bindings[:object].call_some_method } end EOM end |
#virtual? ⇒ Boolean
46 47 48 |
# File 'lib/rails_admin/config/fields/base.rb', line 46 def virtual? properties.blank? end |