Class: Blueprinter::AssociationExtractor Private
- Includes:
- EmptyTypes
- Defined in:
- lib/blueprinter/extractors/association_extractor.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #extract(association_name, object, local_options, options = {}) ⇒ Object private
-
#initialize ⇒ AssociationExtractor
constructor
private
A new instance of AssociationExtractor.
Methods inherited from Extractor
Constructor Details
#initialize ⇒ AssociationExtractor
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.
Returns a new instance of AssociationExtractor.
11 12 13 |
# File 'lib/blueprinter/extractors/association_extractor.rb', line 11 def initialize @extractor = Blueprinter.configuration.extractor_default.new end |
Instance Method Details
#extract(association_name, object, local_options, 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.
15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/blueprinter/extractors/association_extractor.rb', line 15 def extract(association_name, object, , = {}) = .except(:default, :default_if) # Merge in assocation options hash = .merge([:options]) if [:options].is_a?(Hash) value = @extractor.extract(association_name, object, , ) return default_value() if use_default_value?(value, [:default_if]) view = [:view] || :default blueprint = association_blueprint([:blueprint], value) blueprint.prepare(value, view_name: view, local_options: ) end |