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-23 20:34:07 -05:00
|
|
|
alias Cannery.{Ammo, Ammo.AmmoGroup, Containers, Repo}
|
2022-02-15 17:33:45 -05:00
|
|
|
alias CanneryWeb.Endpoint
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
@impl true
|
2022-05-05 23:26:29 -04:00
|
|
|
def mount(_params, _session, socket) do
|
2022-11-07 00:47:22 -05:00
|
|
|
{:ok, socket |> assign(show_used: false) |> 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-23 20:34:07 -05:00
|
|
|
defp apply_action(
|
|
|
|
%{assigns: %{current_user: current_user}} = socket,
|
|
|
|
:add_shot_group,
|
|
|
|
%{"id" => id}
|
|
|
|
) do
|
2022-02-17 21:19:01 -05:00
|
|
|
socket
|
|
|
|
|> assign(:page_title, gettext("Record shots"))
|
|
|
|
|> assign(:ammo_group, Ammo.get_ammo_group!(id, current_user))
|
|
|
|
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-11-07 00:47:22 -05:00
|
|
|
@impl true
|
2022-11-07 01:36:28 -05:00
|
|
|
def handle_event("toggle_show_used", _params, %{assigns: %{show_used: show_used}} = socket) do
|
2022-11-07 00:47:22 -05:00
|
|
|
{:noreply, socket |> assign(:show_used, !show_used) |> display_ammo_groups()}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp display_ammo_groups(
|
|
|
|
%{assigns: %{current_user: current_user, show_used: show_used}} = socket
|
|
|
|
) do
|
|
|
|
ammo_groups =
|
|
|
|
Ammo.list_ammo_groups(current_user, show_used) |> Repo.preload([:ammo_type, :container])
|
|
|
|
|
2022-07-04 21:41:07 -04:00
|
|
|
ammo_types_count = Ammo.get_ammo_types_count!(current_user)
|
|
|
|
containers_count = Containers.get_containers_count!(current_user)
|
2022-03-04 20:00:09 -05:00
|
|
|
|
|
|
|
columns = [
|
2022-11-07 01:36:28 -05:00
|
|
|
%{label: gettext("Ammo type"), key: :ammo_type},
|
|
|
|
%{label: gettext("Count"), key: :count},
|
|
|
|
%{label: gettext("Price paid"), key: :price_paid},
|
|
|
|
%{label: gettext("% left"), key: :remaining},
|
|
|
|
%{label: gettext("Range"), key: :range},
|
|
|
|
%{label: gettext("Container"), key: :container},
|
|
|
|
%{label: gettext("Added on"), key: :added_on}
|
2022-03-04 20:00:09 -05:00
|
|
|
]
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
columns =
|
|
|
|
if show_used do
|
|
|
|
columns ++ [%{label: gettext("Used up on"), key: :used_up_on}]
|
|
|
|
else
|
|
|
|
columns
|
|
|
|
end
|
|
|
|
|
|
|
|
columns = columns ++ [%{label: nil, key: :actions, sortable: false}]
|
|
|
|
|
2022-03-04 20:00:09 -05:00
|
|
|
rows =
|
|
|
|
ammo_groups
|
2022-03-04 22:27:09 -05:00
|
|
|
|> Enum.map(fn ammo_group -> ammo_group |> get_row_data_for_ammo_group(columns) end)
|
2022-03-04 20:00:09 -05:00
|
|
|
|
|
|
|
socket
|
2022-07-04 21:41:07 -04:00
|
|
|
|> assign(
|
|
|
|
ammo_groups: ammo_groups,
|
|
|
|
ammo_types_count: ammo_types_count,
|
|
|
|
containers_count: containers_count,
|
|
|
|
columns: columns,
|
|
|
|
rows: rows
|
|
|
|
)
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|
2022-03-04 22:27:09 -05:00
|
|
|
|
|
|
|
@spec get_row_data_for_ammo_group(AmmoGroup.t(), [map()]) :: [map()]
|
|
|
|
defp get_row_data_for_ammo_group(ammo_group, columns) do
|
|
|
|
ammo_group = ammo_group |> Repo.preload([:ammo_type, :container])
|
|
|
|
|
|
|
|
columns
|
|
|
|
|> Enum.into(%{}, fn %{key: key} -> {key, get_value_for_key(key, ammo_group)} end)
|
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
@spec get_value_for_key(atom(), AmmoGroup.t()) :: any()
|
|
|
|
defp get_value_for_key(:ammo_type, %{ammo_type: ammo_type}) do
|
2022-11-07 22:36:38 -05:00
|
|
|
assigns = %{ammo_type: ammo_type}
|
|
|
|
|
2022-03-04 22:27:09 -05:00
|
|
|
{ammo_type.name,
|
2022-11-07 22:36:38 -05:00
|
|
|
~H"""
|
2022-11-09 23:47:11 -05:00
|
|
|
<.link navigate={Routes.ammo_type_show_path(Endpoint, :show, @ammo_type)} class="link">
|
2022-11-07 22:36:38 -05:00
|
|
|
<%= @ammo_type.name %>
|
|
|
|
</.link>
|
|
|
|
"""}
|
2022-03-04 22:27:09 -05:00
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:price_paid, %{price_paid: nil}), do: {"a", nil}
|
2022-03-04 22:27:09 -05:00
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:price_paid, %{price_paid: price_paid}),
|
2022-03-04 22:27:09 -05:00
|
|
|
do: gettext("$%{amount}", amount: price_paid |> :erlang.float_to_binary(decimals: 2))
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:added_on, %{inserted_at: inserted_at}) do
|
2022-05-05 21:43:03 -04:00
|
|
|
assigns = %{inserted_at: inserted_at}
|
|
|
|
|
|
|
|
{inserted_at,
|
|
|
|
~H"""
|
|
|
|
<%= @inserted_at |> display_datetime() %>
|
|
|
|
"""}
|
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:used_up_on, ammo_group) do
|
|
|
|
last_shot_group_date =
|
|
|
|
case ammo_group |> Ammo.get_last_used_shot_group() do
|
|
|
|
%{date: last_shot_group_date} -> last_shot_group_date
|
|
|
|
_no_shot_groups -> nil
|
|
|
|
end
|
|
|
|
|
|
|
|
assigns = %{last_shot_group_date: last_shot_group_date}
|
|
|
|
|
|
|
|
{last_shot_group_date,
|
|
|
|
~H"""
|
|
|
|
<%= @last_shot_group_date |> display_date() %>
|
|
|
|
"""}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_value_for_key(:range, %{staged: staged} = ammo_group) do
|
2022-03-04 22:27:09 -05:00
|
|
|
assigns = %{ammo_group: ammo_group}
|
|
|
|
|
|
|
|
{staged,
|
|
|
|
~H"""
|
2022-11-06 20:29:12 -05:00
|
|
|
<div class="min-w-20 py-2 px-4 h-full flex flew-wrap justify-center items-center">
|
2022-03-28 23:56:56 -04:00
|
|
|
<button
|
|
|
|
type="button"
|
2022-11-06 20:29:12 -05:00
|
|
|
class="mx-2 my-1 text-sm btn btn-primary"
|
2022-03-28 23:56:56 -04:00
|
|
|
phx-click="toggle_staged"
|
2022-11-07 22:36:38 -05:00
|
|
|
phx-value-ammo_group_id={@ammo_group.id}
|
2022-03-28 23:56:56 -04:00
|
|
|
>
|
2022-11-07 22:36:38 -05:00
|
|
|
<%= if @ammo_group.staged, do: gettext("Unstage"), else: gettext("Stage") %>
|
2022-03-28 23:56:56 -04:00
|
|
|
</button>
|
|
|
|
|
2022-11-07 22:36:38 -05:00
|
|
|
<.link
|
|
|
|
patch={Routes.ammo_group_index_path(Endpoint, :add_shot_group, @ammo_group)}
|
|
|
|
class="mx-2 my-1 text-sm btn btn-primary"
|
|
|
|
>
|
|
|
|
<%= dgettext("actions", "Record shots") %>
|
|
|
|
</.link>
|
2022-03-28 23:56:56 -04:00
|
|
|
</div>
|
2022-03-04 22:27:09 -05:00
|
|
|
"""}
|
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:remaining, ammo_group),
|
2022-11-08 21:34:36 -05:00
|
|
|
do: gettext("%{percentage}%", percentage: ammo_group |> Ammo.get_percentage_remaining())
|
2022-03-04 22:27:09 -05:00
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:actions, ammo_group) do
|
2022-03-04 22:27:09 -05:00
|
|
|
assigns = %{ammo_group: ammo_group}
|
|
|
|
|
|
|
|
~H"""
|
|
|
|
<div class="py-2 px-4 h-full space-x-4 flex justify-center items-center">
|
2022-11-07 22:36:38 -05:00
|
|
|
<.link
|
2022-11-09 23:47:11 -05:00
|
|
|
navigate={Routes.ammo_group_show_path(Endpoint, :show, @ammo_group)}
|
2022-11-07 22:36:38 -05:00
|
|
|
class="text-primary-600 link"
|
|
|
|
data-qa={"view-#{@ammo_group.id}"}
|
|
|
|
>
|
2022-03-04 22:27:09 -05:00
|
|
|
<i class="fa-fw fa-lg fas fa-eye"></i>
|
2022-11-07 22:36:38 -05:00
|
|
|
</.link>
|
2022-03-04 22:27:09 -05:00
|
|
|
|
2022-11-07 22:36:38 -05:00
|
|
|
<.link
|
|
|
|
patch={Routes.ammo_group_index_path(Endpoint, :edit, @ammo_group)}
|
|
|
|
class="text-primary-600 link"
|
|
|
|
data-qa={"edit-#{@ammo_group.id}"}
|
|
|
|
>
|
2022-03-04 22:27:09 -05:00
|
|
|
<i class="fa-fw fa-lg fas fa-edit"></i>
|
2022-11-07 22:36:38 -05:00
|
|
|
</.link>
|
|
|
|
|
|
|
|
<.link
|
|
|
|
href="#"
|
|
|
|
class="text-primary-600 link"
|
|
|
|
phx-click="delete"
|
|
|
|
phx-value-id={@ammo_group.id}
|
|
|
|
data-confirm={dgettext("prompts", "Are you sure you want to delete this ammo?")}
|
|
|
|
data-qa={"delete-#{@ammo_group.id}"}
|
|
|
|
>
|
2022-03-04 22:27:09 -05:00
|
|
|
<i class="fa-fw fa-lg fas fa-trash"></i>
|
2022-11-07 22:36:38 -05:00
|
|
|
</.link>
|
2022-03-04 22:27:09 -05:00
|
|
|
</div>
|
|
|
|
"""
|
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:container, %{container: nil}), do: {nil, nil}
|
2022-03-04 22:27:09 -05:00
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(:container, %{container: %{name: container_name}} = ammo_group) do
|
2022-03-28 23:56:56 -04:00
|
|
|
assigns = %{ammo_group: ammo_group}
|
|
|
|
|
2022-03-04 22:27:09 -05:00
|
|
|
{container_name,
|
2022-03-28 23:56:56 -04:00
|
|
|
~H"""
|
2022-11-06 20:29:12 -05:00
|
|
|
<div class="min-w-20 py-2 px-4 h-full flex flew-wrap justify-center items-center">
|
2022-11-07 22:36:38 -05:00
|
|
|
<.link
|
2022-11-09 23:47:11 -05:00
|
|
|
navigate={Routes.container_show_path(Endpoint, :show, @ammo_group.container)}
|
2022-11-07 22:36:38 -05:00
|
|
|
class="mx-2 my-1 link"
|
|
|
|
>
|
|
|
|
<%= @ammo_group.container.name %>
|
|
|
|
</.link>
|
|
|
|
|
|
|
|
<.link
|
|
|
|
patch={Routes.ammo_group_index_path(Endpoint, :move, @ammo_group)}
|
|
|
|
class="mx-2 my-1 text-sm btn btn-primary"
|
|
|
|
>
|
|
|
|
<%= gettext("Move ammo") %>
|
|
|
|
</.link>
|
2022-03-28 23:56:56 -04:00
|
|
|
</div>
|
|
|
|
"""}
|
2022-03-04 22:27:09 -05:00
|
|
|
end
|
|
|
|
|
2022-11-07 01:36:28 -05:00
|
|
|
defp get_value_for_key(key, ammo_group), do: ammo_group |> Map.get(key)
|
2021-09-02 23:31:14 -04:00
|
|
|
end
|