2021-09-02 23:31:14 -04:00
|
|
|
defmodule CanneryWeb.AmmoGroupLive.Index do
|
2022-01-22 21:40:29 -05:00
|
|
|
@moduledoc """
|
|
|
|
Liveview to show a Cannery.Ammo.AmmoGroup index
|
|
|
|
"""
|
|
|
|
|
2021-09-02 23:31:14 -04:00
|
|
|
use CanneryWeb, :live_view
|
2022-02-15 17:33:45 -05:00
|
|
|
alias Cannery.{Ammo, Ammo.AmmoGroup, Repo}
|
|
|
|
alias CanneryWeb.Endpoint
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
@impl true
|
2021-09-02 23:31:16 -04:00
|
|
|
def mount(_params, session, socket) do
|
2022-02-01 00:14:14 -05:00
|
|
|
{:ok, socket |> assign_defaults(session) |> display_ammo_groups()}
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
2022-02-10 00:57:56 -05:00
|
|
|
def handle_params(params, _url, %{assigns: %{live_action: live_action}} = socket) do
|
|
|
|
{:noreply, apply_action(socket, live_action, params)}
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-02-15 18:20:12 -05:00
|
|
|
defp apply_action(%{assigns: %{current_user: current_user}} = socket, :move, %{"id" => id}) do
|
|
|
|
socket
|
|
|
|
|> assign(:page_title, gettext("Move Ammo group"))
|
|
|
|
|> assign(:ammo_group, Ammo.get_ammo_group!(id, current_user))
|
|
|
|
end
|
|
|
|
|
2022-02-10 00:57:56 -05:00
|
|
|
defp apply_action(%{assigns: %{current_user: current_user}} = socket, :edit, %{"id" => id}) do
|
2021-09-02 23:31:14 -04:00
|
|
|
socket
|
2022-02-09 00:20:04 -05:00
|
|
|
|> assign(:page_title, gettext("Edit Ammo group"))
|
2022-02-10 00:57:56 -05:00
|
|
|
|> assign(:ammo_group, Ammo.get_ammo_group!(id, current_user))
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
defp apply_action(socket, :new, _params) do
|
|
|
|
socket
|
2022-02-09 00:20:04 -05:00
|
|
|
|> assign(:page_title, dgettext("actions", "Add Ammo"))
|
2021-09-02 23:31:14 -04:00
|
|
|
|> assign(:ammo_group, %AmmoGroup{})
|
|
|
|
end
|
|
|
|
|
|
|
|
defp apply_action(socket, :index, _params) do
|
2022-02-15 17:33:07 -05:00
|
|
|
socket |> assign(:page_title, gettext("Ammo groups")) |> assign(:ammo_group, nil)
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
@impl true
|
2022-02-10 00:57:56 -05:00
|
|
|
def handle_event("delete", %{"id" => id}, %{assigns: %{current_user: current_user}} = socket) do
|
|
|
|
Ammo.get_ammo_group!(id, current_user) |> Ammo.delete_ammo_group!(current_user)
|
|
|
|
|
|
|
|
prompt = dgettext("prompts", "Ammo group deleted succesfully")
|
|
|
|
|
|
|
|
{:noreply, socket |> put_flash(:info, prompt) |> display_ammo_groups()}
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
|
2022-02-15 17:33:45 -05:00
|
|
|
@impl true
|
|
|
|
def handle_event(
|
|
|
|
"toggle_staged",
|
|
|
|
%{"ammo_group_id" => id},
|
|
|
|
%{assigns: %{current_user: current_user}} = socket
|
|
|
|
) do
|
|
|
|
ammo_group = Ammo.get_ammo_group!(id, current_user)
|
|
|
|
|
|
|
|
{:ok, _ammo_group} =
|
|
|
|
ammo_group |> Ammo.update_ammo_group(%{"staged" => !ammo_group.staged}, current_user)
|
|
|
|
|
|
|
|
{:noreply, socket |> display_ammo_groups()}
|
|
|
|
end
|
|
|
|
|
2022-02-01 00:14:14 -05:00
|
|
|
defp display_ammo_groups(%{assigns: %{current_user: current_user}} = socket) do
|
2022-02-15 17:33:45 -05:00
|
|
|
ammo_groups = Ammo.list_ammo_groups(current_user) |> Repo.preload([:ammo_type, :container])
|
|
|
|
socket |> assign(:ammo_groups, ammo_groups)
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
|
|
|
end
|