TrestleAdmin/trestle

View on GitHub
sandbox/app/views/admin/components/theme/_alerts.html.erb

Summary

Maintainability
Test Coverage
<%= container do %>
  <header class="main-content-header">
    <h2 class="m-0">Alerts</h2>
  </header>

  <%= render "trestle/flash/alert", html_class: "alert-primary",
                                    icon: icon("alert-icon fas fa-bell"),
                                    alert: {
                                      title: "Primary",
                                      message: alert_message(".alert-primary")
                                    } %>

  <%= render "trestle/flash/alert", html_class: "alert-secondary",
                                    icon: icon("alert-icon fas fa-download"),
                                    alert: {
                                      title: "Secondary",
                                      message: alert_message(".alert-secondary")
                                    } %>
<% end %>