parent
58ceec6d79
commit
c1b72074ea
2 changed files with 9 additions and 6 deletions
|
@ -10,6 +10,7 @@ defmodule PlannerWeb.LandingLive do
|
|||
def mount(_params, _session, socket) do
|
||||
socket =
|
||||
socket
|
||||
|> clear_flash(:info)
|
||||
|> assign(:new_task_changeset, Tasks.change_task(%Task{}))
|
||||
|
||||
{:ok, socket}
|
||||
|
@ -32,10 +33,12 @@ defmodule PlannerWeb.LandingLive do
|
|||
|
||||
def handle_event("save_new_task", %{"task" => task_params}, socket) do
|
||||
case Tasks.add_task(task_params) do
|
||||
{:ok, _task} ->
|
||||
{:ok, task} ->
|
||||
{:noreply,
|
||||
socket
|
||||
|> put_flash(:info, "task created")}
|
||||
|> clear_flash(:info)
|
||||
|> put_flash(:info, "task '" <> task.value <> "' created")
|
||||
|> assign(:new_task_changeset, Tasks.change_task(%Task{}))}
|
||||
|
||||
{:error, %Ecto.Changeset{} = changeset} ->
|
||||
{:noreply,
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
<main role="main" class="container">
|
||||
<%= if live_flash(@flash, :info) do %>
|
||||
<p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<p class="notification is-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
|
||||
<button class="delete" phx-click="lv:clear-flash" phx-value-key="info"></button>
|
||||
<%= live_flash(@flash, :info) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
<%= if live_flash(@flash, :error) do %>
|
||||
<p class="alert alert-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
|
||||
<button class="delete" onclick="this.parentNode.remove();"></button>
|
||||
<p class="notification is-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
|
||||
<button class="delete" phx-click="lv:clear-flash" phx-value-key="error"></button>
|
||||
<%= live_flash(@flash, :error) %>
|
||||
</p>
|
||||
<% end %>
|
||||
|
|
Loading…
Add table
Reference in a new issue