162 lines
5.4 KiB
Plaintext
162 lines
5.4 KiB
Plaintext
<div class="mx-8 flex flex-col space-y-8 justify-center items-center">
|
|
<h1 class="title text-2xl title-primary-500">
|
|
<%= gettext("Ammo") %>
|
|
</h1>
|
|
|
|
<%= if @ammo_groups |> Enum.empty?() do %>
|
|
<h2 class="title text-xl text-primary-500">
|
|
<%= gettext("No Ammo") %> 😔
|
|
</h2>
|
|
|
|
<%= live_patch(dgettext("actions", "Add your first box!"),
|
|
to: Routes.ammo_group_index_path(@socket, :new),
|
|
class: "btn btn-primary"
|
|
) %>
|
|
<% else %>
|
|
<%= live_patch(dgettext("actions", "New Ammo group"),
|
|
to: Routes.ammo_group_index_path(@socket, :new),
|
|
class: "btn btn-primary"
|
|
) %>
|
|
|
|
<div class="w-full overflow-x-auto border border-gray-600 rounded-lg shadow-lg bg-black">
|
|
<table class="min-w-full table-auto text-center bg-white">
|
|
<thead class="border-b border-primary-600">
|
|
<tr>
|
|
<th class="p-2">
|
|
<%= gettext("Ammo type") %>
|
|
</th>
|
|
<th class="p-2">
|
|
<%= gettext("Count") %>
|
|
</th>
|
|
<th class="p-2">
|
|
<%= gettext("Price paid") %>
|
|
</th>
|
|
<th class="p-2">
|
|
<%= gettext("Notes") %>
|
|
</th>
|
|
<th class="p-2">
|
|
<%= gettext("Staging") %>
|
|
</th>
|
|
<th class="p-2">
|
|
<%= gettext("Container") %>
|
|
</th>
|
|
|
|
<th class="p-2"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="ammo_groups">
|
|
<%= for ammo_group <- @ammo_groups do %>
|
|
<tr id={"ammo_group-#{ammo_group.id}"}>
|
|
<td class="p-2">
|
|
<%= live_patch(ammo_group.ammo_type.name,
|
|
to: Routes.ammo_type_show_path(Endpoint, :show, ammo_group.ammo_type),
|
|
class: "link"
|
|
) %>
|
|
</td>
|
|
|
|
<td class="p-2">
|
|
<%= ammo_group.count %>
|
|
</td>
|
|
|
|
<td class="p-2">
|
|
<%= if ammo_group.price_paid do %>
|
|
$ <%= ammo_group.price_paid |> :erlang.float_to_binary(decimals: 2) %>
|
|
<% end %>
|
|
</td>
|
|
|
|
<td class="p-2">
|
|
<%= ammo_group.notes %>
|
|
</td>
|
|
|
|
<td class="p-2">
|
|
<button
|
|
type="button"
|
|
class="btn btn-primary"
|
|
phx-click="toggle_staged"
|
|
phx-value-ammo_group_id={ammo_group.id}
|
|
>
|
|
<%= if ammo_group.staged, do: gettext("Unstage from range"), else: gettext("Stage for range") %>
|
|
</button>
|
|
</td>
|
|
|
|
<td class="p-2">
|
|
<%= if ammo_group.container do %>
|
|
<%= live_patch(ammo_group.container.name,
|
|
to: Routes.ammo_group_index_path(@socket, :move, ammo_group),
|
|
class: "btn btn-primary"
|
|
) %>
|
|
<% end %>
|
|
</td>
|
|
|
|
<td class="p-2 w-full h-full space-x-2 flex justify-center items-center">
|
|
<div class="px-4 py-2 space-x-4 flex justify-center items-center">
|
|
<%= live_redirect to: Routes.ammo_group_show_path(@socket, :show, ammo_group),
|
|
class: "text-primary-500 link" do %>
|
|
<i class="fa-fw fa-lg fas fa-eye"></i>
|
|
<% end %>
|
|
|
|
<%= live_patch to: Routes.ammo_group_index_path(@socket, :edit, ammo_group),
|
|
class: "text-primary-500 link" do %>
|
|
<i class="fa-fw fa-lg fas fa-edit"></i>
|
|
<% end %>
|
|
|
|
<%= link to: "#",
|
|
class: "text-primary-500 link",
|
|
phx_click: "delete",
|
|
phx_value_id: ammo_group.id,
|
|
data: [confirm: dgettext("prompts", "Are you sure you want to delete this ammo?")] do %>
|
|
<i class="fa-fw fa-lg fas fa-trash"></i>
|
|
<% end %>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= cond do %>
|
|
<% @live_action in [:new, :edit] -> %>
|
|
<.modal return_to={Routes.ammo_group_index_path(Endpoint, :index)}>
|
|
<.live_component
|
|
module={CanneryWeb.AmmoGroupLive.FormComponent}
|
|
id={@ammo_group.id || :new}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
ammo_group={@ammo_group}
|
|
return_to={Routes.ammo_group_index_path(Endpoint, :index)}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
|
|
<% @live_action == :add_shot_group -> %>
|
|
<.modal return_to={Routes.ammo_group_index_path(Endpoint, :index)}>
|
|
<.live_component
|
|
module={CanneryWeb.Components.AddShotGroupComponent}
|
|
id={:new}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
ammo_group={@ammo_group}
|
|
return_to={Routes.ammo_group_index_path(Endpoint, :index)}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
|
|
<% @live_action == :move -> %>
|
|
<.modal return_to={Routes.ammo_group_index_path(Endpoint, :index)}>
|
|
<.live_component
|
|
module={CanneryWeb.Components.MoveAmmoGroupComponent}
|
|
id={@ammo_group.id}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
ammo_group={@ammo_group}
|
|
return_to={Routes.ammo_group_index_path(Endpoint, :index)}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
|
|
<% true -> %>
|
|
<% end %>
|