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.4.27 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.4 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.26 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.3 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.25 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.2 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.24 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.1 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.23 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.22 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.0 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.21 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.5.0.beta.1 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.20 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.19 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.18 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.17 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.16 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.15 app/view_models/workarea/admin/dashboards/people_view_model.rb
workarea-admin-3.4.14 app/view_models/workarea/admin/dashboards/people_view_model.rb