66 lines
1.7 KiB
Ruby
Raw Normal View History

2024-12-12 17:45:22 -03:00
# frozen_string_literal: true
# For a most user / received reactions cards
module DiscourseRewind
2024-12-13 17:00:17 +01:00
class Rewind::Action::Reactions < Rewind::Action::BaseReport
2025-01-09 16:52:32 +01:00
FakeData = {
data: {
post_received_reactions: {
"open_mouth" => 10,
},
post_used_reactions: {
"open_mouth" => 10,
},
},
identifier: "reactions",
}
2024-12-12 17:45:22 -03:00
def call
2025-01-09 16:52:32 +01:00
return FakeData if Rails.env.development?
2024-12-12 17:45:22 -03:00
2025-01-09 16:52:32 +01:00
data = {}
2024-12-12 17:45:22 -03:00
if defined?(DiscourseReactions::Reaction)
# This is missing heart reactions (default like)
2025-01-02 22:15:10 +01:00
data[:post_used_reactions] = DiscourseReactions::Reaction
.by_user(user)
.where(created_at: date)
.group(:reaction_value)
.count
data[:post_received_reactions] = DiscourseReactions::Reaction
.includes(:post)
.where(posts: { user_id: user.id })
.where(created_at: date)
.group(:reaction_value)
.limit(5)
.count
2024-12-12 17:45:22 -03:00
end
if SiteSetting.chat_enabled
2025-01-02 22:15:10 +01:00
data[:chat_used_reactions] = Chat::MessageReaction
.where(user: user)
.where(created_at: date)
.group(:emoji)
.count
data[:chat_received_reactions] = Chat::MessageReaction
.includes(:chat_message)
.where(chat_message: { user_id: user.id })
.where(created_at: date)
.group(:emoji)
.count
2024-12-12 17:45:22 -03:00
end
2025-01-02 22:15:10 +01:00
{ data:, identifier: "reactions" }
2024-12-12 17:45:22 -03:00
end
def enabled?
2025-01-07 23:26:17 +01:00
SiteSetting.discourse_reactions_enabled || SiteSetting.chat_enabled
2024-12-12 17:45:22 -03:00
end
def sort_and_limit(reactions)
reactions.sort_by { |_, v| -v }.first(6).to_h
end
end
end