mirror of
https://github.com/fergalmoran/malarkey.git
synced 2025-12-22 09:48:46 +00:00
22 lines
476 B
Elixir
22 lines
476 B
Elixir
defmodule MalarkeyWeb.PostLive.Show do
|
|
use MalarkeyWeb, :live_view
|
|
|
|
alias Malarkey.Timeline
|
|
|
|
@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(:post, Timeline.get_post!(id))}
|
|
end
|
|
|
|
defp page_title(:show), do: "Show Post"
|
|
defp page_title(:edit), do: "Edit Post"
|
|
end
|