Sha256: 6b280a3d5c174189e019bf8dca42465f1de02e450ff17aaaaac55a52dd9a8d67

Contents?: true

Size: 660 Bytes

Versions: 62

Compression:

Stored size: 660 Bytes

Contents

module Workarea
  module Admin
    module Dashboards
      class OrdersViewModel < ApplicationViewModel
        include InsightsGraphs

        add_insights_graphs from: Workarea::Reports::SalesOverTime, on: :orders
        add_insights_graphs from: Workarea::Reports::SalesOverTime, on: :revenue
        add_insights_graphs from: Workarea::Reports::SalesOverTime, on: :aov
        add_insights_graphs from: Workarea::Reports::SalesOverTime, on: :units_sold

        def insights
          @insights ||= InsightViewModel.wrap(
            Workarea::Insights::Base.by_dashboard('orders').page(options[:page])
          )
        end
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.4.13 app/view_models/workarea/admin/dashboards/orders_view_model.rb
workarea-admin-3.4.12 app/view_models/workarea/admin/dashboards/orders_view_model.rb