Created
January 6, 2015 16:44
-
-
Save acrogenesis/da437987fc7695a1c9e7 to your computer and use it in GitHub Desktop.
Foundation display_flash_messages, supports single and array 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 ApplicationHelper | |
DEFAULT_KEY_MATCHING = { | |
alert: :alert, | |
notice: :success, | |
info: :standard, | |
secondary: :secondary, | |
success: :success, | |
error: :alert, | |
warning: :warning | |
} | |
def display_flash_messages(key_matching = {}) | |
key_matching = DEFAULT_KEY_MATCHING.merge(key_matching) | |
flash.reduce '' do |message, (key, value)| | |
if value.is_a?(Array) | |
value.each do |val| | |
message += build_message(key: key, value: val, key_match: key_matching) | |
end | |
message | |
else | |
build_message(key: key, value: value, key_match: key_matching) | |
end | |
end.html_safe | |
end | |
private | |
def build_message(args) | |
html = "<div class='row'><div class='small-12 columns'>" | |
html += content_tag :div, data: { alert: '' }, class: "alert-box #{args[:key_match][args[:key].to_sym] || :standard}" do | |
raw "#{args[:value]} #{link_to '×'.html_safe, '#', class: :close}" | |
end | |
html += '</div></div>' | |
html.html_safe | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment