Sha256: 892727f5508518b43aee000958350717c9358ecfb56507fbb5b83cda87f1f903

Contents?: true

Size: 1.39 KB

Versions: 62

Compression:

Stored size: 1.39 KB

Contents

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

        def generate_weekly!
          results = first_pass
          results = second_pass if results.blank?
          create!(results: results.map(&:as_document)) if results.present?
        end

        def first_pass
          Metrics::ProductByWeek
            .last_week
            .by_views_percentile(91..100)
            .where(:conversion_rate.lt => avg_conversion_rate_of_top_two_views_deciles)
            .order_by(conversion_rate: :asc, views: :desc, _id: :asc)
            .limit(Workarea.config.insights_products_list_max_results)
            .to_a
        end

        def avg_conversion_rate_of_top_two_views_deciles
          Metrics::ProductByWeek.last_week.by_views_percentile(81..100).avg(:conversion_rate)
        end

        def second_pass
          Metrics::ProductByWeek
            .last_week
            .where(:conversion_rate.lt => avg_conversion_rate_of_top_five_views_deciles)
            .order_by(conversion_rate: :asc, views: :desc, _id: :asc)
            .limit(Workarea.config.insights_products_list_max_results)
            .to_a
        end

        def avg_conversion_rate_of_top_five_views_deciles
          Metrics::ProductByWeek.last_week.by_views_percentile(51..100).avg(:conversion_rate)
        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/insights/products_to_improve.rb
workarea-core-3.5.26 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.45 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.25 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.23 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.44 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.22 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.43 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.21 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.42 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.20 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.41 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.19 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.40 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.18 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.39 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.17 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.38 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.5.16 app/models/workarea/insights/products_to_improve.rb
workarea-core-3.4.37 app/models/workarea/insights/products_to_improve.rb