mix phx.gen.live Translations Translation translations \ lang:string title:string teaser:text content:map \ date:utc_datetime user_id:references:users \ public:boolean unauthorized:boolean article_id:references:articles
47 lines
1.2 KiB
Elixir
47 lines
1.2 KiB
Elixir
defmodule OutlookWeb.TranslationLive.Index do
|
|
use OutlookWeb, :live_view
|
|
|
|
alias Outlook.Translations
|
|
alias Outlook.Translations.Translation
|
|
|
|
@impl true
|
|
def mount(_params, _session, socket) do
|
|
{:ok, assign(socket, :translations, list_translations())}
|
|
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 Translation")
|
|
|> assign(:translation, Translations.get_translation!(id))
|
|
end
|
|
|
|
defp apply_action(socket, :new, _params) do
|
|
socket
|
|
|> assign(:page_title, "New Translation")
|
|
|> assign(:translation, %Translation{})
|
|
end
|
|
|
|
defp apply_action(socket, :index, _params) do
|
|
socket
|
|
|> assign(:page_title, "Listing Translations")
|
|
|> assign(:translation, nil)
|
|
end
|
|
|
|
@impl true
|
|
def handle_event("delete", %{"id" => id}, socket) do
|
|
translation = Translations.get_translation!(id)
|
|
{:ok, _} = Translations.delete_translation(translation)
|
|
|
|
{:noreply, assign(socket, :translations, list_translations())}
|
|
end
|
|
|
|
defp list_translations do
|
|
Translations.list_translations()
|
|
end
|
|
end
|