Sha256: f9eeeffbde4545f26cf72549c08e6bcd91fb18fb13c06dea1853b5b17bda22c5

Contents?: true

Size: 1.37 KB

Versions: 62

Compression:

Stored size: 1.37 KB

Contents

module Workarea
  module Catalog
    class ProductPositions
      class << self
        # Provides output of a products position within a collection
        # of categories. Called with just `product_id`, will lookup and return
        # positions in all categories.
        #
        # Optionally, pass in `categories` or `category_ids` and positions for
        # only these categories will be returned.
        #
        # It can be useful for performance to pass categories in `categories`
        # and avoid the extra query.
        #
        # @param product_id [String]
        # @param categories [Array<Workarea::Catalog::Category>]
        # @param category_ids [Array<String>]
        #
        # @return [Hash]
        #
        def find(product_id, categories: [], category_ids: [])
          categories = if categories.present?
                         categories
                       elsif category_ids.present?
                         Category.any_in(id: category_ids).to_a
                       else
                         Category.any_in(product_ids: [product_id]).to_a
                       end

          categories.reduce({}) do |positions, category|
            index = category.product_ids.index(product_id)
            next positions unless index.present?
            positions[category.id] = index
            positions
          end
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.27 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.26 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.45 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.25 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.23 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.44 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.22 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.43 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.21 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.42 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.20 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.41 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.19 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.40 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.18 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.39 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.17 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.38 app/models/workarea/catalog/product_positions.rb
workarea-core-3.5.16 app/models/workarea/catalog/product_positions.rb
workarea-core-3.4.37 app/models/workarea/catalog/product_positions.rb