mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08:00
b79ea986ac
Introduce the concept of "high priority notifications" which include PM and bookmark reminder notifications. Now bookmark reminder notifications act in the same way as PM notifications (float to top of recent list, show in the green bubble) and most instances of unread_private_messages in the UI have been replaced with unread_high_priority_notifications. The user email digest is changed to just have a section about unread high priority notifications, the unread PM section has been removed. A high_priority boolean column has been added to the Notification table and relevant indices added to account for it. unread_private_messages has been kept on the User model purely for backwards compat, but now just returns unread_high_priority_notifications count so this may cause some inconsistencies in the UI.
108 lines
3.3 KiB
Ruby
108 lines
3.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:notification) do
|
|
transient :post
|
|
notification_type Notification.types[:mentioned]
|
|
high_priority false
|
|
user
|
|
topic { |attrs| attrs[:post]&.topic || Fabricate(:topic, user: attrs[:user]) }
|
|
post_number { |attrs| attrs[:post]&.post_number }
|
|
data '{"poison":"ivy","killer":"croc"}'
|
|
end
|
|
|
|
Fabricator(:quote_notification, from: :notification) do
|
|
notification_type Notification.types[:quoted]
|
|
user
|
|
topic { |attrs| Fabricate(:topic, user: attrs[:user]) }
|
|
end
|
|
|
|
Fabricator(:private_message_notification, from: :notification) do
|
|
notification_type Notification.types[:private_message]
|
|
high_priority true
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_post_type: post.post_type,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:bookmark_reminder_notification, from: :notification) do
|
|
notification_type Notification.types[:bookmark_reminder]
|
|
high_priority true
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_post_type: post.post_type,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username,
|
|
bookmark_name: "Check out Mr Freeze's opinion here"
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:replied_notification, from: :notification) do
|
|
notification_type Notification.types[:replied]
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:posted_notification, from: :notification) do
|
|
notification_type Notification.types[:posted]
|
|
data do |attrs|
|
|
post = attrs[:post] || Fabricate(:post, topic: attrs[:topic], user: attrs[:user])
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: post.id,
|
|
original_post_type: post.post_type,
|
|
original_username: post.user.username,
|
|
revision_number: nil,
|
|
display_username: post.user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:mentioned_notification, from: :notification) do
|
|
notification_type Notification.types[:mentioned]
|
|
data do |attrs|
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: attrs[:post].id,
|
|
original_post_type: attrs[:post].post_type,
|
|
original_username: attrs[:post].user.username,
|
|
revision_number: nil,
|
|
display_username: attrs[:post].user.username
|
|
}.to_json
|
|
end
|
|
end
|
|
|
|
Fabricator(:watching_first_post_notification, from: :notification) do
|
|
notification_type Notification.types[:watching_first_post]
|
|
data do |attrs|
|
|
{
|
|
topic_title: attrs[:topic].title,
|
|
original_post_id: attrs[:post].id,
|
|
original_post_type: attrs[:post].post_type,
|
|
original_username: attrs[:post].user.username,
|
|
revision_number: nil,
|
|
display_username: attrs[:post].user.username
|
|
}.to_json
|
|
end
|
|
end
|