Sha256: 6cb9568d4d9b81d8a308ecd6b7d73d7e1fd57a0cb2f39763f068526277cbf8e5

Contents?: true

Size: 828 Bytes

Versions: 62

Compression:

Stored size: 828 Bytes

Contents

module Workarea
  module Insights
    class ProductsPurchasedTogether < Base
      class << self
        def dashboards
          %w(catalog orders)
        end

        def generate_weekly!
          predictor = Recommendation::ProductPredictor.new

          results = top_sellers.map do |top_seller|
            related = predictor.similarities_for(top_seller.product_id)
            top_seller.as_document.merge(related_product_id: related.first)
          end

          results.reject! { |r| r.blank? || r['related_product_id'].blank? }
          create!(results: results) if results.present?
        end

        def top_sellers
          Metrics::ProductByWeek
            .last_week
            .top_sellers
            .limit(Workarea.config.insights_products_list_max_results)
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.4.27 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.4 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.26 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.3 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.25 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.2 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.24 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.1 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.23 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.22 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.0 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.21 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.5.0.beta.1 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.20 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.19 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.18 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.17 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.16 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.15 app/models/workarea/insights/products_purchased_together.rb
workarea-core-3.4.14 app/models/workarea/insights/products_purchased_together.rb