Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/SFEley/sinatra-flash

TODO: one-line summary of your gem
https://github.com/SFEley/sinatra-flash

Last synced: about 1 month ago
JSON representation

TODO: one-line summary of your gem

Lists

README

        

Sinatra::Flash
==============
This is an implementation of show-'em-once 'flash' messages for the [Sinatra][1] Web framework. It offers the following feature set:

* Simplicity (less than 50 significant lines of code)
* Implements the documented [behavior][3] and [public API][4] of the Rails flash that many developers are used to
* Acts entirely like a hash, including iterations and merging
* Optional multiple named flash collections, each with their own message hash, so that different embedded applications can access different sets of messages
* An HTML helper for displaying flash messages with CSS styling
* Verbose documentation in [YARD][5] format
* Full RSpec tests

The primary catch for experienced Rack developers is that it _does not_ function as standalone Rack middleware. (You could get to the messages inside the session if you needed to, but the message rotation occurs in a Sinatra `after` hook.) It should function just fine across multiple Sinatra apps, but if you need flash that's accessible from non-Sinatra applications, consider the [Rack::Flash][2] middleware.

Setting Up
----------
You should know this part:

$ gem install sinatra-flash

(Or `sudo gem install` if you're the last person on Earth who isn't using [RVM][6] yet.)

If you're developing a Sinatra ['classic'][7] application, then all you need to do is enable sessions and require the library:

# blah_app.rb
require 'sinatra'
require 'sinatra/flash'

enable :sessions

post '/blah' do
# This message won't be seen until the NEXT Web request that accesses the flash collection
flash[:blah] = "You were feeling blah at #{Time.now}."

# Accessing the flash displays messages set from the LAST request
"Feeling blah again? That's too bad. #{flash[:blah]}"
end

If you're using the [Sinatra::Base][7] style, you also need to register the extension:

# bleh_app.rb
require 'sinatra/base'
require 'sinatra/flash'

class BlehApp < Sinatra::Base
enable :sessions
register Sinatra::Flash

get '/bleh' do
if flash[:blah]
# The flash collection is cleared after any request that uses it
"Have you ever felt blah? Oh yes. #{flash[:blah]} Remember?"
else
"Oh, now you're only feeling bleh?"
end
end
end

See the Sinatra documentation on [using extensions][8] for more detail and rationale.

styled_flash
------------
The gem comes with a handy view helper that iterates through current flash messages and renders them in styled HTML:

# Using HAML, 'cause the cool kids are all doing it
%html
%body
=styled_flash

Yields (assuming three flash messages with different keys):




I'm sorry, Dave. I'm afraid I can't do that.

This mission is too important for me to allow you to jeopardize it.

Without your space helmet, Dave, you're going to find reaching the emergency airlock rather difficult.





Styling the CSS for the #flash id, the .flash class, or any of the key-based classes is entirely up to you.

(_Side note:_ This view helper was my initial reason for making this gem. I'd gotten used to pasting this little method in on every Rails project, and when I switched to Sinatra was distraught to discover that [Rack::Flash][2] couldn't do it, because the FlashHash isn't really a hash and you can't iterate it. Reinventing flash was sort of a side effect.)

Advanced Tips
-------------
### Now vs. Next
The flash object acts like a hash, but it's really _two_ hashes:

* The **now** hash displays messages for the current request.
* The **next** hash stores messages to be displayed in the _next_ request.

When you access the **flash** helper, the _now_ hash is initialized from a session value. (Named `:flash` by default, but see 'Scoped Flash' below.) Every method except assignment (`[]=`) is delegated to _now_; assignments occur on the _next_ hash. At the end of the request, a Sinatra `after` hook sets the session value to the _next_ hash, effectively rotating it to _now_ for the next request that uses it.

This is usually what you want, and you don't have to worry about the details. However, you occasionally want to set a message to display during _this_ request, or access values that are coming up. In these cases you can access the `.now` and `.next` hashes directly:

# This will be displayed during the current request
flash.now[:error] = "We're shutting down now. Goodbye!"

# Look at messages upcoming in the next request
@weapon = Stake.new if flash.next[:warning] == "The vampire is attacking."

In practice, you'll probably want to set `.now` any time you're displaying errors with an immediate render instead of redirecting. It's hard to think of a common reason to check `.next` -- but it's there if you want it.

### Keep, Discard, and Sweep
These convenience methods allow you to modify the standard rotation cycle, and are based directly on the [Rails flash API][4]:

flash.keep # Will show all messages again
flash.keep(:groundhog) # Will show the message on key :groundhog again
flash.discard # Clears the next messages without showing them
flash.discard(:amnesia) # Clears only the message on key :amnesia
flash.sweep # Rotates the flash manually, discarding _now_ and moving _next_ into its place

### Sessions
The basic _concept_ of flash messages relies on having an active session for your application. Sinatra::Flash is built on the assumption that Sinatra's `session` helper points to something that will persist beyond the current request. You are responsible for ensuring that it does. No other assumptions are made about the session -- you can use any [session strategy][17] you like.

(**Note:** Early versions of this extension attempted to detect the absence of a session and create one for you at the last moment. Thanks to [rkh][15] for [pointing out][16] that this is unreliable in Sinatra. You'll have to be a grownup now )

### Scoped Flash
If one flash collection isn't exciting enough for your application stack, you can have multiple sets of flash messages scoped by a symbol. Each has its own lifecycle and will _not_ be rotated by any Web request that ignores it.

get "/complicated" do
flash(:one)[:hello] = "This will appear the next time flash(:one) is called"
flash(:two).discard(:hello) # Clear a message someone else set on flash(:two)
"A message for you on line three: #{flash(:three)[:hello]}"
end

Both the **flash** and **styled_flash** helper methods accept such keys as optional parameters. If don't specify one, the default key is `:flash`. Whatever keys you use will become session keys as well, so take heed that you don't run into naming conflicts.

Do you need this? Probably not. The principal use case is for complex application stacks in which some messages are only relevant within specific subsystems. If you _do_ use it, be sure to model your message flows carefully, and don't confuse collection keys with message keys.

Credit, Support, and Contributions
----------------------------------
This extension is the fault of **Stephen Eley**. You can reach me at . If you like science fiction stories, I know a [good podcast][9] for them as well.

If you find bugs, please report them on the [Github issue tracker][10].

The documentation can of course be found on [RDoc.info][11].

Contributions are welcome. I'm not sure how much more _must_ be done on a flash message extension, but I'm sure there's plenty that _could_ be done. Please note that the test suite uses RSpec, and you'll need the [Sessionography][14] helper for testing sessions. (I actually developed Sessionography in order to TDD _this_ gem.)

License
-------
This project is licensed under the **Don't Be a Dick License**, version 0.2, and is copyright 2010 by Stephen Eley. See the [LICENSE.markdown][12] file or the [DBAD License site][13] for elaboration on not being a dick.

[1]: http://sinatrarb.com
[2]: http://nakajima.github.com/rack-flash/
[3]: http://api.rubyonrails.org/classes/ActionController/Flash.html
[4]: http://api.rubyonrails.org/classes/ActionController/Flash/FlashHash.html
[5]: http://yardoc.org
[6]: http://rvm.beginrescueend.com
[7]: https://sinatra.lighthouseapp.com/projects/9779/tickets/240-sinatrabase-vs-sinatradefault-vs-sinatraapplication
[8]: http://www.sinatrarb.com/extensions-wild.html
[9]: http://escapepod.org
[10]: http://github.com/SFEley/sinatra-flash/issues
[11]: http://rdoc.info/projects/SFEley/sinatra-flash
[12]: http://github.com/SFEley/sinatra-flash/blob/master/LICENSE.markdown
[13]: http://dbad-license.org
[14]: http://github.com/SFEley/sinatra-sessionography
[15]: http://github.com/rkh
[16]: http://github.com/SFEley/sinatra-flash/issues/issue/1
[17]: http://www.sinatrarb.com/faq.html#sessions