Files
phoenix-ausblick/lib/outlook_web/live/article_live/form_component.ex
Thelonius Kort b7bd9195b6 Add importing html and save it to Article
Additionally defines a wizard logic which is partially unused yet.
2022-12-29 16:43:52 +01:00

88 lines
2.5 KiB
Elixir

defmodule OutlookWeb.ArticleLive.FormComponent do
use OutlookWeb, :live_component
alias Outlook.Articles
@impl true
def render(assigns) do
~H"""
<div>
<.header>
<%= @title %>
<:subtitle>Use this form to manage article records in your database.</:subtitle>
</.header>
<.simple_form
:let={f}
for={@changeset}
id="article-form"
phx-target={@myself}
phx-change="validate"
phx-submit="save"
>
<.input field={{f, :author_id}} type="hidden" />
<.input field={{f, :title}} type="text" label="title" />
<.input field={{f, :url}} type="text" label="url" />
<.input field={{f, :language}} type="text" label="language" />
<.input field={{f, :date}} type="datetime-local" label="date" />
<:actions>
<.button phx-disable-with="Saving...">Save Article</.button>
</:actions>
</.simple_form>
</div>
"""
end
@impl true
def update(%{article: article} = assigns, socket) do
changeset = Articles.change_article(article)
{:ok,
socket
|> assign(assigns)
|> assign(:changeset, changeset)}
end
@impl true
def handle_event("validate", %{"article" => article_params}, socket) do
changeset =
socket.assigns.article
|> Articles.change_article(article_params)
|> Map.put(:action, :validate)
{:noreply, assign(socket, :changeset, changeset)}
end
def handle_event("save", %{"article" => article_params}, socket) do
article_params = article_params
|> Map.put("content", socket.assigns.internal_tree)
save_article(socket, socket.assigns.action, article_params)
end
defp save_article(socket, :edit, article_params) do
case Articles.update_article(socket.assigns.article, article_params) do
{:ok, _article} ->
{:noreply,
socket
|> put_flash(:info, "Article updated successfully")
|> push_navigate(to: socket.assigns.navigate)}
{:error, %Ecto.Changeset{} = changeset} ->
{:noreply, assign(socket, :changeset, changeset)}
end
end
defp save_article(socket, :new, article_params) do
case Articles.create_article(article_params) do
{:ok, _article} ->
{:noreply,
socket
|> put_flash(:info, "Article created successfully")
|> push_navigate(to: socket.assigns.navigate)}
{:error, %Ecto.Changeset{} = changeset} ->
{:noreply, assign(socket, changeset: changeset)}
end
end
end