Class: ActionDispatch::Flash::FlashHash
- Inherits:
-
Object
- Object
- ActionDispatch::Flash::FlashHash
- Includes:
- Enumerable
- Defined in:
- lib/action_dispatch/middleware/flash.rb
Overview
Implementation detail: please do not change the signature of the FlashHash class. Doing that will likely affect all Rails apps in production as the FlashHash currently stored in their sessions will become invalid.
Instance Method Summary collapse
- #[](k) ⇒ Object
-
#[]=(k, v) ⇒ Object
:nodoc:.
-
#alert ⇒ Object
Convenience accessor for flash.
-
#alert=(message) ⇒ Object
Convenience accessor for flash=.
- #clear ⇒ Object
- #delete(key) ⇒ Object
-
#discard(k = nil) ⇒ Object
Marks the entire flash or a single flash entry to be discarded by the end of the current action:.
- #each(&block) ⇒ Object
- #empty? ⇒ Boolean
-
#initialize ⇒ FlashHash
constructor
:nodoc:.
- #initialize_copy(other) ⇒ Object
-
#keep(k = nil) ⇒ Object
Keeps either the entire current flash or a specific flash entry available for the next action:.
- #key?(name) ⇒ Boolean
- #keys ⇒ Object
-
#notice ⇒ Object
Convenience accessor for flash.
-
#notice=(message) ⇒ Object
Convenience accessor for flash=.
-
#now ⇒ Object
Sets a flash that will not be available to the next action, only to the current.
-
#replace(h) ⇒ Object
:nodoc:.
-
#sweep ⇒ Object
Mark for removal entries that were kept, and delete unkept ones.
- #to_hash ⇒ Object
-
#update(h) ⇒ Object
(also: #merge!)
:nodoc:.
Constructor Details
#initialize ⇒ FlashHash
:nodoc:
80 81 82 83 84 85 |
# File 'lib/action_dispatch/middleware/flash.rb', line 80 def initialize #:nodoc: @used = Set.new @closed = false @flashes = {} @now = nil end |
Instance Method Details
#[](k) ⇒ Object
100 101 102 |
# File 'lib/action_dispatch/middleware/flash.rb', line 100 def [](k) @flashes[k] end |
#[]=(k, v) ⇒ Object
:nodoc:
95 96 97 98 |
# File 'lib/action_dispatch/middleware/flash.rb', line 95 def []=(k, v) #:nodoc: keep(k) @flashes[k] = v end |
#alert ⇒ Object
Convenience accessor for flash
195 196 197 |
# File 'lib/action_dispatch/middleware/flash.rb', line 195 def alert self[:alert] end |
#alert=(message) ⇒ Object
Convenience accessor for flash=
200 201 202 |
# File 'lib/action_dispatch/middleware/flash.rb', line 200 def alert=() self[:alert] = end |
#clear ⇒ Object
131 132 133 |
# File 'lib/action_dispatch/middleware/flash.rb', line 131 def clear @flashes.clear end |
#delete(key) ⇒ Object
118 119 120 121 |
# File 'lib/action_dispatch/middleware/flash.rb', line 118 def delete(key) @flashes.delete key self end |
#discard(k = nil) ⇒ Object
Marks the entire flash or a single flash entry to be discarded by the end of the current action:
flash.discard # discard the entire flash at the end of the current action
flash.discard(:warning) # discard only the "warning" entry at the end of the current action
173 174 175 |
# File 'lib/action_dispatch/middleware/flash.rb', line 173 def discard(k = nil) use(k) end |
#each(&block) ⇒ Object
135 136 137 |
# File 'lib/action_dispatch/middleware/flash.rb', line 135 def each(&block) @flashes.each(&block) end |
#empty? ⇒ Boolean
127 128 129 |
# File 'lib/action_dispatch/middleware/flash.rb', line 127 def empty? @flashes.empty? end |
#initialize_copy(other) ⇒ Object
87 88 89 90 91 92 93 |
# File 'lib/action_dispatch/middleware/flash.rb', line 87 def initialize_copy(other) if other.now_is_loaded? @now = other.now.dup @now.flash = self end super end |
#keep(k = nil) ⇒ Object
Keeps either the entire current flash or a specific flash entry available for the next action:
flash.keep # keeps the entire flash
flash.keep(:notice) # keeps only the "notice" entry, the rest of the flash is discarded
165 166 167 |
# File 'lib/action_dispatch/middleware/flash.rb', line 165 def keep(k = nil) use(k, false) end |
#key?(name) ⇒ Boolean
114 115 116 |
# File 'lib/action_dispatch/middleware/flash.rb', line 114 def key?(name) @flashes.key? name end |
#keys ⇒ Object
110 111 112 |
# File 'lib/action_dispatch/middleware/flash.rb', line 110 def keys @flashes.keys end |
#notice ⇒ Object
Convenience accessor for flash
205 206 207 |
# File 'lib/action_dispatch/middleware/flash.rb', line 205 def notice self[:notice] end |
#notice=(message) ⇒ Object
Convenience accessor for flash=
210 211 212 |
# File 'lib/action_dispatch/middleware/flash.rb', line 210 def notice=() self[:notice] = end |
#now ⇒ Object
Sets a flash that will not be available to the next action, only to the current.
flash.now[:message] = "Hello current action"
This method enables you to use the flash as a central messaging system in your app. When you need to pass an object to the next action, you use the standard flash assign ([]=
). When you need to pass an object to the current action, you use now
, and your object will vanish when the current action is done.
Entries set via now
are accessed the same way as standard entries: flash['my-key']
.
157 158 159 |
# File 'lib/action_dispatch/middleware/flash.rb', line 157 def now @now ||= FlashNow.new(self) end |
#replace(h) ⇒ Object
:nodoc:
141 142 143 144 145 |
# File 'lib/action_dispatch/middleware/flash.rb', line 141 def replace(h) #:nodoc: @used = Set.new @flashes.replace h self end |
#sweep ⇒ Object
Mark for removal entries that were kept, and delete unkept ones.
This method is called automatically by filters, so you generally don’t need to care about it.
180 181 182 183 184 185 186 187 188 189 190 191 192 |
# File 'lib/action_dispatch/middleware/flash.rb', line 180 def sweep #:nodoc: keys.each do |k| unless @used.include?(k) @used << k else delete(k) @used.delete(k) end end # clean up after keys that could have been left over by calling reject! or shift on the flash (@used - keys).each{ |k| @used.delete(k) } end |
#to_hash ⇒ Object
123 124 125 |
# File 'lib/action_dispatch/middleware/flash.rb', line 123 def to_hash @flashes.dup end |
#update(h) ⇒ Object Also known as: merge!
:nodoc:
104 105 106 107 108 |
# File 'lib/action_dispatch/middleware/flash.rb', line 104 def update(h) #:nodoc: h.keys.each { |k| keep(k) } @flashes.update h self end |