2023-02-25 06:46:11 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module User::NotificationMethods
|
|
|
|
def unread_notification_count
|
2023-02-27 09:45:49 -08:00
|
|
|
Rails.cache.fetch(notification_cache_key) do
|
|
|
|
count = Notification.for(self).where(new: true).count(:id)
|
|
|
|
|
|
|
|
# Returning +nil+ here in order to not display a counter
|
|
|
|
# at all when there aren't any notifications
|
2023-02-25 06:46:11 -08:00
|
|
|
return nil unless count.positive?
|
|
|
|
|
|
|
|
count
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-27 09:45:49 -08:00
|
|
|
def notification_cache_key = "#{cache_key}/unread_notification_count-#{notifications_updated_at}"
|
2023-02-25 06:46:11 -08:00
|
|
|
end
|