Class: Blueprinter::AssociationExtractor Private

Inherits:
Extractor
  • Object
show all
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

Methods inherited from Extractor

extract

Constructor Details

#initializeAssociationExtractor

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.



6
7
8
# File 'lib/blueprinter/extractors/association_extractor.rb', line 6

def initialize
  @extractor = AutoExtractor.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.



10
11
12
13
14
15
16
17
# File 'lib/blueprinter/extractors/association_extractor.rb', line 10

def extract(association_name, object, local_options, options={})
  options_without_default = options.reject { |k,_| k == :default || k == :default_if }
  value = @extractor.extract(association_name, object, local_options, options_without_default)
  return default_value(options) if use_default_value?(value, options[:default_if])
  view = options[:view] || :default
  blueprint = association_blueprint(options[:blueprint], value)
  blueprint.prepare(value, view_name: view, local_options: local_options)
end