stats: turn satisfaction into a stacked area chart

This commit is contained in:
Pierre de La Morinerie 2019-01-28 14:16:41 +00:00 committed by simon lehericey
parent 351f2872a5
commit 34a2dc6b97
2 changed files with 8 additions and 6 deletions

View file

@ -129,9 +129,9 @@ class StatsController < ApplicationController
def satisfaction_usagers
legend = {
Feedback.ratings.fetch(:happy) => "Satisfaits",
Feedback.ratings.fetch(:neutral) => "Neutres",
Feedback.ratings.fetch(:unhappy) => "Mécontents"
Feedback.ratings.fetch(:unhappy) => "Mécontents",
Feedback.ratings.fetch(:neutral) => "Neutres",
Feedback.ratings.fetch(:happy) => "Satisfaits"
}
number_of_weeks = 6
@ -139,7 +139,7 @@ class StatsController < ApplicationController
.group_by_week(:created_at, last: number_of_weeks, current: false)
.count
Feedback.ratings.values.map do |rating|
legend.keys.map do |rating|
data = Feedback
.where(rating: rating)
.group_by_week(:created_at, last: number_of_weeks, current: false)

View file

@ -25,8 +25,10 @@
.chart-container
.chart
= line_chart @satisfaction_usagers,
colors: ["#15AD70", "#F28900", "rgba(161, 0, 5, 0.9)"]
= area_chart @satisfaction_usagers,
stacked: true,
max: 100,
colors: ["#BD0107", "#F28900", "#15AD70"]
.stat-card.stat-card-half.pull-left
%span.stat-card-title