mix phx.gen.live Authors Author authors name:string description:text homepage_name:string homepage_url:string
22 lines
481 B
Elixir
22 lines
481 B
Elixir
defmodule OutlookWeb.AuthorLive.Show do
|
|
use OutlookWeb, :live_view
|
|
|
|
alias Outlook.Authors
|
|
|
|
@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(:author, Authors.get_author!(id))}
|
|
end
|
|
|
|
defp page_title(:show), do: "Show Author"
|
|
defp page_title(:edit), do: "Edit Author"
|
|
end
|