Sha256: 8ff02c5a8787ff35fdbadab66848f8c8389b525475524e12ddbf780b323f797f

Contents?: true

Size: 597 Bytes

Versions: 62

Compression:

Stored size: 597 Bytes

Contents

module Workarea
  module Search
    class Storefront
      class Product
        module Sorting
          # A hash of the position the product has in each category. Used for featured
          # sorting.
          #
          # @return [Hash]
          #
          def category_positions
            Catalog::ProductPositions.find(
              model.id,
              categories: categorization.to_models
            )
          end

          def search_positions
            Workarea::Search::Customization.positions_for_product(model.id)
          end
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.13 app/models/workarea/search/storefront/product/sorting.rb
workarea-core-3.4.12 app/models/workarea/search/storefront/product/sorting.rb