Skip to content

Instantly share code, notes, and snippets.

@cmkoller
Last active July 25, 2021 07:34
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save cmkoller/0d3b048b3c4b48ee4955 to your computer and use it in GitHub Desktop.
Save cmkoller/0d3b048b3c4b48ee4955 to your computer and use it in GitHub Desktop.
Setting up Sinatra Flash

Setting Up Sinatra Flash

Sinatra Flash is an awesome gem that allows you to pop up little messages alerting your users of important things, via some simple code in your server.rb file. This is very useful for things like displaying error messages if the user has filled out a form wrong, or displaying "success" messages if the user did something successfully like sign in, sign out, or submit a form.

This also gives you a great chance to implement Foundation's beautiful alerts. Here's how to set it up!

  1. Install the gem by typing gem install sinatra-flash in your terminal.
  2. Require the gem in the top of your server.rb file: require 'sinatra/flash'
  3. Enable sessions by adding this line right after your requires in server.rb: enable :sessions. (Sessions allow your browser a way to persist certain information.)
  4. Add the following code to your layout.erb file, right before your yield block:
<% flash.keys.each do |type| %>
  <div data-alert class="flash <%= type %> alert-box radius">
    <%= flash[type] %>
    <a href="#" class="close">&times;</a>
  </div>
<% end %>

(It is totally okay to just copy and paste this code in every new project you make - that's what I do!)

Flash stores its messages as a hash. If you place a binding.pry in your code (such as in server.rb or layout.erb - either work!) you can call flash to examine how it works and how to interact with it. The above block of code goes through each flash key, and for each one, it sets up an alert box and prints the text associated with that key.

To make a new flash message appear, you need to set a new key-value pairing in your server.rb file. For example, I may use the following code:

get '/' do
  flash[:notice] = "Hooray, Flash is working!"
  erb :index
end

Try to use a descriptive word as the key! For example, if your flash is warning your user of a potential problem, you could use flash[:warning]. Check out the different types of words Foundation uses to differentiate its alert boxes for inspiration!

(Hint: the block of ERB code I provided above takes the key from your flash message and sets that as an HTML class for the alert box. So if you want to get your message to look like the Foundation "info" alert box, use :alert as your key and the Foundation styles will show right up!)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment