53 lines
1.4 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
2024-12-12 17:45:22 -03:00
def call
2025-01-02 22:15:10 +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?
SiteSetting.discourse_reaction_enabled || SiteSetting.chat_enabled
end
def sort_and_limit(reactions)
reactions.sort_by { |_, v| -v }.first(6).to_h
end
end
end