2005-03-14 18:37:38 -05:00
|
|
|
module ActionView
|
|
|
|
module Helpers
|
2007-06-23 13:49:18 -04:00
|
|
|
# CaptureHelper exposes methods to let you extract generated markup which
|
|
|
|
# can be used in other parts of a template or layout file.
|
|
|
|
# It provides a method to capture blocks into variables through capture and
|
2007-06-28 14:32:34 -04:00
|
|
|
# a way to capture a block of markup for use in a layout through content_for.
|
2005-03-14 18:37:38 -05:00
|
|
|
module CaptureHelper
|
2007-06-28 14:32:34 -04:00
|
|
|
# The capture method allows you to extract part of a template into a
|
|
|
|
# variable. You can then use this variable anywhere in your templates or layout.
|
2005-03-14 18:37:38 -05:00
|
|
|
#
|
2007-06-23 13:49:18 -04:00
|
|
|
# ==== Examples
|
2007-07-23 21:19:08 -04:00
|
|
|
# The capture method can be used in ERb templates...
|
2005-03-14 18:37:38 -05:00
|
|
|
#
|
|
|
|
# <% @greeting = capture do %>
|
2007-06-23 13:49:18 -04:00
|
|
|
# Welcome to my shiny new web page! The date and time is
|
|
|
|
# <%= Time.now %>
|
2006-02-26 14:47:50 -05:00
|
|
|
# <% end %>
|
|
|
|
#
|
2007-06-23 13:49:18 -04:00
|
|
|
# ...and Builder (RXML) templates.
|
2006-02-26 14:47:50 -05:00
|
|
|
#
|
2007-06-23 13:49:18 -04:00
|
|
|
# @timestamp = capture do
|
|
|
|
# "The current timestamp is #{Time.now}."
|
2006-02-26 14:47:50 -05:00
|
|
|
# end
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# You can then use that variable anywhere else. For example:
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
|
|
|
# <html>
|
|
|
|
# <head><title><%= @greeting %></title></head>
|
|
|
|
# <body>
|
|
|
|
# <b><%= @greeting %></b>
|
|
|
|
# </body></html>
|
|
|
|
#
|
2005-06-21 02:43:14 -04:00
|
|
|
def capture(*args, &block)
|
2005-03-14 18:37:38 -05:00
|
|
|
# execute the block
|
2006-02-26 14:47:50 -05:00
|
|
|
begin
|
2006-11-17 08:10:23 -05:00
|
|
|
buffer = eval(ActionView::Base.erb_variable, block.binding)
|
2006-02-26 14:47:50 -05:00
|
|
|
rescue
|
|
|
|
buffer = nil
|
|
|
|
end
|
2005-03-14 18:37:38 -05:00
|
|
|
|
2006-02-26 14:47:50 -05:00
|
|
|
if buffer.nil?
|
2006-11-17 08:10:23 -05:00
|
|
|
capture_block(*args, &block).to_s
|
2006-02-26 14:47:50 -05:00
|
|
|
else
|
2006-11-17 08:10:23 -05:00
|
|
|
capture_erb_with_buffer(buffer, *args, &block).to_s
|
2006-02-26 14:47:50 -05:00
|
|
|
end
|
2005-03-14 18:37:38 -05:00
|
|
|
end
|
|
|
|
|
2007-06-28 14:32:34 -04:00
|
|
|
# Calling content_for stores a block of markup in an identifier for later use.
|
|
|
|
# You can make subsequent calls to the stored content in other templates or the layout
|
|
|
|
# by passing the identifier as an argument to <tt>yield</tt>.
|
2005-03-14 18:37:38 -05:00
|
|
|
#
|
2007-06-23 13:49:18 -04:00
|
|
|
# ==== Examples
|
2005-03-14 18:37:38 -05:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# <% content_for :not_authorized do %>
|
|
|
|
# alert('You are not authorized to do that!')
|
2007-06-23 13:49:18 -04:00
|
|
|
# <% end %>
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# You can then use <tt>yield :not_authorized</tt> anywhere in your templates.
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# <%= yield :not_authorized if current_user.nil? %>
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# You can also use this syntax alongside an existing call to <tt>yield</tt> in a layout. For example:
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
2007-09-24 19:01:50 -04:00
|
|
|
# <%# This is the layout %>
|
2007-06-23 13:49:18 -04:00
|
|
|
# <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
# <head>
|
|
|
|
# <title>My Website</title>
|
|
|
|
# <%= yield :script %>
|
|
|
|
# </head>
|
|
|
|
# <body>
|
|
|
|
# <%= yield %>
|
|
|
|
# </body>
|
|
|
|
# </html>
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# And now, we'll create a view that has a content_for call that
|
2007-06-23 13:49:18 -04:00
|
|
|
# creates the <tt>script</tt> identifier.
|
|
|
|
#
|
2007-09-24 19:01:50 -04:00
|
|
|
# <%# This is our view %>
|
2007-06-23 13:49:18 -04:00
|
|
|
# Please login!
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# <% content_for :script do %>
|
|
|
|
# <script type="text/javascript">alert('You are not authorized to view this page!')</script>
|
2005-03-14 18:37:38 -05:00
|
|
|
# <% end %>
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# Then, in another view, you could to do something like this:
|
2007-06-23 13:49:18 -04:00
|
|
|
#
|
|
|
|
# <%= link_to_remote 'Logout', :action => 'logout' %>
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# <% content_for :script do %>
|
2007-06-23 13:49:18 -04:00
|
|
|
# <%= javascript_include_tag :defaults %>
|
|
|
|
# <% end %>
|
2006-04-25 00:03:51 -04:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# That will place <script> tags for Prototype, Scriptaculous, and application.js (if it exists)
|
|
|
|
# on the page; this technique is useful if you'll only be using these scripts in a few views.
|
2005-06-21 02:43:14 -04:00
|
|
|
#
|
2007-09-20 23:40:25 -04:00
|
|
|
# Note that content_for concatenates the blocks it is given for a particular
|
2007-06-28 14:32:34 -04:00
|
|
|
# identifier in order. For example:
|
2006-04-25 00:03:51 -04:00
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# <% content_for :navigation do %>
|
|
|
|
# <li><%= link_to 'Home', :action => 'index' %></li>
|
|
|
|
# <% end %>
|
|
|
|
#
|
2007-09-24 19:01:50 -04:00
|
|
|
# <%# Add some other content, or use a different template: %>
|
2007-06-28 14:32:34 -04:00
|
|
|
#
|
|
|
|
# <% content_for :navigation do %>
|
|
|
|
# <li><%= link_to 'Login', :action => 'login' %></li>
|
|
|
|
# <% end %>
|
|
|
|
#
|
|
|
|
# Then, in another template or layout, this code would render both links in order:
|
|
|
|
#
|
|
|
|
# <ul><%= yield :navigation %></ul>
|
2007-09-20 23:40:25 -04:00
|
|
|
#
|
|
|
|
# Lastly, simple content can be passed as a parameter:
|
|
|
|
#
|
|
|
|
# <% content_for :script, javascript_include_tag(:defaults) %>
|
|
|
|
#
|
2007-06-28 14:32:34 -04:00
|
|
|
# WARNING: content_for is ignored in caches. So you shouldn't use it
|
|
|
|
# for elements that will be fragment cached.
|
|
|
|
#
|
|
|
|
# The deprecated way of accessing a content_for block is to use an instance variable
|
2008-03-28 16:03:28 -04:00
|
|
|
# named <tt>@content_for_#{name_of_the_content_block}</tt>. The preferred usage is now
|
2006-04-25 00:03:51 -04:00
|
|
|
# <tt><%= yield :footer %></tt>.
|
2006-10-22 19:41:11 -04:00
|
|
|
def content_for(name, content = nil, &block)
|
2007-09-20 23:40:25 -04:00
|
|
|
existing_content_for = instance_variable_get("@content_for_#{name}").to_s
|
|
|
|
new_content_for = existing_content_for + (block_given? ? capture(&block) : content)
|
|
|
|
instance_variable_set("@content_for_#{name}", new_content_for)
|
2005-03-14 18:37:38 -05:00
|
|
|
end
|
2006-02-26 14:47:50 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
def capture_block(*args, &block)
|
|
|
|
block.call(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def capture_erb(*args, &block)
|
2006-11-17 08:10:23 -05:00
|
|
|
buffer = eval(ActionView::Base.erb_variable, block.binding)
|
2006-02-26 14:47:50 -05:00
|
|
|
capture_erb_with_buffer(buffer, *args, &block)
|
|
|
|
end
|
|
|
|
|
|
|
|
def capture_erb_with_buffer(buffer, *args, &block)
|
|
|
|
pos = buffer.length
|
|
|
|
block.call(*args)
|
|
|
|
|
|
|
|
# extract the block
|
|
|
|
data = buffer[pos..-1]
|
|
|
|
|
|
|
|
# replace it in the original with empty string
|
|
|
|
buffer[pos..-1] = ''
|
|
|
|
|
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
def erb_content_for(name, &block)
|
|
|
|
eval "@content_for_#{name} = (@content_for_#{name} || '') + capture_erb(&block)"
|
|
|
|
end
|
|
|
|
|
|
|
|
def block_content_for(name, &block)
|
|
|
|
eval "@content_for_#{name} = (@content_for_#{name} || '') + capture_block(&block)"
|
|
|
|
end
|
2005-03-14 18:37:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|