memEx/lib/memex_web/live/pipeline_live/show.ex

42 lines
1.0 KiB
Elixir
Raw Normal View History

2022-07-25 20:12:11 -04:00
defmodule MemexWeb.PipelineLive.Show do
use MemexWeb, :live_view
alias Memex.Pipelines
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
2022-11-24 14:31:16 -05:00
def handle_params(
%{"id" => id},
_,
%{assigns: %{live_action: live_action, current_user: current_user}} = socket
) do
2022-07-25 20:12:11 -04:00
{:noreply,
socket
2022-11-24 14:31:16 -05:00
|> assign(:page_title, page_title(live_action))
|> assign(:pipeline, Pipelines.get_pipeline!(id, current_user))}
2022-07-25 20:12:11 -04:00
end
2022-11-24 14:31:16 -05:00
@impl true
def handle_event(
"delete",
_params,
%{assigns: %{pipeline: pipeline, current_user: current_user}} = socket
) do
{:ok, %{title: title}} = Pipelines.delete_pipeline(pipeline, current_user)
socket =
socket
|> put_flash(:info, gettext("%{title} deleted", title: title))
|> push_navigate(to: Routes.pipeline_index_path(Endpoint, :index))
{:noreply, socket}
end
defp page_title(:show), do: gettext("show pipeline")
defp page_title(:edit), do: gettext("edit pipeline")
2022-07-25 20:12:11 -04:00
end