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
|
|
|
|
|
|
|
|
alias Cannery.Containers
|
2022-02-01 00:22:44 -05:00
|
|
|
alias Ecto.Changeset
|
2021-09-02 23:31:14 -04:00
|
|
|
|
|
|
|
@impl true
|
|
|
|
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
|
2022-01-31 21:42:24 -05:00
|
|
|
container_params = container_params |> Map.put("user_id", socket.assigns.current_user.id)
|
2022-02-05 23:41:10 -05:00
|
|
|
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
|
|
|
|
|
2022-01-22 15:15:23 -05:00
|
|
|
@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}
|
2022-01-22 15:15:23 -05:00
|
|
|
id="container-form"
|
2022-01-31 21:42:24 -05:00
|
|
|
class="grid grid-cols-3 justify-center items-center space-y-4"
|
2022-01-22 15:15:23 -05:00
|
|
|
phx-target={@myself}
|
|
|
|
phx-change="validate"
|
2022-01-31 21:42:24 -05:00
|
|
|
phx-submit="save"
|
|
|
|
>
|
2022-02-05 23:41:10 -05:00
|
|
|
<%= if @changeset.action do %>
|
|
|
|
<div class="invalid-feedback col-span-3 text-center">
|
|
|
|
<%= changeset_errors(@changeset) %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
|
2022-01-31 21:42:24 -05:00
|
|
|
<%= label(f, :name, class: "title text-lg text-primary-500") %>
|
|
|
|
<%= text_input(f, :name,
|
|
|
|
class: "input input-primary col-span-2",
|
|
|
|
placeholder: "My cool ammo can"
|
|
|
|
) %>
|
2022-02-05 23:41:10 -05:00
|
|
|
<%= error_tag(f, :name, "col-span-3 text-center") %>
|
|
|
|
|
2022-01-31 21:42:24 -05:00
|
|
|
<%= label(f, :desc, class: "title text-lg text-primary-500") %>
|
|
|
|
<%= textarea(f, :desc,
|
|
|
|
class: "input input-primary col-span-2",
|
|
|
|
phx_hook: "MaintainAttrs",
|
|
|
|
placeholder: "Metal ammo can with the anime girl sticker"
|
|
|
|
) %>
|
2022-02-05 23:41:10 -05:00
|
|
|
<%= error_tag(f, :desc, "col-span-3 text-center") %>
|
|
|
|
|
2022-01-31 21:42:24 -05:00
|
|
|
<%= label(f, :type, class: "title text-lg text-primary-500") %>
|
|
|
|
<%= text_input(f, :type,
|
|
|
|
class: "input input-primary col-span-2",
|
|
|
|
placeholder: "Magazine, Clip, Ammo Box, etc"
|
|
|
|
) %>
|
2022-02-05 23:41:10 -05:00
|
|
|
<%= error_tag(f, :type, "col-span-3 text-center") %>
|
|
|
|
|
2022-01-31 21:42:24 -05:00
|
|
|
<%= label(f, :location, class: "title text-lg text-primary-500") %>
|
|
|
|
<%= textarea(f, :location,
|
|
|
|
class: "input input-primary col-span-2",
|
|
|
|
phx_hook: "MaintainAttrs",
|
|
|
|
placeholder: "On the bookshelf"
|
|
|
|
) %>
|
2022-02-05 23:41:10 -05:00
|
|
|
<%= error_tag(f, :location, "col-span-3 text-center") %>
|
|
|
|
|
2022-01-31 21:42:24 -05:00
|
|
|
<%= submit("Save",
|
|
|
|
class: "mx-auto btn btn-primary col-span-3",
|
|
|
|
phx_disable_with: "Saving..."
|
|
|
|
) %>
|
2022-01-22 15:15:23 -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
|
|
|
|
|> put_flash(:info, "Container updated successfully")
|
|
|
|
|> 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
|
|
|
|
|> put_flash(:info, "Container created successfully")
|
|
|
|
|> 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
|