cannery/lib/cannery_web/live/container_live/form_component.html.heex

61 lines
2.0 KiB
Plaintext
Raw Normal View History

2022-02-14 21:21:24 -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-14 21:21:24 -05:00
<%= @title %>
</h2>
<.form
:let={f}
2022-02-14 21:21:24 -05:00
for={@changeset}
id="container-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-14 21:21:24 -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-14 21:21:24 -05:00
2022-02-17 22:29:01 -05:00
<%= label(f, :name, gettext("Name"), class: "title text-lg text-primary-600") %>
2022-02-14 21:21:24 -05:00
<%= text_input(f, :name,
class: "input input-primary col-span-2",
placeholder: gettext("My cool ammo can")
) %>
<%= error_tag(f, :name, "col-span-3 text-center") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-600") %>
2022-02-14 21:21:24 -05:00
<%= textarea(f, :desc,
2023-03-18 22:13:32 -04:00
id: "container-form-desc",
2022-02-14 21:21:24 -05:00
class: "input input-primary col-span-2",
2023-03-18 22:13:32 -04:00
placeholder: gettext("Metal ammo can with the anime girl sticker"),
2022-02-14 21:21:24 -05:00
phx_hook: "MaintainAttrs",
2023-03-18 22:13:32 -04:00
phx_update: "ignore"
2022-02-14 21:21:24 -05:00
) %>
<%= error_tag(f, :desc, "col-span-3 text-center") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :type, gettext("Type"), class: "title text-lg text-primary-600") %>
2022-02-14 21:21:24 -05:00
<%= text_input(f, :type,
class: "input input-primary col-span-2",
placeholder: gettext("Magazine, Clip, Ammo Box, etc")
) %>
<%= error_tag(f, :type, "col-span-3 text-center") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :location, gettext("Location"), class: "title text-lg text-primary-600") %>
2022-02-14 21:21:24 -05:00
<%= textarea(f, :location,
2023-03-18 22:13:32 -04:00
id: "container-form-location",
2022-02-14 21:21:24 -05:00
class: "input input-primary col-span-2",
2023-03-18 22:13:32 -04:00
placeholder: gettext("On the bookshelf"),
2022-02-14 21:21:24 -05:00
phx_hook: "MaintainAttrs",
2023-03-18 22:13:32 -04:00
phx_update: "ignore"
2022-02-14 21:21:24 -05:00
) %>
<%= error_tag(f, :location, "col-span-3 text-center") %>
<%= submit(dgettext("actions", "Save"),
class: "mx-auto btn btn-primary col-span-3",
phx_disable_with: dgettext("prompts", "Saving...")
) %>
</.form>
</div>