Created
August 18, 2014 09:24
-
-
Save zmajstor/bd9920c86584ea9ff10e to your computer and use it in GitHub Desktop.
Bootstrap 3 rails helper for flash messages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module BootstrapHelper | |
# Bootstrap 3 helpers for Rails 4 Flash messages | |
# in Gemfile add line: gem 'bootstrap-sass', '~> 3.2.0' | |
# and <%= flash_messages %> in views/layouts/application.html.erb | |
# use in controllers: flash[:error] = 'Invalid email/password combination' | |
def bootstrap_class_for flash_type | |
{ success: "alert-success", error: "alert-danger", alert: "alert-warning", notice: "alert-info" }[flash_type] || flash_type.to_s | |
end | |
# customize icons for each flash type | |
def bootstrap_icon_for flash_type | |
{ success: "ok", error: "exclamation-sign", alert: "warning-sign", notice: "info-sign" }[flash_type] || "question-sign" | |
end | |
def bootstrap_close_alert_button_tag | |
button_tag(type: 'button', class: "close", data: { dismiss: 'alert' }) do | |
concat content_tag(:span, '×'.html_safe, 'aria-hidden' => 'true') | |
concat content_tag(:span, 'Close', class: "sr-only") | |
end | |
end | |
def flash_messages(opts = {}) | |
flash.each do |msg_type, message| | |
concat(content_tag(:div, message, class: "alert #{bootstrap_class_for(msg_type.to_sym)} alert-dismissible", role: "alert") do | |
concat bootstrap_close_alert_button_tag | |
concat content_tag(:i, nil, class: "glyphicon glyphicon-#{bootstrap_icon_for(msg_type.to_sym)}") | |
concat ' ' | |
concat message | |
end) | |
end | |
nil | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment