replace mood mode string with mode ref
This commit is contained in:
parent
ae1263acff
commit
820d31b3e5
7 changed files with 51 additions and 44 deletions
|
|
@ -86,31 +86,6 @@ main {
|
||||||
height: 15px;
|
height: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.creatif {
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.unknown {
|
|
||||||
border: 2px double grey;
|
|
||||||
background-color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.en-charge {
|
|
||||||
background-color: orange;
|
|
||||||
}
|
|
||||||
|
|
||||||
.frigo-vide {
|
|
||||||
background-color: grey;
|
|
||||||
}
|
|
||||||
|
|
||||||
.croisiere {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
|
|
||||||
.afond {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.info {
|
.info {
|
||||||
margin: 30px;
|
margin: 30px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,15 @@
|
||||||
module MoodsHelper
|
module MoodsHelper
|
||||||
def mode_for(mood, user)
|
def mode_for(mood, user)
|
||||||
if user.guess?
|
if user.guess?
|
||||||
mood[:mode] || mood[:guess] || "unknown"
|
mood[:mode] || mood[:guess] || { label: "unknown", color: "white" }
|
||||||
else
|
else
|
||||||
mood[:mode] || "unknown"
|
mood[:mode] || { label: "unknown", color: "white" }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def style_for_mode(mode)
|
||||||
|
style = "background-color: #{mode[:color]};"
|
||||||
|
style += " border: 2px double grey;" if mode[:label] == "unknown"
|
||||||
|
style
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
class Mood < ApplicationRecord
|
class Mood < ApplicationRecord
|
||||||
belongs_to :user
|
belongs_to :user
|
||||||
|
belongs_to :mode
|
||||||
end
|
end
|
||||||
|
|
|
||||||
|
|
@ -2,10 +2,10 @@
|
||||||
class MoodCalendarService
|
class MoodCalendarService
|
||||||
def self.generate_calendar(moods, start_date: nil, end_date: Date.current)
|
def self.generate_calendar(moods, start_date: nil, end_date: Date.current)
|
||||||
# Convertir la relation ActiveRecord en tableau de hash
|
# Convertir la relation ActiveRecord en tableau de hash
|
||||||
data = moods.order(:recorded_at)
|
data = moods.joins(:mode)
|
||||||
.pluck(:mode, :recorded_at)
|
.order(:recorded_at)
|
||||||
.map { |mode, recorded_at| { mode: mode, recorded_at: recorded_at } }
|
.pluck(:recorded_at, "modes.label", "modes.color")
|
||||||
|
.map { |recorded_at, label, color| { mode: { label: label, color: color }, recorded_at: recorded_at } }
|
||||||
|
|
||||||
if data.empty?
|
if data.empty?
|
||||||
start_date = Date.current
|
start_date = Date.current
|
||||||
|
|
@ -43,28 +43,21 @@ class MoodCalendarService
|
||||||
# Regrouper par mois avec semaines commençant au premier lundi
|
# Regrouper par mois avec semaines commençant au premier lundi
|
||||||
complete_data.group_by { |d| d[:recorded_at].to_date.beginning_of_month }
|
complete_data.group_by { |d| d[:recorded_at].to_date.beginning_of_month }
|
||||||
.map do |month_start, month_data|
|
.map do |month_start, month_data|
|
||||||
# Trouver le premier lundi du mois (à partir du 1er du mois)
|
|
||||||
first_monday = month_start
|
first_monday = month_start
|
||||||
first_monday = first_monday.next_occurring(:monday) unless first_monday.monday?
|
first_monday = first_monday.next_occurring(:monday) unless first_monday.monday?
|
||||||
|
|
||||||
# Trouver le premier lundi du mois SUIVANT
|
|
||||||
next_month_start = month_start.next_month.beginning_of_month
|
next_month_start = month_start.next_month.beginning_of_month
|
||||||
next_first_monday = next_month_start
|
next_first_monday = next_month_start
|
||||||
next_first_monday = next_first_monday.next_occurring(:monday) unless next_first_monday.monday?
|
next_first_monday = next_first_monday.next_occurring(:monday) unless next_first_monday.monday?
|
||||||
|
|
||||||
# Le dernier jour du mois est le dimanche précédant le premier lundi du mois suivant
|
|
||||||
month_end = next_first_monday - 1.day
|
month_end = next_first_monday - 1.day
|
||||||
|
|
||||||
# Créer un hash pour accès rapide aux données de complete_data (qui contient déjà les guess)
|
|
||||||
data_hash = complete_data.index_by { |d| d[:recorded_at].to_date }
|
data_hash = complete_data.index_by { |d| d[:recorded_at].to_date }
|
||||||
|
|
||||||
# Générer tous les jours du premier lundi jusqu'au dimanche avant le prochain lundi
|
|
||||||
all_days = (first_monday..month_end).map do |date|
|
all_days = (first_monday..month_end).map do |date|
|
||||||
# Utiliser directement les données de complete_data qui ont déjà le bon guess
|
|
||||||
data_hash[date] || { mode: nil, recorded_at: date.to_datetime, guess: nil }
|
data_hash[date] || { mode: nil, recorded_at: date.to_datetime, guess: nil }
|
||||||
end
|
end
|
||||||
|
|
||||||
# Grouper par semaines
|
|
||||||
weeks = all_days.group_by { |d| d[:recorded_at].to_date.beginning_of_week(:monday) }
|
weeks = all_days.group_by { |d| d[:recorded_at].to_date.beginning_of_week(:monday) }
|
||||||
.sort_by { |week_start, _| week_start }
|
.sort_by { |week_start, _| week_start }
|
||||||
.map { |_, week_moods| week_moods }
|
.map { |_, week_moods| week_moods }
|
||||||
|
|
@ -75,4 +68,4 @@ class MoodCalendarService
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end#
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
<div class="current-day column is-hidden-mobile">
|
<div class="current-day column is-hidden-mobile">
|
||||||
<section class="m-4">
|
<section class="m-4">
|
||||||
<figure class="image has-ratio">
|
<figure class="image has-ratio">
|
||||||
<%= image_tag(@user.current_mode + ".jpg", "data-mood-target": "image") %>
|
<%= image_tag(@user.current_mode.label + ".jpg", "data-mood-target": "image") %>
|
||||||
</figure>
|
</figure>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
<div class="container mb-4 p-3 has-background-white day-info">
|
<div class="container mb-4 p-3 has-background-white day-info">
|
||||||
<div class="title is-4">
|
<div class="title is-4">
|
||||||
<span class="icon"><i class="fa-regular fa-calendar"></i></span>
|
<span class="icon"><i class="fa-regular fa-calendar"></i></span>
|
||||||
<span data-mood-target="modeDay">Aujourd'hui : <%= @user.current_mode %></span>
|
<span data-mood-target="modeDay">Aujourd'hui : <%= @user.current_mode.label %></span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="logs">
|
<div class="logs">
|
||||||
|
|
@ -49,7 +49,7 @@
|
||||||
<div class="is-flex is-flex-direction-column is-flex-wrap-wrap mb-3">
|
<div class="is-flex is-flex-direction-column is-flex-wrap-wrap mb-3">
|
||||||
<% week.each do |mood| %>
|
<% week.each do |mood| %>
|
||||||
<% mode = mode_for(mood, @user) %>
|
<% mode = mode_for(mood, @user) %>
|
||||||
<div data-image="<%= asset_path(mode + ".jpg") %>" data-mode="<%= mode %>" data-day="<%= l mood[:recorded_at].to_date %>" data-action="click->mood#updateDayInfo" title="<%= l(mood[:recorded_at].to_date) %> : <%= mode %>" class="day <%= mode %>"></div>
|
<div data-image="<%= asset_path(mode[:label] + ".jpg") %>" data-mode="<%= mode[:label] %>" data-day="<%= l mood[:recorded_at].to_date %>" data-action="click->mood#updateDayInfo" title="<%= l(mood[:recorded_at].to_date) %> : <%= mode[:label] %>" class="day" style="<%= style_for_mode(mode) %>"></div>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,30 @@
|
||||||
|
class ReplaceMoodModeStringWithModeReference < ActiveRecord::Migration[8.0]
|
||||||
|
def up
|
||||||
|
# 1. Ajouter la colonne de référence
|
||||||
|
add_reference :moods, :mode, foreign_key: true
|
||||||
|
|
||||||
|
# 2. Pour chaque mood, trouver ou créer le Mode correspondant
|
||||||
|
Mood.find_each do |mood|
|
||||||
|
next if mood.mode.blank?
|
||||||
|
|
||||||
|
mode_record = Mode.find_or_create_by!(label: mood.mode, user_id: mood.user_id) do |m|
|
||||||
|
m.color = "#000000" # couleur par défaut
|
||||||
|
end
|
||||||
|
|
||||||
|
mood.update_column(:mode_id, mode_record.id)
|
||||||
|
end
|
||||||
|
|
||||||
|
# 3. Supprimer l'ancienne colonne string
|
||||||
|
remove_column :moods, :mode, :string
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
add_column :moods, :mode, :string
|
||||||
|
|
||||||
|
Mood.find_each do |mood|
|
||||||
|
mood.update_column(:mode, mood.mode&.label)
|
||||||
|
end
|
||||||
|
|
||||||
|
remove_reference :moods, :mode, foreign_key: true
|
||||||
|
end
|
||||||
|
end
|
||||||
6
db/schema.rb
generated
6
db/schema.rb
generated
|
|
@ -10,7 +10,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended that you check this file into your version control system.
|
# It's strongly recommended that you check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema[8.0].define(version: 2026_03_14_144625) do
|
ActiveRecord::Schema[8.0].define(version: 2026_03_14_150724) do
|
||||||
create_table "modes", force: :cascade do |t|
|
create_table "modes", force: :cascade do |t|
|
||||||
t.string "label"
|
t.string "label"
|
||||||
t.string "color"
|
t.string "color"
|
||||||
|
|
@ -21,11 +21,12 @@ ActiveRecord::Schema[8.0].define(version: 2026_03_14_144625) do
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "moods", force: :cascade do |t|
|
create_table "moods", force: :cascade do |t|
|
||||||
t.string "mode"
|
|
||||||
t.datetime "recorded_at"
|
t.datetime "recorded_at"
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
t.datetime "updated_at", null: false
|
t.datetime "updated_at", null: false
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
|
t.integer "mode_id"
|
||||||
|
t.index ["mode_id"], name: "index_moods_on_mode_id"
|
||||||
t.index ["user_id"], name: "index_moods_on_user_id"
|
t.index ["user_id"], name: "index_moods_on_user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -62,6 +63,7 @@ ActiveRecord::Schema[8.0].define(version: 2026_03_14_144625) do
|
||||||
end
|
end
|
||||||
|
|
||||||
add_foreign_key "modes", "users"
|
add_foreign_key "modes", "users"
|
||||||
|
add_foreign_key "moods", "modes"
|
||||||
add_foreign_key "moods", "users"
|
add_foreign_key "moods", "users"
|
||||||
add_foreign_key "rfid_tags", "users"
|
add_foreign_key "rfid_tags", "users"
|
||||||
add_foreign_key "sessions", "users"
|
add_foreign_key "sessions", "users"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue