Autogen Yield liveviews

This commit is contained in:
2023-06-08 21:07:00 +03:00
parent 090053c312
commit 3a983516c9
13 changed files with 578 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
defmodule OsuuspuutarhaWeb.YieldLive.Show do
use OsuuspuutarhaWeb, :live_view
alias Osuuspuutarha.Harvest
@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(:yield, Harvest.get_yield!(id))}
end
defp page_title(:show), do: "Show Yield"
defp page_title(:edit), do: "Edit Yield"
end