Add initial project

This commit is contained in:
2023-11-23 00:36:49 +00:00
parent f6860b86c9
commit b9569dcf6b
964 changed files with 9664 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
defmodule WishWeb.ItemLive.Show do
use WishWeb, :live_view
alias Wish.Wishlist
@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(:item, Wishlist.get_item!(id))}
end
defp page_title(:show), do: "Show Item"
defp page_title(:edit), do: "Edit Item"
end