Add Articles
mix phx.gen.live Articles Article articles title:string\ /Crucial/git/phoenix-liveview-book content:text url:string language:string\ date:utc_datetime author_id:references:authors
This commit is contained in:
21
lib/outlook_web/live/article_live/show.ex
Normal file
21
lib/outlook_web/live/article_live/show.ex
Normal file
@ -0,0 +1,21 @@
|
||||
defmodule OutlookWeb.ArticleLive.Show do
|
||||
use OutlookWeb, :live_view
|
||||
|
||||
alias Outlook.Articles
|
||||
|
||||
@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(:article, Articles.get_article!(id))}
|
||||
end
|
||||
|
||||
defp page_title(:show), do: "Show Article"
|
||||
defp page_title(:edit), do: "Edit Article"
|
||||
end
|
||||
Reference in New Issue
Block a user