mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06:00
FIX: Likes received count in digest email (#21458)
This commit fixes an issue where the Likes Received notification count in the user digest email was not affected by the since/last_seen date for the user, which meant that no matter how long it had been since the user visited the count was always constant. Now instead for the Likes Received count, we only count the unread notifications of that type since the user was last seen.
This commit is contained in:
parent
9ae5ddb330
commit
7a1d60c60e
@ -291,6 +291,7 @@ class UserNotifications < ActionMailer::Base
|
||||
end
|
||||
@counts = [
|
||||
{
|
||||
id: "new_topics",
|
||||
label_key: "user_notifications.digest.new_topics",
|
||||
value: new_topics_count,
|
||||
href: "#{Discourse.base_url}/new",
|
||||
@ -303,6 +304,7 @@ class UserNotifications < ActionMailer::Base
|
||||
value = user.unread_notifications + user.unread_high_priority_notifications
|
||||
if value > 0
|
||||
@counts << {
|
||||
id: "unread_notifications",
|
||||
label_key: "user_notifications.digest.unread_notifications",
|
||||
value: value,
|
||||
href: "#{Discourse.base_url}/my/notifications",
|
||||
@ -310,9 +312,10 @@ class UserNotifications < ActionMailer::Base
|
||||
end
|
||||
|
||||
if @counts.size < 3
|
||||
value = user.unread_notifications_of_type(Notification.types[:liked])
|
||||
value = user.unread_notifications_of_type(Notification.types[:liked], since: min_date)
|
||||
if value > 0
|
||||
@counts << {
|
||||
id: "likes_received",
|
||||
label_key: "user_notifications.digest.liked_received",
|
||||
value: value,
|
||||
href: "#{Discourse.base_url}/my/notifications",
|
||||
@ -324,6 +327,7 @@ class UserNotifications < ActionMailer::Base
|
||||
value = summary_new_users_count(min_date)
|
||||
if value > 0
|
||||
@counts << {
|
||||
id: "new_users",
|
||||
label_key: "user_notifications.digest.new_users",
|
||||
value: value,
|
||||
href: "#{Discourse.base_url}/about",
|
||||
|
@ -607,7 +607,7 @@ class User < ActiveRecord::Base
|
||||
@muted_user_ids ||= muted_users.pluck(:id)
|
||||
end
|
||||
|
||||
def unread_notifications_of_type(notification_type)
|
||||
def unread_notifications_of_type(notification_type, since: nil)
|
||||
# perf critical, much more efficient than AR
|
||||
sql = <<~SQL
|
||||
SELECT COUNT(*)
|
||||
@ -617,10 +617,11 @@ class User < ActiveRecord::Base
|
||||
AND n.notification_type = :notification_type
|
||||
AND n.user_id = :user_id
|
||||
AND NOT read
|
||||
#{since ? "AND n.created_at > :since" : ""}
|
||||
SQL
|
||||
|
||||
# to avoid coalesce we do to_i
|
||||
DB.query_single(sql, user_id: id, notification_type: notification_type)[0].to_i
|
||||
DB.query_single(sql, user_id: id, notification_type: notification_type, since: since)[0].to_i
|
||||
end
|
||||
|
||||
def unread_notifications_of_priority(high_priority:)
|
||||
|
@ -56,14 +56,14 @@
|
||||
<tbody>
|
||||
<tr class="header-stat-count">
|
||||
<%- @counts.each do |count| -%>
|
||||
<td style="text-align:center;font-size:36px;font-weight:400;">
|
||||
<td id="<%= count[:id] %>_stat_count" style="text-align:center;font-size:36px;font-weight:400;">
|
||||
<a class="with-accent-colors" href="<%= count[:href] -%>"><strong><%= count[:value] -%></strong></a>
|
||||
</td>
|
||||
<%- end -%>
|
||||
</tr>
|
||||
<tr class="header-stat-description">
|
||||
<%- @counts.each do |count| -%>
|
||||
<td style="font-size:14px;font-weight:400;text-align:center;">
|
||||
<td id="<%= count[:id] %>_stat_description" style="font-size:14px;font-weight:400;text-align:center;">
|
||||
<a class="with-accent-colors" href="<%= count[:href] -%>"><strong><%=t count[:label_key] -%></strong></a>
|
||||
</td>
|
||||
<%- end -%>
|
||||
|
@ -214,6 +214,31 @@ RSpec.describe UserNotifications do
|
||||
expect(subject.subject).not_to match(/Discourse Meta/)
|
||||
end
|
||||
|
||||
it "includes unread likes received count within the since date" do
|
||||
Fabricate(
|
||||
:notification,
|
||||
user: user,
|
||||
notification_type: Notification.types[:liked],
|
||||
created_at: 2.months.ago,
|
||||
)
|
||||
Fabricate(
|
||||
:notification,
|
||||
user: user,
|
||||
notification_type: Notification.types[:liked],
|
||||
read: true,
|
||||
)
|
||||
Fabricate(:notification, user: user, notification_type: Notification.types[:liked])
|
||||
Fabricate(:notification, user: user, notification_type: Notification.types[:liked])
|
||||
digest = UserNotifications.digest(user, since: 1.month.ago.to_date.to_s)
|
||||
parsed_html = Nokogiri::HTML5.fragment(digest.html_part.body.to_s)
|
||||
expect(parsed_html.css(".header-stat-count #likes_received_stat_count strong").text).to eq(
|
||||
"2",
|
||||
)
|
||||
expect(
|
||||
parsed_html.css(".header-stat-description #likes_received_stat_description strong").text,
|
||||
).to eq("Likes Received")
|
||||
end
|
||||
|
||||
it "excludes deleted topics and their posts" do
|
||||
deleted =
|
||||
Fabricate(
|
||||
|
Loading…
Reference in New Issue
Block a user