diff --git a/lib/cannery_web/live/ammo_group_live/show.ex b/lib/cannery_web/live/ammo_group_live/show.ex index e6f10533..c29a44b6 100644 --- a/lib/cannery_web/live/ammo_group_live/show.ex +++ b/lib/cannery_web/live/ammo_group_live/show.ex @@ -5,7 +5,7 @@ defmodule CanneryWeb.AmmoGroupLive.Show do use CanneryWeb, :live_view import CanneryWeb.Components.ContainerCard - alias Cannery.{ActivityLog, Ammo, Ammo.AmmoGroup, Repo} + alias Cannery.{ActivityLog, ActivityLog.ShotGroup, Ammo, Ammo.AmmoGroup, Repo} alias CanneryWeb.Endpoint alias Phoenix.LiveView.Socket @@ -84,9 +84,64 @@ defmodule CanneryWeb.AmmoGroupLive.Show do @spec display_ammo_group(Socket.t(), AmmoGroup.t() | AmmoGroup.id()) :: Socket.t() defp display_ammo_group(socket, %AmmoGroup{} = ammo_group) do ammo_group = ammo_group |> Repo.preload([:container, :ammo_type, :shot_groups], force: true) - socket |> assign(:ammo_group, ammo_group) + + columns = [ + %{label: gettext("Rounds shot"), key: "count"}, + %{label: gettext("Notes"), key: "notes"}, + %{label: gettext("Date"), key: "date"}, + %{label: nil, key: "actions", sortable: false} + ] + + rows = + ammo_group.shot_groups + |> Enum.map(fn shot_group -> + ammo_group |> get_table_row_for_shot_group(shot_group, columns) + end) + + socket |> assign(ammo_group: ammo_group, columns: columns, rows: rows) end defp display_ammo_group(%{assigns: %{current_user: current_user}} = socket, id), do: display_ammo_group(socket, Ammo.get_ammo_group!(id, current_user)) + + @spec get_table_row_for_shot_group(AmmoGroup.t(), ShotGroup.t(), [map()]) :: [map()] + defp get_table_row_for_shot_group(ammo_group, %{date: date} = shot_group, columns) do + assigns = %{ammo_group: ammo_group, shot_group: shot_group} + + columns + |> Enum.into(%{}, fn %{key: key} -> + value = + case key do + "date" -> + {date, date |> display_date()} + + "actions" -> + ~H""" +
- <%= gettext("Rounds shot") %> - | -- <%= gettext("Notes") %> - | -- <%= gettext("Date") %> - | - -- |
---|---|---|---|
- <%= shot_group.count %> - | - -- <%= shot_group.notes %> - | - -- <%= shot_group.date |> display_date() %> - | - -
-
- <%= live_patch to: Routes.ammo_group_show_path(Endpoint, :edit_shot_group, @ammo_group, shot_group),
- class: "text-primary-600 link",
- data: [qa: "edit-#{shot_group.id}"] do %>
-
- <% end %>
-
- <%= link to: "#",
- 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?"),
- qa: "delete-#{shot_group.id}"
- ] do %>
-
- <% end %>
-
- |
-