shibao 0c5442f0cd
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
add backlinks
2025-02-15 06:01:03 +00:00

54 lines
1.4 KiB
Elixir

defmodule MemexWeb.NoteLive.Show do
use MemexWeb, :live_view
alias Memex.{Contexts, Notes, Pipelines}
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
def handle_params(
%{"slug" => slug},
_params,
%{assigns: %{live_action: live_action, current_user: current_user}} = socket
) do
note =
case Notes.get_note_by_slug(slug, current_user) do
nil -> raise MemexWeb.NotFoundError, gettext("%{slug} could not be found", slug: slug)
note -> note
end
socket =
socket
|> assign(
context_backlinks: Contexts.backlink("[[#{note.slug}]]", current_user),
note_backlinks: Notes.backlink("[#{note.slug}]", current_user),
note: note,
page_title: page_title(live_action, note),
pipeline_backlinks: Pipelines.backlink("[[[#{note.slug}]]]", current_user)
)
{:noreply, socket}
end
@impl true
def handle_event(
"delete",
_params,
%{assigns: %{note: note, current_user: current_user}} = socket
) do
{:ok, %{slug: slug}} = Notes.delete_note(note, current_user)
socket =
socket
|> put_flash(:info, gettext("%{slug} deleted", slug: slug))
|> push_navigate(to: ~p"/notes")
{:noreply, socket}
end
defp page_title(:show, %{slug: slug}), do: slug
defp page_title(:edit, %{slug: slug}), do: gettext("edit %{slug}", slug: slug)
end