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

53 lines
1.6 KiB
Elixir
Raw Normal View History

2022-07-25 20:08:40 -04:00
defmodule MemexWeb.NoteLive.Index do
use MemexWeb, :live_view
2022-11-17 22:38:52 -05:00
alias Memex.{Notes, Notes.Note}
2022-07-25 20:08:40 -04:00
@impl true
2022-11-17 22:38:52 -05:00
def mount(_params, _session, %{assigns: %{current_user: current_user}} = socket)
when not (current_user |> is_nil()) do
{:ok, socket |> assign(notes: Notes.list_notes(current_user))}
end
2022-07-25 20:08:40 -04:00
def mount(_params, _session, socket) do
2022-11-17 22:38:52 -05:00
{:ok, socket |> assign(notes: Notes.list_public_notes())}
2022-07-25 20:08:40 -04:00
end
@impl true
2022-11-17 22:38:52 -05:00
def handle_params(params, _url, %{assigns: %{live_action: live_action}} = socket) do
{:noreply, apply_action(socket, live_action, params)}
2022-07-25 20:08:40 -04:00
end
2022-11-17 22:38:52 -05:00
defp apply_action(%{assigns: %{current_user: current_user}} = socket, :edit, %{"id" => id}) do
%{title: title} = note = Notes.get_note!(id, current_user)
2022-07-25 20:08:40 -04:00
socket
2022-11-17 22:30:01 -05:00
|> assign(page_title: gettext("edit %{title}", title: title))
2022-11-17 22:38:52 -05:00
|> assign(note: note)
2022-07-25 20:08:40 -04:00
end
2022-11-17 22:38:52 -05:00
defp apply_action(%{assigns: %{current_user: %{id: current_user_id}}} = socket, :new, _params) do
2022-07-25 20:08:40 -04:00
socket
2022-11-17 22:30:01 -05:00
|> assign(page_title: "new note")
2022-11-17 22:38:52 -05:00
|> assign(note: %Note{user_id: current_user_id})
2022-07-25 20:08:40 -04:00
end
defp apply_action(socket, :index, _params) do
socket
2022-11-17 22:30:01 -05:00
|> assign(page_title: "notes")
2022-11-17 22:38:52 -05:00
|> assign(note: nil)
2022-07-25 20:08:40 -04:00
end
@impl true
2022-11-17 22:38:52 -05:00
def handle_event("delete", %{"id" => id}, %{assigns: %{current_user: current_user}} = socket) do
%{title: title} = note = Notes.get_note!(id, current_user)
{:ok, _} = Notes.delete_note(note, current_user)
2022-07-25 20:08:40 -04:00
2022-11-17 22:38:52 -05:00
socket =
socket
|> assign(notes: Notes.list_notes(current_user))
2022-11-17 22:30:01 -05:00
|> put_flash(:info, gettext("%{title} deleted", title: title))
2022-07-25 20:08:40 -04:00
2022-11-17 22:38:52 -05:00
{:noreply, socket}
2022-07-25 20:08:40 -04:00
end
end