2010-03-17 02:24:00 -04:00
|
|
|
require "active_support/core_ext/module/remove_method"
|
|
|
|
|
2009-02-27 14:42:13 -05:00
|
|
|
module AbstractController
|
2009-12-30 19:33:54 -05:00
|
|
|
# Layouts reverse the common pattern of including shared headers and footers in many templates to isolate changes in
|
|
|
|
# repeated setups. The inclusion pattern has pages that look like this:
|
|
|
|
#
|
|
|
|
# <%= render "shared/header" %>
|
|
|
|
# Hello World
|
|
|
|
# <%= render "shared/footer" %>
|
|
|
|
#
|
|
|
|
# This approach is a decent way of keeping common structures isolated from the changing content, but it's verbose
|
|
|
|
# and if you ever want to change the structure of these two includes, you'll have to change all the templates.
|
|
|
|
#
|
|
|
|
# With layouts, you can flip it around and have the common structure know where to insert changing content. This means
|
|
|
|
# that the header and footer are only mentioned in one place, like this:
|
|
|
|
#
|
|
|
|
# // The header part of this layout
|
|
|
|
# <%= yield %>
|
|
|
|
# // The footer part of this layout
|
|
|
|
#
|
|
|
|
# And then you have content pages that look like this:
|
|
|
|
#
|
|
|
|
# hello world
|
|
|
|
#
|
|
|
|
# At rendering time, the content page is computed and then inserted in the layout, like this:
|
|
|
|
#
|
|
|
|
# // The header part of this layout
|
|
|
|
# hello world
|
|
|
|
# // The footer part of this layout
|
|
|
|
#
|
|
|
|
# == Accessing shared variables
|
|
|
|
#
|
|
|
|
# Layouts have access to variables specified in the content pages and vice versa. This allows you to have layouts with
|
|
|
|
# references that won't materialize before rendering time:
|
|
|
|
#
|
|
|
|
# <h1><%= @page_title %></h1>
|
|
|
|
# <%= yield %>
|
|
|
|
#
|
|
|
|
# ...and content pages that fulfill these references _at_ rendering time:
|
|
|
|
#
|
|
|
|
# <% @page_title = "Welcome" %>
|
|
|
|
# Off-world colonies offers you a chance to start a new life
|
|
|
|
#
|
|
|
|
# The result after rendering is:
|
|
|
|
#
|
|
|
|
# <h1>Welcome</h1>
|
|
|
|
# Off-world colonies offers you a chance to start a new life
|
|
|
|
#
|
|
|
|
# == Layout assignment
|
|
|
|
#
|
|
|
|
# You can either specify a layout declaratively (using the #layout class method) or give
|
|
|
|
# it the same name as your controller, and place it in <tt>app/views/layouts</tt>.
|
|
|
|
# If a subclass does not have a layout specified, it inherits its layout using normal Ruby inheritance.
|
|
|
|
#
|
|
|
|
# For instance, if you have PostsController and a template named <tt>app/views/layouts/posts.html.erb</tt>,
|
|
|
|
# that template will be used for all actions in PostsController and controllers inheriting
|
|
|
|
# from PostsController.
|
|
|
|
#
|
|
|
|
# If you use a module, for instance Weblog::PostsController, you will need a template named
|
|
|
|
# <tt>app/views/layouts/weblog/posts.html.erb</tt>.
|
|
|
|
#
|
|
|
|
# Since all your controllers inherit from ApplicationController, they will use
|
|
|
|
# <tt>app/views/layouts/application.html.erb</tt> if no other layout is specified
|
|
|
|
# or provided.
|
|
|
|
#
|
|
|
|
# == Inheritance Examples
|
|
|
|
#
|
|
|
|
# class BankController < ActionController::Base
|
|
|
|
# layout "bank_standard"
|
|
|
|
#
|
|
|
|
# class InformationController < BankController
|
|
|
|
#
|
|
|
|
# class TellerController < BankController
|
|
|
|
# # teller.html.erb exists
|
|
|
|
#
|
|
|
|
# class TillController < TellerController
|
|
|
|
#
|
|
|
|
# class VaultController < BankController
|
|
|
|
# layout :access_level_layout
|
|
|
|
#
|
|
|
|
# class EmployeeController < BankController
|
|
|
|
# layout nil
|
|
|
|
#
|
|
|
|
# The InformationController uses "bank_standard" inherited from the BankController, the VaultController overwrites
|
|
|
|
# and picks the layout dynamically, and the EmployeeController doesn't want to use a layout at all.
|
|
|
|
#
|
|
|
|
# The TellerController uses +teller.html.erb+, and TillController inherits that layout and
|
|
|
|
# uses it as well.
|
|
|
|
#
|
|
|
|
# == Types of layouts
|
|
|
|
#
|
|
|
|
# Layouts are basically just regular templates, but the name of this template needs not be specified statically. Sometimes
|
|
|
|
# you want to alternate layouts depending on runtime information, such as whether someone is logged in or not. This can
|
|
|
|
# be done either by specifying a method reference as a symbol or using an inline method (as a proc).
|
|
|
|
#
|
|
|
|
# The method reference is the preferred approach to variable layouts and is used like this:
|
|
|
|
#
|
|
|
|
# class WeblogController < ActionController::Base
|
|
|
|
# layout :writers_and_readers
|
|
|
|
#
|
|
|
|
# def index
|
|
|
|
# # fetching posts
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# private
|
|
|
|
# def writers_and_readers
|
|
|
|
# logged_in? ? "writer_layout" : "reader_layout"
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Now when a new request for the index action is processed, the layout will vary depending on whether the person accessing
|
|
|
|
# is logged in or not.
|
|
|
|
#
|
|
|
|
# If you want to use an inline method, such as a proc, do something like this:
|
|
|
|
#
|
|
|
|
# class WeblogController < ActionController::Base
|
|
|
|
# layout proc{ |controller| controller.logged_in? ? "writer_layout" : "reader_layout" }
|
|
|
|
#
|
|
|
|
# Of course, the most common way of specifying a layout is still just as a plain template name:
|
|
|
|
#
|
|
|
|
# class WeblogController < ActionController::Base
|
|
|
|
# layout "weblog_standard"
|
|
|
|
#
|
|
|
|
# If no directory is specified for the template name, the template will by default be looked for in <tt>app/views/layouts/</tt>.
|
|
|
|
# Otherwise, it will be looked up relative to the template root.
|
|
|
|
#
|
|
|
|
# == Conditional layouts
|
|
|
|
#
|
|
|
|
# If you have a layout that by default is applied to all the actions of a controller, you still have the option of rendering
|
|
|
|
# a given action or set of actions without a layout, or restricting a layout to only a single action or a set of actions. The
|
|
|
|
# <tt>:only</tt> and <tt>:except</tt> options can be passed to the layout call. For example:
|
|
|
|
#
|
|
|
|
# class WeblogController < ActionController::Base
|
|
|
|
# layout "weblog_standard", :except => :rss
|
|
|
|
#
|
|
|
|
# # ...
|
|
|
|
#
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# This will assign "weblog_standard" as the WeblogController's layout except for the +rss+ action, which will not wrap a layout
|
|
|
|
# around the rendered view.
|
|
|
|
#
|
|
|
|
# Both the <tt>:only</tt> and <tt>:except</tt> condition can accept an arbitrary number of method references, so
|
|
|
|
# #<tt>:except => [ :rss, :text_only ]</tt> is valid, as is <tt>:except => :rss</tt>.
|
|
|
|
#
|
|
|
|
# == Using a different layout in the action render call
|
|
|
|
#
|
|
|
|
# If most of your actions use the same layout, it makes perfect sense to define a controller-wide layout as described above.
|
|
|
|
# Sometimes you'll have exceptions where one action wants to use a different layout than the rest of the controller.
|
|
|
|
# You can do this by passing a <tt>:layout</tt> option to the <tt>render</tt> call. For example:
|
|
|
|
#
|
|
|
|
# class WeblogController < ActionController::Base
|
|
|
|
# layout "weblog_standard"
|
|
|
|
#
|
|
|
|
# def help
|
|
|
|
# render :action => "help", :layout => "help"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# This will render the help action with the "help" layout instead of the controller-wide "weblog_standard" layout.
|
2009-02-27 14:42:13 -05:00
|
|
|
module Layouts
|
2009-05-28 12:35:36 -04:00
|
|
|
extend ActiveSupport::Concern
|
2009-05-07 11:29:22 -04:00
|
|
|
|
2009-12-20 20:15:31 -05:00
|
|
|
include Rendering
|
2009-05-07 11:29:22 -04:00
|
|
|
|
2009-05-21 21:14:20 -04:00
|
|
|
included do
|
2010-01-31 21:32:28 -05:00
|
|
|
class_attribute :_layout_conditions
|
|
|
|
delegate :_layout_conditions, :to => :'self.class'
|
|
|
|
self._layout_conditions = {}
|
2009-07-15 17:16:12 -04:00
|
|
|
_write_layout_method
|
2009-05-21 21:14:20 -04:00
|
|
|
end
|
|
|
|
|
2009-03-23 18:45:01 -04:00
|
|
|
module ClassMethods
|
2009-06-15 20:32:10 -04:00
|
|
|
def inherited(klass)
|
|
|
|
super
|
2010-03-07 13:41:58 -05:00
|
|
|
klass._write_layout_method
|
2009-08-09 08:46:50 -04:00
|
|
|
end
|
|
|
|
|
2009-08-10 18:49:33 -04:00
|
|
|
# This module is mixed in if layout conditions are provided. This means
|
|
|
|
# that if no layout conditions are used, this method is not used
|
|
|
|
module LayoutConditions
|
|
|
|
# Determines whether the current action has a layout by checking the
|
|
|
|
# action name against the :only and :except conditions set on the
|
|
|
|
# layout.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# Boolean:: True if the action has a layout, false otherwise.
|
2010-03-18 16:47:40 -04:00
|
|
|
def action_has_layout?
|
2010-03-18 17:55:13 -04:00
|
|
|
return unless super
|
|
|
|
|
2009-08-10 18:49:33 -04:00
|
|
|
conditions = _layout_conditions
|
|
|
|
|
|
|
|
if only = conditions[:only]
|
|
|
|
only.include?(action_name)
|
|
|
|
elsif except = conditions[:except]
|
|
|
|
!except.include?(action_name)
|
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-06-09 19:46:42 -04:00
|
|
|
# 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
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# layout<String, Symbol, false)>:: The layout to use.
|
|
|
|
#
|
|
|
|
# ==== Options (conditions)
|
|
|
|
# :only<#to_s, Array[#to_s]>:: A list of actions to apply this layout to.
|
|
|
|
# :except<#to_s, Array[#to_s]>:: Apply this layout to all actions but this one
|
2009-05-21 21:14:20 -04:00
|
|
|
def layout(layout, conditions = {})
|
2009-08-10 18:49:33 -04:00
|
|
|
include LayoutConditions unless conditions.empty?
|
|
|
|
|
2009-05-21 21:14:20 -04:00
|
|
|
conditions.each {|k, v| conditions[k] = Array(v).map {|a| a.to_s} }
|
|
|
|
self._layout_conditions = conditions
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2009-04-07 17:57:18 -04:00
|
|
|
@_layout = layout || false # Converts nil to false
|
|
|
|
_write_layout_method
|
2009-03-23 21:06:47 -04:00
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2009-06-09 19:46:42 -04:00
|
|
|
# If no layout is supplied, look for a template named the return
|
|
|
|
# value of this method.
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# String:: A template name
|
2009-04-07 18:54:02 -04:00
|
|
|
def _implied_layout_name
|
2009-12-30 19:33:54 -05:00
|
|
|
controller_path
|
2009-04-07 18:54:02 -04:00
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2009-04-07 20:57:20 -04:00
|
|
|
# Takes the specified layout and creates a _layout method to be called
|
|
|
|
# by _default_layout
|
2009-05-28 10:49:02 -04:00
|
|
|
#
|
2009-06-09 19:46:42 -04:00
|
|
|
# If there is no explicit layout specified:
|
|
|
|
# If a layout is found in the view paths with the controller's
|
|
|
|
# name, return that string. Otherwise, use the superclass'
|
|
|
|
# layout (which might also be implied)
|
2009-03-23 21:06:47 -04:00
|
|
|
def _write_layout_method
|
2010-03-17 02:24:00 -04:00
|
|
|
remove_possible_method(:_layout)
|
|
|
|
|
2009-11-10 19:15:43 -05:00
|
|
|
case defined?(@_layout) ? @_layout : nil
|
2009-03-23 21:06:47 -04:00
|
|
|
when String
|
2010-03-07 20:58:16 -05:00
|
|
|
self.class_eval %{def _layout; #{@_layout.inspect} end}
|
2009-03-23 21:06:47 -04:00
|
|
|
when Symbol
|
2009-06-09 19:46:42 -04:00
|
|
|
self.class_eval <<-ruby_eval, __FILE__, __LINE__ + 1
|
2010-03-07 20:58:16 -05:00
|
|
|
def _layout
|
2009-06-09 19:46:42 -04:00
|
|
|
#{@_layout}.tap do |layout|
|
|
|
|
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
|
|
|
|
end
|
|
|
|
ruby_eval
|
2010-01-26 10:34:25 -05:00
|
|
|
when Proc
|
|
|
|
define_method :_layout_from_proc, &@_layout
|
2010-03-07 20:58:16 -05:00
|
|
|
self.class_eval %{def _layout; _layout_from_proc(self) end}
|
2009-03-23 21:06:47 -04:00
|
|
|
when false
|
2010-03-07 20:58:16 -05:00
|
|
|
self.class_eval %{def _layout; end}
|
2009-06-09 19:46:42 -04:00
|
|
|
when true
|
|
|
|
raise ArgumentError, "Layouts must be specified as a String, Symbol, false, or nil"
|
|
|
|
when nil
|
2009-11-05 19:11:08 -05:00
|
|
|
if name
|
2010-03-07 20:04:18 -05:00
|
|
|
_prefix = "layouts" unless _implied_layout_name =~ /\blayouts/
|
|
|
|
|
2009-11-05 19:11:08 -05:00
|
|
|
self.class_eval <<-RUBY, __FILE__, __LINE__ + 1
|
2010-03-07 20:58:16 -05:00
|
|
|
def _layout
|
2010-03-08 05:32:01 -05:00
|
|
|
if template_exists?("#{_implied_layout_name}", #{_prefix.inspect})
|
2010-03-07 13:41:58 -05:00
|
|
|
"#{_implied_layout_name}"
|
|
|
|
else
|
|
|
|
super
|
2009-08-09 08:46:50 -04:00
|
|
|
end
|
2009-03-23 21:06:47 -04:00
|
|
|
end
|
2009-11-05 19:11:08 -05:00
|
|
|
RUBY
|
|
|
|
end
|
2009-03-23 21:06:47 -04:00
|
|
|
end
|
2009-06-15 20:32:10 -04:00
|
|
|
self.class_eval { private :_layout }
|
2009-03-23 21:06:47 -04:00
|
|
|
end
|
2009-03-23 18:45:01 -04:00
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
|
2010-03-08 05:32:01 -05:00
|
|
|
def _normalize_options(options)
|
|
|
|
super
|
|
|
|
|
2010-03-07 21:23:16 -05:00
|
|
|
if _include_layout?(options)
|
2010-03-08 08:46:57 -05:00
|
|
|
layout = options.key?(:layout) ? options.delete(:layout) : :default
|
2010-03-07 20:58:16 -05:00
|
|
|
value = _layout_for_option(layout)
|
2010-03-08 08:46:57 -05:00
|
|
|
options[:layout] = (value =~ /\blayouts/ ? value : "layouts/#{value}") if value
|
2009-08-07 10:33:54 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-18 17:55:13 -04:00
|
|
|
attr_writer :action_has_layout
|
|
|
|
|
|
|
|
def initialize(*)
|
|
|
|
@action_has_layout = true
|
2010-03-19 01:21:25 -04:00
|
|
|
super
|
2010-03-18 17:55:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def action_has_layout?
|
|
|
|
@action_has_layout
|
|
|
|
end
|
|
|
|
|
2009-03-23 18:45:01 -04:00
|
|
|
private
|
2009-10-18 20:52:36 -04:00
|
|
|
|
2009-06-09 19:46:42 -04:00
|
|
|
# This will be overwritten by _write_layout_method
|
2010-03-07 20:58:16 -05:00
|
|
|
def _layout; end
|
2009-05-20 18:33:08 -04:00
|
|
|
|
2009-10-17 09:31:11 -04:00
|
|
|
# Determine the layout for a given name and details, taking into account
|
|
|
|
# the name type.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# name<String|TrueClass|FalseClass|Symbol>:: The name of the template
|
|
|
|
# details<Hash{Symbol => Object}>:: A list of details to restrict
|
|
|
|
# the lookup to. By default, layout lookup is limited to the
|
|
|
|
# formats specified for the current request.
|
2010-03-07 20:58:16 -05:00
|
|
|
def _layout_for_option(name)
|
2009-10-17 09:31:11 -04:00
|
|
|
case name
|
2010-03-07 20:58:16 -05:00
|
|
|
when String then name
|
|
|
|
when true then _default_layout(true)
|
|
|
|
when :default then _default_layout(false)
|
2009-10-17 09:31:11 -04:00
|
|
|
when false, nil then nil
|
|
|
|
else
|
|
|
|
raise ArgumentError,
|
|
|
|
"String, true, or false, expected for `layout'; you passed #{name.inspect}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-10 18:49:33 -04:00
|
|
|
# Returns the default layout for this controller and a given set of details.
|
2009-06-09 19:46:42 -04:00
|
|
|
# Optionally raises an exception if the layout could not be found.
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# details<Hash>:: A list of details to restrict the search by. This
|
|
|
|
# might include details like the format or locale of the template.
|
|
|
|
# require_layout<Boolean>:: If this is true, raise an ArgumentError
|
|
|
|
# with details about the fact that the exception could not be
|
|
|
|
# found (defaults to false)
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# Template:: The template object for the default layout (or nil)
|
2010-03-07 20:58:16 -05:00
|
|
|
def _default_layout(require_layout = false)
|
2009-04-07 18:54:02 -04:00
|
|
|
begin
|
2010-03-18 16:47:40 -04:00
|
|
|
layout_name = _layout if action_has_layout?
|
2009-04-07 18:54:02 -04:00
|
|
|
rescue NameError => e
|
2009-05-28 10:49:02 -04:00
|
|
|
raise NoMethodError,
|
2009-04-07 18:54:02 -04:00
|
|
|
"You specified #{@_layout.inspect} as the layout, but no such method was found"
|
|
|
|
end
|
2010-03-07 20:58:16 -05:00
|
|
|
|
2010-03-18 16:47:40 -04:00
|
|
|
if require_layout && action_has_layout? && !layout_name
|
2010-03-07 20:58:16 -05:00
|
|
|
raise ArgumentError,
|
|
|
|
"There was no default layout for #{self.class} in #{view_paths.inspect}"
|
|
|
|
end
|
|
|
|
|
|
|
|
layout_name
|
2009-03-23 18:45:01 -04:00
|
|
|
end
|
2009-05-21 21:14:20 -04:00
|
|
|
|
2010-03-07 21:23:16 -05:00
|
|
|
def _include_layout?(options)
|
|
|
|
(options.keys & [:text, :inline, :partial]).empty? || options.key?(:layout)
|
|
|
|
end
|
2009-02-27 14:42:13 -05:00
|
|
|
end
|
2009-05-28 10:49:02 -04:00
|
|
|
end
|