Sha256: 8ed68b68ef0e65dfae33e4a9b89fa0935fe3894102a448b26c2d38025831515d

Contents?: true

Size: 1.73 KB

Versions: 49

Compression:

Stored size: 1.73 KB

Contents

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

        def generate_monthly!
          results = generate_results.map { |r| r.merge(product_id: r['_id']) }
          create!(results: results) if results.present?
        end

        def generate_results
          Metrics::ProductByWeek
            .collection
            .aggregate([filter_date_range, group_by_product, add_improving_weeks, sort, limit])
            .to_a
        end

        def filter_date_range
          {
            '$match' => {
              'reporting_on' => {
                '$gte' => beginning_of_last_month.utc,
                '$lte' => end_of_last_month.utc
              }
            }
          }
        end

        def group_by_product
          {
            '$group' => {
              '_id' => '$product_id',
              'improving_weeks' => { '$sum' => 1 },
              'revenue_changes' => { '$push' => '$revenue_change' },
              'orders' => { '$sum' => '$orders' }
            }
          }
        end

        def add_improving_weeks
          {
            '$addFields' => {
              'improving_weeks' => {
                '$size' => {
                  '$filter' => {
                    'input' => '$revenue_changes',
                    'as' => 'revenue_change',
                    'cond' => { '$gt' => ['$$revenue_change', 0] }
                  }
                }
              }
            }
          }
        end

        def sort
          { '$sort' => { 'improving_weeks' => -1, 'orders' => -1 } }
        end

        def limit
          { '$limit' => Workarea.config.insights_products_list_max_results }
        end
      end
    end
  end
end

Version data entries

49 entries across 49 versions & 1 rubygems

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