在邮箱的收件箱部分中显示的每条消息旁边,如何显示“未读消息”?

时间:2019-01-25 00:12:47

标签: ruby-on-rails ruby mailboxer

问题:收件箱中的每封邮件旁边如何显示“未读邮件”?

我使用信箱gem为我的应用程序创建了一个内部邮件系统。我的问题是,当我进入“收件箱”部分并查看已发送到我的用户帐户的所有消息时,我希望能够看到哪些消息尚未阅读。

我的代码:

<div class="media-body">
    <h4 class="media-heading">
    <b> Sender:  </b> <%=  conversation.originator.username %> <br>
    </h4>
<small><b>Subject: </b><%= conversation.subject %></small><br>
<small><b>Date: </b><%=  conversation.messages.last.created_at.strftime("%A, %b %d, %Y at %I:%M%p") %></small><br>
<b> Recent message: </b> <%= truncate conversation.messages.last.body, length: 145 %>
    <%= link_to "View", conversation_path(conversation)  %>
</div>

此代码在收件箱中的邮件中找出未读的邮件,并对它们进行计数,这样我就知道哪些邮件未读。

module MailboxHelper
    def unread_messages_count
    # how to get the number of unread messages for the current user
    # using mailboxer
        mailbox.inbox(:unread => true).count(:id, :distinct => true)
    end
end

我在模式中唯一可以识别的是邮箱的gem生成的是布尔值is_read:

create_table "mailboxer_receipts", force: :cascade do |t|
    t.integer  "receiver_id"
    t.string   "receiver_type"
    t.integer  "notification_id",                            null: false
    t.boolean  "is_read",                    default: false
    t.boolean  "trashed",                    default: false
    t.boolean  "deleted",                    default: false
    t.string   "mailbox_type",    limit: 25
    t.datetime "created_at",                                 null: false
    t.datetime "updated_at",                                 null: false
    t.boolean  "is_delivered",               default: false
    t.string   "delivery_method"
    t.string   "message_id"
  end

我想根据这些信息,我不确定如何将所有内容捆绑在一起,因此当我进入收件箱视图并查看我的所有邮件时,我希望“未读”或其中的每条邮件都出现一些内容收件箱。我该怎么办?

此外,您还需要什么其他信息?邮箱gem已经生成了相当多的代码,但是我不确定与这个问题有关。

1 个答案:

答案 0 :(得分:1)

实际上,邮筒在对话记录中有方法是未读?(当前用户) 您可以将其用于上面的任务

例如下面的对话控制器

@mailbox ||= current_user.mailbox
@conversations = @mailbox.inbox

在您的视图文件(index_inbox.html.erb)

<%=  @conversations.each do |conversation| %>
  # this to show subject that link to conversation
  <%= link_to conversation.subject, conversation_path(conversation) %>
  <% if conversation.is_unread?(current_user) %>
    (unread message)
  <% end %>
<% end %>