update
This commit is contained in:
parent
e2967f68b2
commit
ef2a6c41b4
39 changed files with 2349 additions and 30 deletions
21
lib/zoeyscomputer_web/live/image_live/show.ex
Normal file
21
lib/zoeyscomputer_web/live/image_live/show.ex
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
defmodule ZoeyscomputerWeb.ImageLive.Show do
|
||||
use ZoeyscomputerWeb, :live_view
|
||||
|
||||
alias Zoeyscomputer.Images
|
||||
|
||||
@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(:image, Images.get_image_by!(id))}
|
||||
end
|
||||
|
||||
defp page_title(:show), do: "Show Image"
|
||||
defp page_title(:edit), do: "Edit Image"
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue