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

89 lines
2.5 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
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