Sha256: 6c4855c3345bed886489823f7f8f376b89580c8ba4087f7089366eb648150284

Contents?: true

Size: 1.2 KB

Versions: 62

Compression:

Stored size: 1.2 KB

Contents

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

        add_insights_graphs from: Workarea::Reports::SalesOverTime, on: :customers
        add_insights_graphs from: Workarea::Reports::FirstTimeVsReturningSales, on: :first_time_orders
        add_insights_graphs from: Workarea::Reports::FirstTimeVsReturningSales, on: :returning_orders

        def new_vs_returning_line_graph_data
          [
            {
              name: t('workarea.admin.dashboards.people.new'),
              data: first_time_orders_graph_data
            },
            {
              name: t('workarea.admin.dashboards.people.returning'),
              data: returning_orders_graph_data
            }
          ]
        end

        def new_vs_returning_pie_graph_data
          {
            t('workarea.admin.dashboards.people.new') => first_time_orders,
            t('workarea.admin.dashboards.people.returning') => returning_orders
          }
        end

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

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-admin-3.5.27 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.26 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.45 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.25 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.23 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.44 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.22 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.43 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.21 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.42 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.20 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.41 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.19 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.40 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.18 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.39 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.17 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.38 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.16 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.37 app/view_models/workarea/admin/dashboards/people_view_model.rb