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

127 lines
4.0 KiB
Elixir
Raw Normal View History

2021-09-02 23:31:14 -04:00
defmodule CanneryWeb.ContainerLive.Show do
2022-01-22 21:40:29 -05:00
@moduledoc """
Liveview for showing and editing a Cannery.Containers.Container
"""
2021-09-02 23:31:14 -04:00
use CanneryWeb, :live_view
2022-02-13 21:14:48 -05:00
import CanneryWeb.Components.{AmmoGroupCard, TagCard}
2022-11-07 01:36:28 -05:00
alias Cannery.{Accounts.User, Ammo, Containers, Containers.Container, Repo, Tags}
2022-02-13 21:14:48 -05:00
alias CanneryWeb.Endpoint
2022-02-11 00:33:51 -05:00
alias Ecto.Changeset
2022-02-13 21:14:48 -05:00
alias Phoenix.LiveView.Socket
2021-09-02 23:31:14 -04:00
@impl true
2022-12-03 20:07:51 -05:00
def mount(_params, _session, socket),
do: {:ok, socket |> assign(show_used: false, view_table: true)}
2021-09-02 23:31:14 -04:00
@impl true
2022-12-03 20:07:51 -05:00
def handle_params(%{"id" => id}, _session, %{assigns: %{current_user: current_user}} = socket) do
socket =
2022-11-19 14:05:29 -05:00
socket
2022-12-03 20:07:51 -05:00
|> assign(view_table: true)
2022-11-19 14:05:29 -05:00
|> render_container(id, current_user)
{:noreply, socket}
2022-02-13 21:14:48 -05:00
end
@impl true
def handle_event(
"delete_tag",
%{"tag-id" => tag_id},
%{assigns: %{container: container, current_user: current_user}} = socket
) do
2022-01-31 21:56:02 -05:00
socket =
2022-02-13 21:14:48 -05:00
case Tags.get_tag(tag_id, current_user) do
{:ok, tag} ->
_count = Containers.remove_tag!(container, tag, current_user)
prompt =
dgettext("prompts", "%{tag_name} has been removed from %{container_name}",
tag_name: tag.name,
container_name: container.name
)
socket |> put_flash(:info, prompt) |> render_container()
2022-02-13 21:14:48 -05:00
{:error, error_string} ->
socket |> put_flash(:error, error_string)
end
2022-01-31 21:56:02 -05:00
{:noreply, socket}
end
@impl true
2022-02-11 00:33:51 -05:00
def handle_event(
2022-02-13 21:14:48 -05:00
"delete_container",
2022-03-28 23:05:12 -04:00
_params,
2022-02-11 00:33:51 -05:00
%{assigns: %{container: container, current_user: current_user}} = socket
) do
2022-02-07 23:58:29 -05:00
socket =
2022-02-11 00:33:51 -05:00
Containers.delete_container(container, current_user)
2022-02-07 23:58:29 -05:00
|> case do
2022-02-11 00:33:51 -05:00
{:ok, %{name: container_name}} ->
prompt = dgettext("prompts", "%{name} has been deleted", name: container_name)
2022-02-07 23:58:29 -05:00
socket
2022-02-11 00:33:51 -05:00
|> put_flash(:info, prompt)
|> push_navigate(to: Routes.container_index_path(socket, :index))
2022-02-07 23:58:29 -05:00
{:error, %{action: :delete, errors: [ammo_groups: _error], valid?: false} = changeset} ->
ammo_groups_error = changeset |> changeset_errors(:ammo_groups) |> Enum.join(", ")
2022-02-09 00:49:47 -05:00
2022-02-11 00:33:51 -05:00
prompt =
dgettext("errors", "Could not delete %{name}: %{error}",
name: changeset |> Changeset.get_field(:name, "container"),
error: ammo_groups_error
)
socket |> put_flash(:error, prompt)
2022-02-07 23:58:29 -05:00
{:error, changeset} ->
socket |> put_flash(:error, changeset |> changeset_errors())
end
{:noreply, socket}
2021-09-02 23:31:14 -04:00
end
@impl true
2022-11-07 01:36:28 -05:00
def handle_event("toggle_show_used", _params, %{assigns: %{show_used: show_used}} = socket) do
{:noreply, socket |> assign(:show_used, !show_used) |> render_container()}
end
@impl true
2022-12-03 20:07:51 -05:00
def handle_event("toggle_table", _params, %{assigns: %{view_table: view_table}} = socket) do
{:noreply, socket |> assign(:view_table, !view_table) |> render_container()}
end
2022-02-13 21:14:48 -05:00
@spec render_container(Socket.t(), Container.id(), User.t()) :: Socket.t()
defp render_container(
%{assigns: %{live_action: live_action, show_used: show_used}} = socket,
id,
current_user
) do
2022-02-18 23:25:44 -05:00
%{name: container_name} =
container =
2022-02-13 21:14:48 -05:00
Containers.get_container!(id, current_user)
|> Repo.preload([:tags], force: true)
ammo_groups = Ammo.list_ammo_groups_for_container(container, current_user, show_used)
2022-02-13 21:14:48 -05:00
2022-02-18 22:56:46 -05:00
page_title =
case live_action do
action when action in [:show, :table] -> container_name
2022-02-18 22:56:46 -05:00
:edit -> gettext("Edit %{name}", name: container_name)
:edit_tags -> gettext("Edit %{name} tags", name: container_name)
end
socket |> assign(container: container, ammo_groups: ammo_groups, page_title: page_title)
end
@spec render_container(Socket.t()) :: Socket.t()
defp render_container(
%{assigns: %{container: %{id: container_id}, current_user: current_user}} = socket
) do
socket |> render_container(container_id, current_user)
2022-02-13 21:14:48 -05:00
end
2021-09-02 23:31:14 -04:00
end