240 lines
7.6 KiB
Plaintext
240 lines
7.6 KiB
Plaintext
<div class="flex flex-col space-y-8 justify-center items-center">
|
|
<h1 class="title text-2xl title-primary-500">
|
|
<%= gettext("Ammo") %>
|
|
</h1>
|
|
|
|
<%= cond do %>
|
|
<% @containers_count == 0 -> %>
|
|
<div class="flex justify-center items-center">
|
|
<h2 class="m-2 title text-md text-primary-600">
|
|
<%= dgettext("prompts", "You'll need to") %>
|
|
</h2>
|
|
|
|
<.link navigate={~p"/containers/new"} class="btn btn-primary">
|
|
<%= dgettext("actions", "add a container first") %>
|
|
</.link>
|
|
</div>
|
|
<% @types_count == 0 -> %>
|
|
<div class="flex justify-center items-center">
|
|
<h2 class="m-2 title text-md text-primary-600">
|
|
<%= dgettext("prompts", "You'll need to") %>
|
|
</h2>
|
|
|
|
<.link navigate={~p"/catalog/new"} class="btn btn-primary">
|
|
<%= dgettext("actions", "add a type first") %>
|
|
</.link>
|
|
</div>
|
|
<% @packs_count == 0 -> %>
|
|
<h2 class="title text-xl text-primary-600">
|
|
<%= gettext("No ammo") %>
|
|
<%= display_emoji("😔") %>
|
|
</h2>
|
|
|
|
<.link patch={~p"/ammo/new"} class="btn btn-primary">
|
|
<%= dgettext("actions", "Add your first box!") %>
|
|
</.link>
|
|
<% true -> %>
|
|
<.link patch={~p"/ammo/new"} class="btn btn-primary">
|
|
<%= dgettext("actions", "Add Ammo") %>
|
|
</.link>
|
|
|
|
<div class="w-full flex flex-col sm:flex-row justify-center items-center space-y-4 sm:space-y-0 sm:space-x-4 max-w-2xl">
|
|
<.form
|
|
:let={f}
|
|
for={%{}}
|
|
as={:type}
|
|
phx-change="change_class"
|
|
phx-submit="change_class"
|
|
class="flex items-center"
|
|
>
|
|
<%= label(f, :class, gettext("Class"),
|
|
class: "title text-primary-600 text-lg text-center"
|
|
) %>
|
|
|
|
<%= select(
|
|
f,
|
|
:class,
|
|
[
|
|
{gettext("All"), :all},
|
|
{gettext("Rifle"), :rifle},
|
|
{gettext("Shotgun"), :shotgun},
|
|
{gettext("Pistol"), :pistol}
|
|
],
|
|
class: "mx-2 my-1 min-w-md input input-primary",
|
|
value: @class
|
|
) %>
|
|
</.form>
|
|
|
|
<.form
|
|
:let={f}
|
|
for={%{}}
|
|
as={:search}
|
|
phx-change="search"
|
|
phx-submit="search"
|
|
class="grow flex items-center"
|
|
>
|
|
<%= text_input(f, :search_term,
|
|
class: "grow input input-primary",
|
|
value: @search,
|
|
role: "search",
|
|
phx_debounce: 300,
|
|
placeholder: gettext("Search ammo")
|
|
) %>
|
|
</.form>
|
|
|
|
<.toggle_button action="toggle_show_used" value={@show_used}>
|
|
<span class="title text-lg text-primary-600">
|
|
<%= gettext("Show used") %>
|
|
</span>
|
|
</.toggle_button>
|
|
</div>
|
|
|
|
<%= if @packs |> Enum.empty?() do %>
|
|
<h2 class="title text-xl text-primary-600">
|
|
<%= gettext("No Ammo") %>
|
|
<%= display_emoji("😔") %>
|
|
</h2>
|
|
<% else %>
|
|
<.live_component
|
|
module={CanneryWeb.Components.PackTableComponent}
|
|
id="pack-index-table"
|
|
packs={@packs}
|
|
current_user={@current_user}
|
|
show_used={@show_used}
|
|
>
|
|
<:type :let={%{name: type_name} = type}>
|
|
<.link navigate={~p"/type/#{type}"} class="link">
|
|
<%= type_name %>
|
|
</.link>
|
|
</:type>
|
|
<:range :let={pack}>
|
|
<div class="min-w-20 py-2 px-4 h-full flex flew-wrap justify-center items-center">
|
|
<button
|
|
type="button"
|
|
class="mx-2 my-1 text-sm btn btn-primary"
|
|
phx-click="toggle_staged"
|
|
phx-value-pack_id={pack.id}
|
|
>
|
|
<%= if pack.staged,
|
|
do: dgettext("actions", "Unstage"),
|
|
else: dgettext("actions", "Stage") %>
|
|
</button>
|
|
|
|
<.link
|
|
patch={~p"/ammo/add_shot_record/#{pack}"}
|
|
class="mx-2 my-1 text-sm btn btn-primary"
|
|
>
|
|
<%= dgettext("actions", "Record shots") %>
|
|
</.link>
|
|
</div>
|
|
</:range>
|
|
<:container :let={{pack, %{name: container_name} = container}}>
|
|
<div class="min-w-20 py-2 px-4 h-full flex flew-wrap justify-center items-center">
|
|
<.link navigate={~p"/container/#{container}"} class="mx-2 my-1 link">
|
|
<%= container_name %>
|
|
</.link>
|
|
|
|
<.link patch={~p"/ammo/move/#{pack}"} class="mx-2 my-1 text-sm btn btn-primary">
|
|
<%= dgettext("actions", "Move ammo") %>
|
|
</.link>
|
|
</div>
|
|
</:container>
|
|
<:actions :let={%{count: pack_count} = pack}>
|
|
<div class="py-2 px-4 h-full space-x-4 flex justify-center items-center">
|
|
<.link
|
|
navigate={~p"/ammo/show/#{pack}"}
|
|
class="text-primary-600 link"
|
|
aria-label={
|
|
dgettext("actions", "View pack of %{pack_count} bullets",
|
|
pack_count: pack_count
|
|
)
|
|
}
|
|
>
|
|
<i class="fa-fw fa-lg fas fa-eye"></i>
|
|
</.link>
|
|
|
|
<.link
|
|
patch={~p"/ammo/edit/#{pack}"}
|
|
class="text-primary-600 link"
|
|
aria-label={
|
|
dgettext("actions", "Edit pack of %{pack_count} bullets",
|
|
pack_count: pack_count
|
|
)
|
|
}
|
|
>
|
|
<i class="fa-fw fa-lg fas fa-edit"></i>
|
|
</.link>
|
|
|
|
<.link
|
|
patch={~p"/ammo/clone/#{pack}"}
|
|
class="text-primary-600 link"
|
|
aria-label={
|
|
dgettext("actions", "Clone pack of %{pack_count} bullets",
|
|
pack_count: pack_count
|
|
)
|
|
}
|
|
>
|
|
<i class="fa-fw fa-lg fas fa-copy"></i>
|
|
</.link>
|
|
|
|
<.link
|
|
href="#"
|
|
class="text-primary-600 link"
|
|
phx-click="delete"
|
|
phx-value-id={pack.id}
|
|
data-confirm={dgettext("prompts", "Are you sure you want to delete this ammo?")}
|
|
aria-label={
|
|
dgettext("actions", "Delete pack of %{pack_count} bullets",
|
|
pack_count: pack_count
|
|
)
|
|
}
|
|
>
|
|
<i class="fa-fw fa-lg fas fa-trash"></i>
|
|
</.link>
|
|
</div>
|
|
</:actions>
|
|
</.live_component>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= case @live_action do %>
|
|
<% create when create in [:new, :edit, :clone] -> %>
|
|
<.modal return_to={~p"/ammo"}>
|
|
<.live_component
|
|
module={CanneryWeb.PackLive.FormComponent}
|
|
id={@pack.id || :new}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
pack={@pack}
|
|
return_to={~p"/ammo"}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
<% :add_shot_record -> %>
|
|
<.modal return_to={~p"/ammo"}>
|
|
<.live_component
|
|
module={CanneryWeb.Components.AddShotRecordComponent}
|
|
id={:new}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
pack={@pack}
|
|
return_to={~p"/ammo"}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
<% :move -> %>
|
|
<.modal return_to={~p"/ammo"}>
|
|
<.live_component
|
|
module={CanneryWeb.Components.MovePackComponent}
|
|
id={@pack.id}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
pack={@pack}
|
|
return_to={~p"/ammo"}
|
|
current_user={@current_user}
|
|
/>
|
|
</.modal>
|
|
<% _ -> %>
|
|
<% end %>
|