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.15 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.36 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.14 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.35 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.13 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.34 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.12 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.33 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.11 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.10 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.32 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.9 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.31 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.8 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.30 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.7 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.29 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.6 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.28 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.5 app/view_models/workarea/admin/dashboards/people_view_model.rb