BUG: clear liveview (#22)

Fixes #18
This commit is contained in:
Matthew Ryan Dillon 2020-06-22 21:00:47 -07:00 committed by GitHub
parent 58ceec6d79
commit c1b72074ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 6 deletions

View file

@ -10,6 +10,7 @@ defmodule PlannerWeb.LandingLive do
def mount(_params, _session, socket) do def mount(_params, _session, socket) do
socket = socket =
socket socket
|> clear_flash(:info)
|> assign(:new_task_changeset, Tasks.change_task(%Task{})) |> assign(:new_task_changeset, Tasks.change_task(%Task{}))
{:ok, socket} {:ok, socket}
@ -32,10 +33,12 @@ defmodule PlannerWeb.LandingLive do
def handle_event("save_new_task", %{"task" => task_params}, socket) do def handle_event("save_new_task", %{"task" => task_params}, socket) do
case Tasks.add_task(task_params) do case Tasks.add_task(task_params) do
{:ok, _task} -> {:ok, task} ->
{:noreply, {:noreply,
socket 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} -> {:error, %Ecto.Changeset{} = changeset} ->
{:noreply, {:noreply,

View file

@ -1,14 +1,14 @@
<main role="main" class="container"> <main role="main" class="container">
<%= if live_flash(@flash, :info) do %> <%= if live_flash(@flash, :info) do %>
<p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info"> <p class="notification is-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
<button class="delete" onclick="this.parentNode.remove();"></button> <button class="delete" phx-click="lv:clear-flash" phx-value-key="info"></button>
<%= live_flash(@flash, :info) %> <%= live_flash(@flash, :info) %>
</p> </p>
<% end %> <% end %>
<%= if live_flash(@flash, :error) do %> <%= if live_flash(@flash, :error) do %>
<p class="alert alert-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error"> <p class="notification is-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
<button class="delete" onclick="this.parentNode.remove();"></button> <button class="delete" phx-click="lv:clear-flash" phx-value-key="error"></button>
<%= live_flash(@flash, :error) %> <%= live_flash(@flash, :error) %>
</p> </p>
<% end %> <% end %>