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

136 lines
4.2 KiB
Elixir
Raw Normal View History

2021-09-02 23:31:14 -04:00
defmodule CanneryWeb.TagLive.FormComponent do
2022-01-22 21:40:29 -05:00
@moduledoc """
Livecomponent that can update or create an Cannery.Tags.Tag
"""
2021-09-02 23:31:14 -04:00
use CanneryWeb, :live_component
alias Cannery.Tags
2022-02-10 23:36:31 -05:00
alias Cannery.{Accounts.User, Tags.Tag}
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(%{:tag => Tag.t(), :current_user => User.t(), optional(any) => any}, Socket.t()) ::
{:ok, Socket.t()}
2022-07-04 21:06:35 -04:00
def update(%{tag: _tag} = assigns, socket) do
{:ok, socket |> assign(assigns) |> assign_changeset(%{})}
2021-09-02 23:31:14 -04:00
end
@impl true
2022-07-04 21:06:35 -04:00
def handle_event("validate", %{"tag" => tag_params}, socket) do
{:noreply, socket |> assign_changeset(tag_params)}
2021-09-02 23:31:14 -04:00
end
2022-02-09 23:21:42 -05:00
def handle_event("save", %{"tag" => tag_params}, %{assigns: %{action: action}} = socket) do
save_tag(socket, action, tag_params)
2021-09-02 23:31:14 -04:00
end
2022-07-04 21:06:35 -04:00
defp assign_changeset(
%{assigns: %{action: action, current_user: user, tag: tag}} = socket,
tag_params
) do
changeset_action =
case action do
:new -> :insert
:edit -> :update
end
changeset =
case action do
:new -> tag |> Tag.create_changeset(user, tag_params)
:edit -> tag |> Tag.update_changeset(tag_params)
end
changeset =
case changeset |> Changeset.apply_action(changeset_action) do
{:ok, _data} -> changeset
{:error, changeset} -> changeset
end
socket |> assign(:changeset, changeset)
end
@impl true
def render(assigns) do
~H"""
<div>
2022-02-18 18:21:56 -05:00
<h2 class="mb-8 text-center title text-xl text-primary-600">
<%= @title %>
</h2>
2022-01-22 17:21:10 -05:00
<.form
:let={f}
2022-01-22 17:21:10 -05:00
for={@changeset}
id="tag-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"
phx-target={@myself}
phx-change="validate"
2022-01-28 21:05:54 -05:00
phx-submit="save"
>
2022-02-15 18:22:13 -05:00
<%= if @changeset.action && not @changeset.valid? do %>
<div class="invalid-feedback col-span-3 text-center">
<%= changeset_errors(@changeset) %>
</div>
<% end %>
2022-02-17 22:29:01 -05:00
<%= label(f, :name, gettext("Name"), class: "title text-lg text-primary-600") %>
2022-01-28 21:05:54 -05:00
<%= text_input(f, :name, class: "input input-primary col-span-2") %>
<%= error_tag(f, :name, "col-span-3") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :bg_color, gettext("Background color"), class: "title text-lg text-primary-600") %>
2022-02-16 23:09:21 -05:00
<span id="tag-bg-color-input" class="mx-auto col-span-2" phx-update="ignore">
2022-01-28 21:05:54 -05:00
<%= color_input(f, :bg_color) %>
</span>
<%= error_tag(f, :bg_color, "col-span-3") %>
2022-02-17 22:29:01 -05:00
<%= label(f, :text_color, gettext("Text color"), class: "title text-lg text-primary-600") %>
2022-02-16 23:09:21 -05:00
<span id="tag-text-color-input" class="mx-auto col-span-2" phx-update="ignore">
2022-01-28 21:05:54 -05:00
<%= color_input(f, :text_color) %>
</span>
<%= error_tag(f, :text_color, "col-span-3") %>
2022-02-09 00:58:53 -05:00
<%= submit(dgettext("actions", "Save"),
2022-01-22 17:21:10 -05:00
class: "mx-auto btn btn-primary col-span-3",
2022-02-09 00:58:53 -05:00
phx_disable_with: dgettext("prompts", "Saving...")
2022-01-22 17:21:10 -05:00
) %>
</.form>
</div>
"""
end
2022-02-09 23:21:42 -05:00
defp save_tag(
%{assigns: %{tag: tag, current_user: current_user, return_to: return_to}} = socket,
:edit,
tag_params
) do
socket =
case Tags.update_tag(tag, tag_params, current_user) do
{:ok, %{name: tag_name}} ->
prompt = dgettext("prompts", "%{name} updated successfully", name: tag_name)
socket |> put_flash(:info, prompt) |> push_navigate(to: return_to)
2021-09-02 23:31:14 -04:00
2022-02-09 23:21:42 -05:00
{:error, %Changeset{} = changeset} ->
socket |> assign(:changeset, changeset)
end
{:noreply, socket}
2021-09-02 23:31:14 -04:00
end
2022-02-09 23:21:42 -05:00
defp save_tag(
%{assigns: %{current_user: current_user, return_to: return_to}} = socket,
:new,
tag_params
) do
socket =
case Tags.create_tag(tag_params, current_user) do
{:ok, %{name: tag_name}} ->
prompt = dgettext("prompts", "%{name} created successfully", name: tag_name)
socket |> put_flash(:info, prompt) |> push_navigate(to: return_to)
2022-02-09 23:21:42 -05:00
{:error, %Changeset{} = changeset} ->
socket |> assign(changeset: changeset)
end
2021-09-02 23:31:14 -04:00
2022-02-09 23:21:42 -05:00
{:noreply, socket}
2021-09-12 18:16:24 -04:00
end
2021-09-02 23:31:14 -04:00
end