cannery/lib/cannery_web/live/ammo_type_live/show.ex

39 lines
1.0 KiB
Elixir
Raw Normal View History

2021-09-02 23:31:14 -04:00
defmodule CanneryWeb.AmmoTypeLive.Show do
2022-01-22 21:40:29 -05:00
@moduledoc """
Liveview for showing and editing an Cannery.Ammo.AmmoType
"""
2021-09-02 23:31:14 -04:00
use CanneryWeb, :live_view
2022-02-05 01:59:40 -05:00
import CanneryWeb.AmmoGroupLive.AmmoGroupCard
alias Cannery.{Ammo, Repo}
2021-09-02 23:31:14 -04:00
@impl true
2021-09-02 23:31:16 -04:00
def mount(_params, session, socket) do
{:ok, socket |> assign_defaults(session)}
2021-09-02 23:31:14 -04:00
end
@impl true
def handle_params(%{"id" => id}, _, socket) do
ammo_type = Ammo.get_ammo_type!(id) |> Repo.preload(:ammo_groups)
2022-02-05 01:59:40 -05:00
socket =
socket
|> assign(
page_title: page_title(socket.assigns.live_action),
ammo_type: ammo_type,
avg_cost_per_round: ammo_type |> Ammo.get_average_cost_for_ammo_type!()
2022-02-05 01:59:40 -05:00
)
{:noreply, socket}
2021-09-02 23:31:14 -04:00
end
2022-01-31 23:20:57 -05:00
@impl true
def handle_event("delete", _, socket) do
socket.assigns.ammo_type |> Ammo.delete_ammo_type!()
{:noreply, socket |> push_redirect(to: Routes.ammo_type_index_path(socket, :index))}
end
2021-09-02 23:31:14 -04:00
defp page_title(:show), do: "Show Ammo type"
defp page_title(:edit), do: "Edit Ammo type"
end