42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| defmodule CanneryWeb.AmmoGroupLive.Show do
 | |
|   @moduledoc """
 | |
|   Liveview for showing and editing an Cannery.Ammo.AmmoGroup
 | |
|   """
 | |
| 
 | |
|   use CanneryWeb, :live_view
 | |
|   import CanneryWeb.ContainerLive.ContainerCard
 | |
|   alias Cannery.{Ammo, Repo}
 | |
| 
 | |
|   @impl true
 | |
|   def mount(_params, session, socket) do
 | |
|     {:ok, socket |> assign_defaults(session)}
 | |
|   end
 | |
| 
 | |
|   @impl true
 | |
|   def handle_params(
 | |
|         %{"id" => id},
 | |
|         _,
 | |
|         %{assigns: %{live_action: live_action, current_user: current_user}} = socket
 | |
|       ) do
 | |
|     ammo_group = Ammo.get_ammo_group!(id, current_user) |> Repo.preload([:container, :ammo_type])
 | |
|     {:noreply, socket |> assign(page_title: page_title(live_action), ammo_group: ammo_group)}
 | |
|   end
 | |
| 
 | |
|   @impl true
 | |
|   def handle_event(
 | |
|         "delete",
 | |
|         _,
 | |
|         %{assigns: %{ammo_group: ammo_group, current_user: current_user}} = socket
 | |
|       ) do
 | |
|     ammo_group |> Ammo.delete_ammo_group!(current_user)
 | |
| 
 | |
|     prompt = dgettext("prompts", "Ammo group deleted succesfully")
 | |
|     redirect_to = Routes.ammo_group_index_path(socket, :index)
 | |
| 
 | |
|     {:noreply, socket |> put_flash(:info, prompt) |> push_redirect(to: redirect_to)}
 | |
|   end
 | |
| 
 | |
|   defp page_title(:show), do: gettext("Show Ammo group")
 | |
|   defp page_title(:edit), do: gettext("Edit Ammo group")
 | |
| end
 |