cannery/lib/cannery_web/live/container_live/form_component.ex

125 lines
4.1 KiB
Elixir
Raw Normal View History

2021-09-02 23:31:14 -04:00
defmodule CanneryWeb.ContainerLive.FormComponent do
2022-01-22 21:40:29 -05:00
@moduledoc """
Livecomponent that can update or create an Cannery.Containers.Container
"""
2021-09-02 23:31:14 -04:00
use CanneryWeb, :live_component
2022-02-10 23:36:31 -05:00
alias Cannery.{Accounts.User, Containers, Containers.Container}
2022-02-01 00:22:44 -05:00
alias Ecto.Changeset
2022-02-10 23:36:31 -05:00
alias Phoenix.LiveView.Socket
2021-09-02 23:31:14 -04:00
@impl true
2022-02-10 23:36:31 -05:00
@spec update(
%{:container => Container.t(), :current_user => User.t(), optional(any) => any},
Socket.t()
) :: {:ok, Socket.t()}
2021-09-02 23:31:14 -04:00
def update(%{container: container} = assigns, socket) do
2022-01-31 21:42:24 -05:00
assigns = assigns |> Map.put(:changeset, container |> Containers.change_container())
{:ok, socket |> assign(assigns)}
2021-09-02 23:31:14 -04:00
end
@impl true
def handle_event("validate", %{"container" => container_params}, socket) do
changeset = socket.assigns.container |> Containers.change_container(container_params)
2021-09-02 23:31:14 -04:00
{:noreply, socket |> assign(:changeset, changeset)}
end
def handle_event("save", %{"container" => container_params}, socket) do
save_container(socket, socket.assigns.action, container_params)
end
@impl true
def render(assigns) do
~H"""
<div>
2022-02-05 00:09:22 -05:00
<h2 class="text-center title text-xl text-primary-500">
2022-01-22 17:21:10 -05:00
<%= @title %>
</h2>
<.form
let={f}
for={@changeset}
id="container-form"
2022-01-31 21:42:24 -05:00
class="grid grid-cols-3 justify-center items-center space-y-4"
phx-target={@myself}
phx-change="validate"
2022-01-31 21:42:24 -05:00
phx-submit="save"
>
<%= if @changeset.action do %>
<div class="invalid-feedback col-span-3 text-center">
<%= changeset_errors(@changeset) %>
</div>
<% end %>
2022-02-09 00:49:47 -05:00
<%= label(f, :name, gettext("Name"), class: "title text-lg text-primary-500") %>
2022-01-31 21:42:24 -05:00
<%= text_input(f, :name,
class: "input input-primary col-span-2",
2022-02-09 00:49:47 -05:00
placeholder: gettext("My cool ammo can")
2022-01-31 21:42:24 -05:00
) %>
<%= error_tag(f, :name, "col-span-3 text-center") %>
2022-02-09 00:49:47 -05:00
<%= label(f, :desc, gettext("Description"), class: "title text-lg text-primary-500") %>
2022-01-31 21:42:24 -05:00
<%= textarea(f, :desc,
class: "input input-primary col-span-2",
phx_hook: "MaintainAttrs",
2022-02-09 00:49:47 -05:00
placeholder: gettext("Metal ammo can with the anime girl sticker")
2022-01-31 21:42:24 -05:00
) %>
<%= error_tag(f, :desc, "col-span-3 text-center") %>
2022-02-09 00:49:47 -05:00
<%= label(f, :type, gettext("Type"), class: "title text-lg text-primary-500") %>
2022-01-31 21:42:24 -05:00
<%= text_input(f, :type,
class: "input input-primary col-span-2",
2022-02-09 00:49:47 -05:00
placeholder: gettext("Magazine, Clip, Ammo Box, etc")
2022-01-31 21:42:24 -05:00
) %>
<%= error_tag(f, :type, "col-span-3 text-center") %>
2022-02-09 00:49:47 -05:00
<%= label(f, :location, gettext("Location"), class: "title text-lg text-primary-500") %>
2022-01-31 21:42:24 -05:00
<%= textarea(f, :location,
class: "input input-primary col-span-2",
phx_hook: "MaintainAttrs",
2022-02-09 00:49:47 -05:00
placeholder: gettext("On the bookshelf")
2022-01-31 21:42:24 -05:00
) %>
<%= error_tag(f, :location, "col-span-3 text-center") %>
2022-02-09 00:49:47 -05:00
<%= submit(dgettext("actions", "Save"),
2022-01-31 21:42:24 -05:00
class: "mx-auto btn btn-primary col-span-3",
2022-02-09 00:49:47 -05:00
phx_disable_with: dgettext("prompts", "Saving...")
2022-01-31 21:42:24 -05:00
) %>
</.form>
</div>
"""
end
2021-09-02 23:31:14 -04:00
defp save_container(socket, :edit, container_params) do
2022-02-08 22:10:48 -05:00
Containers.update_container(
socket.assigns.container,
socket.assigns.current_user,
container_params
)
|> case do
2021-09-02 23:31:14 -04:00
{:ok, _container} ->
{:noreply,
socket
2022-02-09 00:49:47 -05:00
|> put_flash(:info, dgettext("prompts", "Container updated successfully"))
2021-09-02 23:31:14 -04:00
|> push_redirect(to: socket.assigns.return_to)}
2022-02-01 00:22:44 -05:00
{:error, %Changeset{} = changeset} ->
2021-09-02 23:31:14 -04:00
{:noreply, socket |> assign(:changeset, changeset)}
end
end
defp save_container(socket, :new, container_params) do
2022-02-08 22:10:48 -05:00
container_params
|> Containers.create_container(socket.assigns.current_user)
|> case do
2021-09-02 23:31:14 -04:00
{:ok, _container} ->
{:noreply,
socket
2022-02-09 00:49:47 -05:00
|> put_flash(:info, dgettext("prompts", "Container created successfully"))
2021-09-02 23:31:14 -04:00
|> push_redirect(to: socket.assigns.return_to)}
2022-02-01 00:22:44 -05:00
{:error, %Changeset{} = changeset} ->
2021-09-02 23:31:14 -04:00
{:noreply, socket |> assign(changeset: changeset)}
end
end
end