Class: Spree::Core::Search::Base
- Inherits:
-
Object
- Object
- Spree::Core::Search::Base
- Defined in:
- lib/spree/core/search/base.rb
Instance Attribute Summary collapse
-
#current_user ⇒ Object
Returns the value of attribute current_user.
-
#pricing_options ⇒ Object
Returns the value of attribute pricing_options.
-
#properties ⇒ Object
Returns the value of attribute properties.
Instance Method Summary collapse
- #current_currency ⇒ Object
- #current_currency=(currency) ⇒ Object
-
#initialize(params) ⇒ Base
constructor
A new instance of Base.
- #method_missing(name) ⇒ Object
- #retrieve_products ⇒ Object
Constructor Details
#initialize(params) ⇒ Base
11 12 13 14 15 |
# File 'lib/spree/core/search/base.rb', line 11 def initialize(params) self. = Spree::Config. @properties = {} prepare(params) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name) ⇒ Object
38 39 40 41 42 43 44 45 |
# File 'lib/spree/core/search/base.rb', line 38 def method_missing(name) if @properties.key?(name) Spree::Deprecation.warn "Accessing Searcher's #{name} property using #{self.class.name}##{name} is deprecated without replacement" @properties[name] else super end end |
Instance Attribute Details
#current_user ⇒ Object
Returns the value of attribute current_user.
8 9 10 |
# File 'lib/spree/core/search/base.rb', line 8 def current_user @current_user end |
#pricing_options ⇒ Object
Returns the value of attribute pricing_options.
9 10 11 |
# File 'lib/spree/core/search/base.rb', line 9 def end |
#properties ⇒ Object
Returns the value of attribute properties.
7 8 9 |
# File 'lib/spree/core/search/base.rb', line 7 def properties @properties end |
Instance Method Details
#current_currency ⇒ Object
23 24 25 |
# File 'lib/spree/core/search/base.rb', line 23 def current_currency .currency end |
#current_currency=(currency) ⇒ Object
17 18 19 20 21 |
# File 'lib/spree/core/search/base.rb', line 17 def current_currency=(currency) self. = Spree::Config..new( .desired_attributes.merge(currency: currency) ) end |
#retrieve_products ⇒ Object
28 29 30 31 32 33 34 35 36 |
# File 'lib/spree/core/search/base.rb', line 28 def retrieve_products @products = get_base_scope curr_page = @properties[:page] || 1 unless Spree::Config.show_products_without_price @products = @products.joins(:prices).merge(Spree::Price.where(.search_arguments)).distinct end @products = @products.page(curr_page).per(@properties[:per_page]) end |