philomena/lib/philomena_web/views/conversation_view.ex

27 lines
632 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-11-16 05:38:42 +01:00
end