blob: fa81d19960fe73abb7de1627c06e86befc6783c2 (
plain) (
tree)
|
|
defmodule LSGWeb.EventComponent do
use Phoenix.Component
def content(assigns = %{event: %{type: :day_changed}}) do
~H"""
Day changed:
<span class="reason"><%= Date.to_string(@date) %></span>
"""
end
def content(assigns = %{event: %{type: :quit}}) do
~H"""
<LSGWeb.Component.nick self={@self} nick={@user.nick} user_id={@user.id} account_id={@user.account} />
has quit:
<span class="reason"><%= @reason %></span>
"""
end
def content(assigns = %{event: %{type: :part}}) do
~H"""
<LSGWeb.Component.nick self={@self} nick={@user.nick} user_id={@user.id} account_id={@user.account} />
has left:
<span class="reason"><%= @reason %></span>
"""
end
def content(assigns = %{event: %{type: :nick}}) do
~H"""
<span class="old-nick"><%= @old_nick %></span>
is now known as
<LSGWeb.Component.nick self={@self} nick={@user.nick} user_id={@user.id} account_id={@user.account} />
"""
end
def content(assigns = %{event: %{type: :join}}) do
~H"""
<LSGWeb.Component.nick self={@self} nick={@user.nick} user_id={@user.id} account_id={@user.account} />
joined
"""
end
end
|