Improve logic and add working "delete" links

This commit is contained in:
Thelonius Kort
2023-02-14 21:02:48 +01:00
parent 7297a907da
commit faf2bb0e2e
8 changed files with 45 additions and 39 deletions

View File

@ -1,8 +1,7 @@
defmodule OutlookWeb.ArticleLive.Show do
use OutlookWeb, :live_view
alias Outlook.Articles
alias Outlook.InternalTree
alias Outlook.{Articles,InternalTree,Translations}
@impl true
def mount(_params, _session, socket) do
@ -11,12 +10,24 @@ defmodule OutlookWeb.ArticleLive.Show do
@impl true
def handle_params(%{"id" => id}, _, socket) do
{:noreply, socket
|> assign(:page_title, page_title(socket.assigns.live_action))
|> get_and_assign_article(id)}
end
@impl true
def handle_event("delete_translation", %{"id" => id}, socket) do
translation = Translations.get_translation!(id)
{:ok, _} = Translations.delete_translation(translation)
{:noreply, socket |> get_and_assign_article(socket.assigns.article.id)}
end
defp get_and_assign_article(socket, id) do
article = Articles.get_article_with_translations!(id)
{:noreply,
socket
|> assign(:page_title, page_title(socket.assigns.live_action))
|> assign(:article_content, InternalTree.garnish(article.content, %{tunits: %{class: "tunit"}}))
|> assign(:article, article)}
socket
|> assign(:article_content, InternalTree.garnish(article.content, %{tunits: %{class: "tunit"}}))
|> assign(:article, article)
end
defp page_title(:show), do: "Show Article"

View File

@ -28,11 +28,11 @@
</div>
<.link navigate={~p"/translations/#{translation.id}/edit"}>Edit</.link>
</:action>
<%!-- <:action :let={translation}>
<.link phx-click={JS.push("delete", value: %{id: translation.id})} data-confirm="Are you sure?">
<:action :let={translation}>
<.link phx-click={JS.push("delete_translation", value: %{id: translation.id})} data-confirm="Are you sure?">
Delete
</.link>
</:action> --%>
</:action>
</.table>
<div class="article">
@ -40,10 +40,11 @@
<a href="#" class="hide-link" phx-click={JS.remove_class("show-boundary", to: ".article")}>hide boundaries</a>
<.render_doc tree={@article_content} />
</div>
<div class="h-10" />
<.link navigate={~p"/translations/new?article_id=#{@article.id}"}>New Translation</.link>
<.link class="text-sm font-semibold" navigate={~p"/translations/new?article_id=#{@article.id}"}>New Translation</.link>
<.back navigate={~p"/articles"}>Back to articles</.back>
<.back navigate={~p"/authors/#{@article.author}"}>Back to author</.back>
<.modal :if={@live_action == :edit} id="article-modal" show on_cancel={JS.patch(~p"/articles/#{@article}")}>
<.live_component