IMP: remove flash messages (#20)

Fixes #13
This commit is contained in:
Matthew Ryan Dillon 2020-06-22 19:26:13 -07:00 committed by GitHub
parent 3d8f79cc9e
commit 7cb0ec35f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View file

@ -1,12 +1,14 @@
<main role="main" class="container"> <main role="main" class="container">
<%= if not is_nil(get_flash(@conn, :info)) do %> <%= if not is_nil(get_flash(@conn, :info)) do %>
<p class="notification is-info" role="alert"> <p class="notification is-info" role="alert">
<button class="delete" onclick="this.parentNode.remove();"></button>
<%= get_flash(@conn, :info) %> <%= get_flash(@conn, :info) %>
</p> </p>
<% end %> <% end %>
<%= if not is_nil(get_flash(@conn, :error)) do %> <%= if not is_nil(get_flash(@conn, :error)) do %>
<p class="notification is-danger" role="alert"> <p class="notification is-danger" role="alert">
<button class="delete" onclick="this.parentNode.remove();"></button>
<%= get_flash(@conn, :error) %> <%= get_flash(@conn, :error) %>
</p> </p>
<% end %> <% end %>

View file

@ -1,14 +1,16 @@
<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" <p class="alert alert-info" role="alert" phx-click="lv:clear-flash" phx-value-key="info">
phx-click="lv:clear-flash" <button class="delete" onclick="this.parentNode.remove();"></button>
phx-value-key="info"><%= live_flash(@flash, :info) %></p> <%= live_flash(@flash, :info) %>
</p>
<% end %> <% end %>
<%= if live_flash(@flash, :error) do %> <%= if live_flash(@flash, :error) do %>
<p class="alert alert-danger" role="alert" <p class="alert alert-danger" role="alert" phx-click="lv:clear-flash" phx-value-key="error">
phx-click="lv:clear-flash" <button class="delete" onclick="this.parentNode.remove();"></button>
phx-value-key="error"><%= live_flash(@flash, :error) %></p> <%= live_flash(@flash, :error) %>
</p>
<% end %> <% end %>
<%= @inner_content %> <%= @inner_content %>