Initial commit
This commit is contained in:
21
lib/something_erlang_web/live/thread_live/show.ex
Normal file
21
lib/something_erlang_web/live/thread_live/show.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule SomethingErlangWeb.ThreadLive.Show do
|
||||
use SomethingErlangWeb, :live_view
|
||||
|
||||
alias SomethingErlang.Forums
|
||||
|
||||
@impl true
|
||||
def mount(_params, _session, socket) do
|
||||
{:ok, socket}
|
||||
end
|
||||
|
||||
@impl true
|
||||
def handle_params(%{"id" => id}, _, socket) do
|
||||
{:noreply,
|
||||
socket
|
||||
|> assign(:page_title, page_title(socket.assigns.live_action))
|
||||
|> assign(:thread, Forums.get_thread!(id))}
|
||||
end
|
||||
|
||||
defp page_title(:show), do: "Show Thread"
|
||||
defp page_title(:edit), do: "Edit Thread"
|
||||
end
|
Reference in New Issue
Block a user