mix phx.gen.live Authors Author authors name:string description:text homepage_name:string homepage_url:string
47 lines
1.1 KiB
Elixir
47 lines
1.1 KiB
Elixir
defmodule OutlookWeb.AuthorLive.Index do
|
|
use OutlookWeb, :live_view
|
|
|
|
alias Outlook.Authors
|
|
alias Outlook.Authors.Author
|
|
|
|
@impl true
|
|
def mount(_params, _session, socket) do
|
|
{:ok, assign(socket, :authors, list_authors())}
|
|
end
|
|
|
|
@impl true
|
|
def handle_params(params, _url, socket) do
|
|
{:noreply, apply_action(socket, socket.assigns.live_action, params)}
|
|
end
|
|
|
|
defp apply_action(socket, :edit, %{"id" => id}) do
|
|
socket
|
|
|> assign(:page_title, "Edit Author")
|
|
|> assign(:author, Authors.get_author!(id))
|
|
end
|
|
|
|
defp apply_action(socket, :new, _params) do
|
|
socket
|
|
|> assign(:page_title, "New Author")
|
|
|> assign(:author, %Author{})
|
|
end
|
|
|
|
defp apply_action(socket, :index, _params) do
|
|
socket
|
|
|> assign(:page_title, "Listing Authors")
|
|
|> assign(:author, nil)
|
|
end
|
|
|
|
@impl true
|
|
def handle_event("delete", %{"id" => id}, socket) do
|
|
author = Authors.get_author!(id)
|
|
{:ok, _} = Authors.delete_author(author)
|
|
|
|
{:noreply, assign(socket, :authors, list_authors())}
|
|
end
|
|
|
|
defp list_authors do
|
|
Authors.list_authors()
|
|
end
|
|
end
|