Class: ActiveModel::Serializer::Reflection
- Defined in:
- lib/active_model/serializer/reflection.rb
Overview
Holds all the meta-data about an association as it was specified in the ActiveModel::Serializer class.
Specifically, the association 'comments' is evaluated two different ways:
1) as 'comments' and named 'comments'.
2) as 'object.comments.last(1)' and named 'last_comments'.
PostSerializer._reflections #=>
# [
# HasOneReflection.new(:author, serializer: AuthorSerializer),
# HasManyReflection.new(:comments)
# HasManyReflection.new(:comments, { key: :last_comments }, #<Block>)
# HasManyReflection.new(:secret_meta_data, { if: :is_admin? })
# ]
So you can inspect reflections in your Adapters.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Field
Instance Method Summary collapse
-
#build_association(subject, parent_serializer_options) ⇒ Object
private
Build association.
- #include_data(value = true) ⇒ Object
-
#initialize ⇒ Reflection
constructor
A new instance of Reflection.
- #link(name, value = nil, &block) ⇒ Object
- #meta(value = nil, &block) ⇒ Object
- #value(serializer) {|ActiveModel::Serializer| ... } ⇒ :nil, associated resource or resource collection
Methods inherited from Field
Constructor Details
#initialize ⇒ Reflection
Returns a new instance of Reflection.
37 38 39 40 41 42 |
# File 'lib/active_model/serializer/reflection.rb', line 37 def initialize(*) super @_links = {} @_include_data = true @_meta = nil end |
Instance Method Details
#build_association(subject, parent_serializer_options) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Build association. This method is used internally to build serializer’s association by its reflection.
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/active_model/serializer/reflection.rb', line 109 def build_association(subject, ) association_value = value(subject) = .dup serializer_class = subject.class.serializer_for(association_value, ) [:include_data] = @_include_data if serializer_class begin serializer = serializer_class.new( association_value, (subject, , ) ) rescue ActiveModel::Serializer::CollectionSerializer::NoSerializerError [:virtual_value] = association_value.try(:as_json) || association_value end elsif !association_value.nil? && !association_value.instance_of?(Object) [:virtual_value] = association_value end Association.new(name, serializer, , @_links, @_meta) end |
#include_data(value = true) ⇒ Object
54 55 56 57 |
# File 'lib/active_model/serializer/reflection.rb', line 54 def include_data(value = true) @_include_data = value :nil end |
#link(name, value = nil, &block) ⇒ Object
44 45 46 47 |
# File 'lib/active_model/serializer/reflection.rb', line 44 def link(name, value = nil, &block) @_links[name] = block || value :nil end |
#meta(value = nil, &block) ⇒ Object
49 50 51 52 |
# File 'lib/active_model/serializer/reflection.rb', line 49 def (value = nil, &block) @_meta = block || value :nil end |
#value(serializer) {|ActiveModel::Serializer| ... } ⇒ :nil, associated resource or resource collection
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/active_model/serializer/reflection.rb', line 72 def value(serializer) @object = serializer.object @scope = serializer.scope if block block_value = instance_exec(serializer, &block) if block_value != :nil block_value elsif @_include_data serializer.read_attribute_for_serialization(name) end else serializer.read_attribute_for_serialization(name) end end |