2024-06-03 08:35:59 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class NotificationGroup < ActiveModelSerializers::Model
|
2024-06-14 10:33:06 +00:00
|
|
|
attributes :group_key, :sample_accounts, :notifications_count, :notification, :most_recent_notification_id
|
2024-06-03 08:35:59 +00:00
|
|
|
|
|
|
|
def self.from_notification(notification)
|
|
|
|
if notification.group_key.present?
|
|
|
|
# TODO: caching and preloading
|
2024-06-14 10:33:06 +00:00
|
|
|
most_recent_notifications = notification.account.notifications.where(group_key: notification.group_key).order(id: :desc).take(3)
|
|
|
|
most_recent_id = most_recent_notifications.first.id
|
|
|
|
sample_accounts = most_recent_notifications.map(&:from_account)
|
2024-06-03 08:35:59 +00:00
|
|
|
notifications_count = notification.account.notifications.where(group_key: notification.group_key).count
|
|
|
|
else
|
2024-06-14 10:33:06 +00:00
|
|
|
most_recent_id = notification.id
|
2024-06-03 08:35:59 +00:00
|
|
|
sample_accounts = [notification.from_account]
|
|
|
|
notifications_count = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
NotificationGroup.new(
|
|
|
|
notification: notification,
|
|
|
|
group_key: notification.group_key || "ungrouped-#{notification.id}",
|
|
|
|
sample_accounts: sample_accounts,
|
2024-06-14 10:33:06 +00:00
|
|
|
notifications_count: notifications_count,
|
|
|
|
most_recent_notification_id: most_recent_id
|
2024-06-03 08:35:59 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
delegate :type,
|
|
|
|
:target_status,
|
|
|
|
:report,
|
|
|
|
:account_relationship_severance_event,
|
2024-06-20 13:44:49 +00:00
|
|
|
:account_warning,
|
2024-06-03 08:35:59 +00:00
|
|
|
to: :notification, prefix: false
|
|
|
|
end
|