philomena/lib/philomena_web/views/conversation_view.ex

33 lines
803 B
Elixir
Raw Normal View History

2019-11-16 05:38:42 +01:00
defmodule PhilomenaWeb.ConversationView do
use PhilomenaWeb, :view
2019-11-18 17:00:08 +01:00
def other_party(%{id: user_id}, %{to_id: user_id} = conversation),
2019-11-16 05:38:42 +01:00
do: conversation.from
2019-11-18 17:00:08 +01:00
def other_party(_user, conversation),
2019-11-16 05:38:42 +01:00
do: conversation.to
2019-11-18 17:00:08 +01:00
def read_by?(%{id: user_id}, %{to_id: user_id} = conversation),
do: conversation.to_read
def read_by?(%{id: user_id}, %{from_id: user_id} = conversation),
do: conversation.from_read
def read_by?(_user, _conversation),
do: false
def conversation_class(user, conversation) do
case read_by?(user, conversation) do
false -> "warning"
_ -> nil
end
end
2019-12-08 00:24:37 +01:00
def last_message_path(conn, conversation, count) do
page = trunc(Float.ceil(count / 25))
Routes.conversation_path(conn, :show, conversation, page: page)
end
2019-11-16 05:38:42 +01:00
end