Module: AbstractController::Layouts::ClassMethods
- Defined in:
- lib/abstract_controller/layouts.rb
Defined Under Namespace
Modules: LayoutConditions
Instance Method Summary collapse
-
#_implied_layout_name ⇒ Object
If no layout is supplied, look for a template named the return value of this method.
-
#_write_layout_method ⇒ Object
Creates a _layout method to be called by _default_layout .
-
#inherited(klass) ⇒ Object
:nodoc:.
-
#layout(layout, conditions = {}) ⇒ Object
Specify the layout to use for this class.
Instance Method Details
#_implied_layout_name ⇒ Object
If no layout is supplied, look for a template named the return value of this method.
Returns
-
String
- A template name
276 277 278 |
# File 'lib/abstract_controller/layouts.rb', line 276 def _implied_layout_name # :nodoc: controller_path end |
#_write_layout_method ⇒ Object
Creates a _layout method to be called by _default_layout .
If a layout is not explicitly mentioned then look for a layout with the controller’s name. if nothing is found then try same procedure to find super class’s layout.
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
# File 'lib/abstract_controller/layouts.rb', line 284 def _write_layout_method # :nodoc: remove_possible_method(:_layout) prefixes = _implied_layout_name =~ /\blayouts/ ? [] : ["layouts"] default_behavior = "lookup_context.find_all('#{_implied_layout_name}', #{prefixes.inspect}).first || super" name_clause = if name default_behavior else <<-RUBY super RUBY end layout_definition = case _layout when String _layout.inspect when Symbol <<-RUBY #{_layout}.tap do |layout| return #{default_behavior} if layout.nil? unless layout.is_a?(String) || !layout raise ArgumentError, "Your layout method :#{_layout} returned \#{layout}. It " \ "should have returned a String, false, or nil" end end RUBY when Proc define_method :_layout_from_proc, &_layout protected :_layout_from_proc <<-RUBY result = _layout_from_proc(#{_layout.arity == 0 ? '' : 'self'}) return #{default_behavior} if result.nil? result RUBY when false nil when true raise ArgumentError, "Layouts must be specified as a String, Symbol, Proc, false, or nil" when nil name_clause end self.class_eval <<-RUBY, __FILE__, __LINE__ + 1 def _layout if _conditional_layout? #{layout_definition} else #{name_clause} end end private :_layout RUBY end |
#inherited(klass) ⇒ Object
:nodoc:
215 216 217 218 |
# File 'lib/abstract_controller/layouts.rb', line 215 def inherited(klass) # :nodoc: super klass._write_layout_method end |
#layout(layout, conditions = {}) ⇒ Object
Specify the layout to use for this class.
If the specified layout is a:
- String
-
the String is the template name
- Symbol
-
call the method specified by the symbol, which will return the template name
- false
-
There is no layout
- true
-
raise an ArgumentError
- nil
-
Force default layout behavior with inheritance
Parameters
-
layout
- The layout to use.
Options (conditions)
-
:only - A list of actions to apply this layout to.
-
:except - Apply this layout to all actions but this one.
261 262 263 264 265 266 267 268 269 |
# File 'lib/abstract_controller/layouts.rb', line 261 def layout(layout, conditions = {}) include LayoutConditions unless conditions.empty? conditions.each {|k, v| conditions[k] = Array(v).map {|a| a.to_s} } self._layout_conditions = conditions self._layout = layout _write_layout_method end |