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

55 lines
1.5 KiB
Elixir
Raw Normal View History

2022-07-25 20:08:40 -04:00
defmodule MemexWeb.NoteLive.Show do
use MemexWeb, :live_view
alias Memex.{Accounts.User, Notes, Notes.Note}
2022-07-25 20:08:40 -04:00
@impl true
def mount(_params, _session, socket) do
{:ok, socket}
end
@impl true
2022-11-17 22:38:52 -05:00
def handle_params(
%{"id" => id},
_,
%{assigns: %{live_action: live_action, current_user: current_user}} = socket
) do
2022-11-24 17:44:01 -05:00
note = Notes.get_note!(id, current_user)
socket =
socket
|> assign(:page_title, page_title(live_action, note))
|> assign(:note, note)
{:noreply, socket}
2022-07-25 20:08:40 -04:00
end
2022-11-24 12:43:34 -05:00
@impl true
def handle_event(
"delete",
_params,
%{assigns: %{note: note, current_user: current_user}} = socket
) do
{:ok, %{title: title}} = Notes.delete_note(note, current_user)
socket =
socket
|> put_flash(:info, gettext("%{title} deleted", title: title))
|> push_navigate(to: Routes.note_index_path(Endpoint, :index))
{:noreply, socket}
end
2022-11-24 17:44:01 -05:00
defp page_title(:show, %{title: title}), do: title
defp page_title(:edit, %{title: title}), do: gettext("edit %{title}", title: title)
@spec is_owner_or_admin?(Note.t(), User.t()) :: boolean()
defp is_owner_or_admin?(%{user_id: user_id}, %{id: user_id}), do: true
defp is_owner_or_admin?(_context, %{role: :admin}), do: true
defp is_owner_or_admin?(_context, _other_user), do: false
@spec is_owner?(Note.t(), User.t()) :: boolean()
defp is_owner?(%{user_id: user_id}, %{id: user_id}), do: true
defp is_owner?(_context, _other_user), do: false
2022-07-25 20:08:40 -04:00
end