cannery/lib/cannery_web/components/add_shot_record_component.h...

62 lines
1.8 KiB
Plaintext
Raw Normal View History

2022-02-15 17:33:45 -05:00
<div>
2022-02-18 18:21:56 -05:00
<h2 class="mb-8 text-center title text-xl text-primary-600">
2022-02-15 17:33:45 -05:00
<%= gettext("Record shots") %>
</h2>
<.form
:let={f}
2022-02-15 17:33:45 -05:00
for={@changeset}
2023-03-30 21:38:56 -04:00
id="shot-record-form"
2022-02-19 18:06:50 -05:00
class="flex flex-col space-y-4 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-4 justify-center items-center"
2022-02-15 17:33:45 -05:00
phx-target={@myself}
phx-change="validate"
phx-submit="save"
>
2023-02-04 10:28:13 -05:00
<div
:if={@changeset.action && not @changeset.valid?()}
class="invalid-feedback col-span-3 text-center"
>
<%= changeset_errors(@changeset) %>
</div>
2022-02-15 17:33:45 -05:00
2022-02-17 22:29:01 -05:00
<%= label(f, :ammo_left, gettext("Rounds left"), class: "title text-lg text-primary-600") %>
2022-02-15 17:33:45 -05:00
<%= number_input(f, :ammo_left,
min: 0,
2023-03-29 22:54:55 -04:00
max: @pack.count - 1,
2022-11-10 22:01:32 -05:00
placeholder: gettext("Rounds left"),
class: "input input-primary"
2022-02-15 17:33:45 -05:00
) %>
2022-11-10 22:01:32 -05:00
<button
type="button"
class="mx-2 my-1 text-sm btn btn-primary"
2023-03-30 21:38:56 -04:00
phx-click={JS.dispatch("cannery:set-zero", to: "#shot-record-form_ammo_left")}
2022-11-10 22:01:32 -05:00
>
<%= gettext("Used up!") %>
</button>
2022-02-15 17:33:45 -05:00
<%= error_tag(f, :ammo_left, "col-span-3") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :notes, gettext("Notes"), class: "title text-lg text-primary-600") %>
2022-02-15 17:33:45 -05:00
<%= textarea(f, :notes,
2023-03-30 21:38:56 -04:00
id: "add-shot-record-form-notes",
2022-02-15 17:33:45 -05:00
class: "input input-primary col-span-2",
2023-03-19 23:46:42 -04:00
maxlength: 255,
2023-03-18 22:13:32 -04:00
placeholder: gettext("Really great weather"),
phx_update: "ignore"
2022-02-15 17:33:45 -05:00
) %>
<%= error_tag(f, :notes, "col-span-3") %>
<%= label(f, :date, gettext("Date"), class: "title text-lg text-primary-600") %>
<%= date_input(f, :date,
class: "input input-primary col-span-2",
phx_update: "ignore",
value: Date.utc_today()
) %>
2022-02-15 17:33:45 -05:00
<%= error_tag(f, :notes, "col-span-3") %>
<%= submit(dgettext("actions", "Save"),
class: "mx-auto btn btn-primary col-span-3",
phx_disable_with: dgettext("prompts", "Saving...")
) %>
</.form>
</div>