2007-01-28 02:16:55 -05:00
|
|
|
require 'action_view/helpers/tag_helper'
|
2005-03-11 21:42:48 -05:00
|
|
|
|
2005-03-11 21:59:12 -05:00
|
|
|
module ActionView
|
2010-06-16 14:17:49 -04:00
|
|
|
# = Action View JavaScript Helpers
|
2005-03-11 21:59:12 -05:00
|
|
|
module Helpers
|
2005-11-14 17:28:47 -05:00
|
|
|
# Provides functionality for working with JavaScript in your views.
|
2008-06-21 17:54:10 -04:00
|
|
|
#
|
2005-11-14 17:28:47 -05:00
|
|
|
# == Ajax, controls and visual effects
|
2008-06-21 17:54:10 -04:00
|
|
|
#
|
|
|
|
# * For information on using Ajax, see
|
2005-11-14 17:28:47 -05:00
|
|
|
# ActionView::Helpers::PrototypeHelper.
|
|
|
|
# * For information on using controls and visual effects, see
|
|
|
|
# ActionView::Helpers::ScriptaculousHelper.
|
2005-03-22 07:33:47 -05:00
|
|
|
#
|
2005-11-14 17:28:47 -05:00
|
|
|
# == Including the JavaScript libraries into your pages
|
2005-10-15 01:08:59 -04:00
|
|
|
#
|
2005-11-14 17:28:47 -05:00
|
|
|
# Rails includes the Prototype JavaScript framework and the Scriptaculous
|
|
|
|
# JavaScript controls and visual effects library. If you wish to use
|
|
|
|
# these libraries and their helpers (ActionView::Helpers::PrototypeHelper
|
|
|
|
# and ActionView::Helpers::ScriptaculousHelper), you must do one of the
|
|
|
|
# following:
|
2005-10-15 01:08:59 -04:00
|
|
|
#
|
2008-06-21 17:54:10 -04:00
|
|
|
# * Use <tt><%= javascript_include_tag :defaults %></tt> in the HEAD
|
|
|
|
# section of your page (recommended): This function will return
|
2005-11-14 17:28:47 -05:00
|
|
|
# references to the JavaScript files created by the +rails+ command in
|
|
|
|
# your <tt>public/javascripts</tt> directory. Using it is recommended as
|
2008-06-21 17:54:10 -04:00
|
|
|
# the browser can then cache the libraries instead of fetching all the
|
2005-11-14 17:28:47 -05:00
|
|
|
# functions anew on every request.
|
2008-06-21 17:54:10 -04:00
|
|
|
# * Use <tt><%= javascript_include_tag 'prototype' %></tt>: As above, but
|
2005-11-14 17:28:47 -05:00
|
|
|
# will only include the Prototype core library, which means you are able
|
2008-06-21 17:54:10 -04:00
|
|
|
# to use all basic AJAX functionality. For the Scriptaculous-based
|
|
|
|
# JavaScript helpers, like visual effects, autocompletion, drag and drop
|
2005-11-14 17:28:47 -05:00
|
|
|
# and so on, you should use the method described above.
|
2005-03-22 07:41:34 -05:00
|
|
|
#
|
2008-06-21 17:54:10 -04:00
|
|
|
# For documentation on +javascript_include_tag+ see
|
2005-11-14 17:28:47 -05:00
|
|
|
# ActionView::Helpers::AssetTagHelper.
|
|
|
|
module JavaScriptHelper
|
2010-01-30 15:39:41 -05:00
|
|
|
include PrototypeHelper
|
2008-06-21 17:54:10 -04:00
|
|
|
|
|
|
|
JS_ESCAPE_MAP = {
|
|
|
|
'\\' => '\\\\',
|
|
|
|
'</' => '<\/',
|
|
|
|
"\r\n" => '\n',
|
|
|
|
"\n" => '\n',
|
|
|
|
"\r" => '\n',
|
|
|
|
'"' => '\\"',
|
|
|
|
"'" => "\\'" }
|
|
|
|
|
2005-06-29 04:09:00 -04:00
|
|
|
# Escape carrier returns and single and double quotes for JavaScript segments.
|
2011-03-26 13:28:39 -04:00
|
|
|
# Also available through the alias j(). This is particularly helpful in JavaScript responses, like:
|
|
|
|
#
|
|
|
|
# $('some_element').replaceWith('<%=j render 'some/element_template' %>');
|
2005-03-20 19:57:08 -05:00
|
|
|
def escape_javascript(javascript)
|
2008-06-21 17:54:10 -04:00
|
|
|
if javascript
|
|
|
|
javascript.gsub(/(\\|<\/|\r\n|[\n\r"'])/) { JS_ESCAPE_MAP[$1] }
|
|
|
|
else
|
|
|
|
''
|
|
|
|
end
|
2005-03-20 19:57:08 -05:00
|
|
|
end
|
2005-03-26 09:03:55 -05:00
|
|
|
|
2011-03-27 14:20:54 -04:00
|
|
|
alias_method :j, :escape_javascript
|
2011-03-26 13:28:39 -04:00
|
|
|
|
2005-06-29 04:09:00 -04:00
|
|
|
# Returns a JavaScript tag with the +content+ inside. Example:
|
2006-10-08 20:15:28 -04:00
|
|
|
# javascript_tag "alert('All is good')"
|
|
|
|
#
|
|
|
|
# Returns:
|
|
|
|
# <script type="text/javascript">
|
|
|
|
# //<![CDATA[
|
|
|
|
# alert('All is good')
|
|
|
|
# //]]>
|
|
|
|
# </script>
|
2006-10-08 20:50:11 -04:00
|
|
|
#
|
2010-09-16 09:10:36 -04:00
|
|
|
# +html_options+ may be a hash of attributes for the <tt>\<script></tt>
|
2010-09-06 12:22:33 -04:00
|
|
|
# tag. Example:
|
2008-06-21 17:54:10 -04:00
|
|
|
# javascript_tag "alert('All is good')", :defer => 'defer'
|
2007-09-15 17:34:25 -04:00
|
|
|
# # => <script defer="defer" type="text/javascript">alert('All is good')</script>
|
|
|
|
#
|
|
|
|
# Instead of passing the content as an argument, you can also use a block
|
|
|
|
# in which case, you pass your +html_options+ as the first parameter.
|
2010-03-12 07:24:17 -05:00
|
|
|
# <%= javascript_tag :defer => 'defer' do -%>
|
2007-09-15 17:34:25 -04:00
|
|
|
# alert('All is good')
|
|
|
|
# <% end -%>
|
|
|
|
def javascript_tag(content_or_options_with_block = nil, html_options = {}, &block)
|
2008-06-06 20:59:41 -04:00
|
|
|
content =
|
|
|
|
if block_given?
|
|
|
|
html_options = content_or_options_with_block if content_or_options_with_block.is_a?(Hash)
|
|
|
|
capture(&block)
|
|
|
|
else
|
|
|
|
content_or_options_with_block
|
|
|
|
end
|
|
|
|
|
2010-03-09 21:00:28 -05:00
|
|
|
content_tag(:script, javascript_cdata_section(content), html_options.merge(:type => Mime::JS))
|
2005-06-26 08:03:43 -04:00
|
|
|
end
|
|
|
|
|
2005-10-12 18:47:39 -04:00
|
|
|
def javascript_cdata_section(content) #:nodoc:
|
2010-02-13 16:53:26 -05:00
|
|
|
"\n//#{cdata_section("\n#{content}\n//")}\n".html_safe
|
2005-10-12 18:47:39 -04:00
|
|
|
end
|
2010-03-16 23:06:16 -04:00
|
|
|
|
|
|
|
# Returns a button with the given +name+ text that'll trigger a JavaScript +function+ using the
|
|
|
|
# onclick handler.
|
|
|
|
#
|
|
|
|
# The first argument +name+ is used as the button's value or display text.
|
|
|
|
#
|
|
|
|
# The next arguments are optional and may include the javascript function definition and a hash of html_options.
|
|
|
|
#
|
|
|
|
# The +function+ argument can be omitted in favor of an +update_page+
|
|
|
|
# block, which evaluates to a string when the template is rendered
|
|
|
|
# (instead of making an Ajax request first).
|
|
|
|
#
|
|
|
|
# The +html_options+ will accept a hash of html attributes for the link tag. Some examples are :class => "nav_button", :id => "articles_nav_button"
|
|
|
|
#
|
|
|
|
# Note: if you choose to specify the javascript function in a block, but would like to pass html_options, set the +function+ parameter to nil
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
# button_to_function "Greeting", "alert('Hello world!')"
|
|
|
|
# button_to_function "Delete", "if (confirm('Really?')) do_delete()"
|
|
|
|
# button_to_function "Details" do |page|
|
|
|
|
# page[:details].visual_effect :toggle_slide
|
|
|
|
# end
|
|
|
|
# button_to_function "Details", :class => "details_button" do |page|
|
|
|
|
# page[:details].visual_effect :toggle_slide
|
|
|
|
# end
|
|
|
|
def button_to_function(name, *args, &block)
|
|
|
|
html_options = args.extract_options!.symbolize_keys
|
|
|
|
|
|
|
|
function = block_given? ? update_page(&block) : args[0] || ''
|
|
|
|
onclick = "#{"#{html_options[:onclick]}; " if html_options[:onclick]}#{function};"
|
|
|
|
|
|
|
|
tag(:input, html_options.merge(:type => 'button', :value => name, :onclick => onclick))
|
|
|
|
end
|
|
|
|
|
2011-03-24 18:48:07 -04:00
|
|
|
# Returns a link whose +onclick+ handler triggers the passed JavaScript.
|
2010-03-16 23:06:16 -04:00
|
|
|
#
|
2011-03-24 18:48:07 -04:00
|
|
|
# The helper receives a name, JavaScript code, and an optional hash of HTML options. The
|
|
|
|
# name is used as the link text and the JavaScript code goes into the +onclick+ attribute.
|
|
|
|
# If +html_options+ has an <tt>:onclick</tt>, that one is put before +function+. Once all
|
|
|
|
# the JavaScript is set, the helper appends "; return false;".
|
2010-03-16 23:06:16 -04:00
|
|
|
#
|
2011-03-24 18:48:07 -04:00
|
|
|
# The +href+ attribute of the tag is set to "#" unles +html_options+ has one.
|
2010-03-16 23:06:16 -04:00
|
|
|
#
|
2011-03-24 18:48:07 -04:00
|
|
|
# link_to_function "Greeting", "alert('Hello world!')", :class => "nav_link"
|
2010-03-16 23:06:16 -04:00
|
|
|
# Produces:
|
2011-03-24 18:48:07 -04:00
|
|
|
# <a onclick="alert('Hello world!'); return false;" href="#" class="nav_link">Greeting</a>
|
|
|
|
def link_to_function(name, function, html_options={})
|
2010-03-16 23:06:16 -04:00
|
|
|
onclick = "#{"#{html_options[:onclick]}; " if html_options[:onclick]}#{function}; return false;"
|
|
|
|
href = html_options[:href] || '#'
|
|
|
|
|
|
|
|
content_tag(:a, name, html_options.merge(:href => href, :onclick => onclick))
|
|
|
|
end
|
2005-03-11 21:42:48 -05:00
|
|
|
end
|
2005-03-11 21:59:12 -05:00
|
|
|
end
|
2005-03-14 07:47:38 -05:00
|
|
|
end
|