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

178 lines
5.5 KiB
Elixir
Raw Normal View History

2023-03-29 22:54:55 -04:00
defmodule CanneryWeb.PackLive.Show do
2022-01-22 21:40:29 -05:00
@moduledoc """
2023-03-29 22:54:55 -04:00
Liveview for showing and editing an Cannery.Ammo.Pack
2022-01-22 21:40:29 -05:00
"""
2021-09-02 23:31:14 -04:00
use CanneryWeb, :live_view
alias Cannery.{ActivityLog, ActivityLog.ShotGroup}
2023-03-29 22:54:55 -04:00
alias Cannery.{Ammo, Ammo.Pack}
2023-03-19 11:19:55 -04:00
alias Cannery.{ComparableDate, Containers}
2022-02-15 17:33:45 -05:00
alias CanneryWeb.Endpoint
alias Phoenix.LiveView.Socket
2021-09-02 23:31:14 -04:00
@impl true
2022-05-05 23:26:29 -04:00
def mount(_params, _session, socket), do: {:ok, socket}
2021-09-02 23:31:14 -04:00
@impl true
def handle_params(
%{"id" => id, "shot_group_id" => shot_group_id},
_url,
%{assigns: %{live_action: live_action, current_user: current_user}} = socket
) do
shot_group = ActivityLog.get_shot_group!(shot_group_id, current_user)
socket =
socket
|> assign(page_title: page_title(live_action), shot_group: shot_group)
2023-03-29 22:54:55 -04:00
|> display_pack(id)
{:noreply, socket}
end
def handle_params(%{"id" => id}, _url, %{assigns: %{live_action: live_action}} = socket) do
socket =
socket
|> assign(page_title: page_title(live_action))
2023-03-29 22:54:55 -04:00
|> display_pack(id)
{:noreply, socket}
2022-02-05 01:59:40 -05:00
end
defp page_title(:add_shot_group), do: gettext("Record Shots")
defp page_title(:edit_shot_group), do: gettext("Edit Shot Records")
2022-07-01 00:23:04 -04:00
defp page_title(:move), do: gettext("Move Ammo")
defp page_title(:show), do: gettext("Show Ammo")
defp page_title(:edit), do: gettext("Edit Ammo")
2022-02-05 01:59:40 -05:00
@impl true
def handle_event(
"delete",
2022-03-28 23:05:12 -04:00
_params,
2023-03-29 22:54:55 -04:00
%{assigns: %{pack: pack, current_user: current_user}} = socket
) do
2023-03-29 22:54:55 -04:00
pack |> Ammo.delete_pack!(current_user)
2022-07-01 00:23:04 -04:00
prompt = dgettext("prompts", "Ammo deleted succesfully")
2023-03-29 22:54:55 -04:00
redirect_to = Routes.pack_index_path(socket, :index)
{:noreply, socket |> put_flash(:info, prompt) |> push_navigate(to: redirect_to)}
2021-09-02 23:31:14 -04:00
end
2022-02-15 17:33:45 -05:00
def handle_event(
"toggle_staged",
2022-03-28 23:05:12 -04:00
_params,
2023-03-29 22:54:55 -04:00
%{assigns: %{pack: pack, current_user: current_user}} = socket
2022-02-15 17:33:45 -05:00
) do
2023-03-29 22:54:55 -04:00
{:ok, pack} = pack |> Ammo.update_pack(%{"staged" => !pack.staged}, current_user)
2022-02-15 17:33:45 -05:00
2023-03-29 22:54:55 -04:00
{:noreply, socket |> display_pack(pack)}
2022-02-15 17:33:45 -05:00
end
def handle_event(
"delete_shot_group",
%{"id" => id},
2023-03-29 22:54:55 -04:00
%{assigns: %{pack: %{id: pack_id}, current_user: current_user}} = socket
) do
{:ok, _} =
ActivityLog.get_shot_group!(id, current_user)
|> ActivityLog.delete_shot_group(current_user)
prompt = dgettext("prompts", "Shot records deleted succesfully")
2023-03-29 22:54:55 -04:00
{:noreply, socket |> put_flash(:info, prompt) |> display_pack(pack_id)}
end
2023-03-29 22:54:55 -04:00
@spec display_pack(Socket.t(), Pack.t() | Pack.id()) :: Socket.t()
defp display_pack(
%{assigns: %{current_user: current_user}} = socket,
2023-03-29 22:54:55 -04:00
%Pack{container_id: container_id} = pack
) do
columns = [
2022-11-07 01:36:28 -05:00
%{label: gettext("Rounds shot"), key: :count},
%{label: gettext("Notes"), key: :notes},
2023-03-19 11:19:55 -04:00
%{label: gettext("Date"), key: :date, type: ComparableDate},
2023-03-19 12:35:26 -04:00
%{label: gettext("Actions"), key: :actions, sortable: false}
]
2023-03-29 22:54:55 -04:00
shot_groups = ActivityLog.list_shot_groups_for_pack(pack, current_user)
rows =
shot_groups
|> Enum.map(fn shot_group ->
2023-03-29 22:54:55 -04:00
pack |> get_table_row_for_shot_group(shot_group, columns)
end)
socket
|> assign(
2023-03-29 22:54:55 -04:00
pack: pack,
original_count: Ammo.get_original_count(pack, current_user),
percentage_remaining: Ammo.get_percentage_remaining(pack, current_user),
container: container_id && Containers.get_container!(container_id, current_user),
shot_groups: shot_groups,
columns: columns,
rows: rows
)
end
2023-03-29 22:54:55 -04:00
defp display_pack(%{assigns: %{current_user: current_user}} = socket, id),
do: display_pack(socket, Ammo.get_pack!(id, current_user))
@spec display_currency(float()) :: String.t()
defp display_currency(float), do: :erlang.float_to_binary(float, decimals: 2)
2023-03-29 22:54:55 -04:00
@spec get_table_row_for_shot_group(Pack.t(), ShotGroup.t(), [map()]) :: map()
defp get_table_row_for_shot_group(pack, %{id: id, date: date} = shot_group, columns) do
assigns = %{pack: pack, shot_group: shot_group}
columns
|> Map.new(fn %{key: key} ->
value =
case key do
2022-11-07 01:36:28 -05:00
:date ->
assigns = %{id: id, date: date}
2023-01-26 00:39:16 -05:00
{date,
~H"""
<.date id={"#{@id}-date"} date={@date} />
2023-01-26 00:39:16 -05:00
"""}
2022-11-07 01:36:28 -05:00
:actions ->
~H"""
<div class="px-4 py-2 space-x-4 flex justify-center items-center">
<.link
2023-03-29 22:54:55 -04:00
patch={Routes.pack_show_path(Endpoint, :edit_shot_group, @pack, @shot_group)}
class="text-primary-600 link"
2023-03-15 00:45:08 -04:00
aria-label={
2023-03-17 21:00:24 -04:00
dgettext("actions", "Edit shot group of %{shot_group_count} shots",
shot_group_count: @shot_group.count
)
2023-03-15 00:45:08 -04:00
}
>
<i class="fa-fw fa-lg fas fa-edit"></i>
</.link>
<.link
href="#"
class="text-primary-600 link"
phx-click="delete_shot_group"
phx-value-id={@shot_group.id}
data-confirm={dgettext("prompts", "Are you sure you want to delete this shot record?")}
2023-03-15 00:45:08 -04:00
aria-label={
2023-03-17 21:00:24 -04:00
dgettext("actions", "Delete shot record of %{shot_group_count} shots",
2023-03-15 00:45:08 -04:00
shot_group_count: @shot_group.count
)
}
>
<i class="fa-fw fa-lg fas fa-trash"></i>
</.link>
</div>
"""
key ->
2022-11-07 01:36:28 -05:00
shot_group |> Map.get(key)
end
{key, value}
end)
end
2021-09-02 23:31:14 -04:00
end