aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/ajax_helper.rb
diff options
context:
space:
mode:
authorBob Remeika <bob.remeika@gmail.com>2009-09-24 00:18:52 -0700
committerStefan Penner <stefan.penner@gmail.com>2010-01-27 12:44:30 -0600
commitafdecbc0a85fb6a61e58b8017f476fe29507e6bf (patch)
tree00debee1529cf0659f912638b71636902a01542b /actionpack/lib/action_view/helpers/ajax_helper.rb
parentd383f057c0821faf1d1d472b471628b37cf8d67c (diff)
downloadrails-afdecbc0a85fb6a61e58b8017f476fe29507e6bf.tar.gz
rails-afdecbc0a85fb6a61e58b8017f476fe29507e6bf.tar.bz2
rails-afdecbc0a85fb6a61e58b8017f476fe29507e6bf.zip
Took another stab at observe_field. Now implementing data only helpers as script elements.
Diffstat (limited to 'actionpack/lib/action_view/helpers/ajax_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/ajax_helper.rb52
1 files changed, 41 insertions, 11 deletions
diff --git a/actionpack/lib/action_view/helpers/ajax_helper.rb b/actionpack/lib/action_view/helpers/ajax_helper.rb
index fce756869c..05e5fca484 100644
--- a/actionpack/lib/action_view/helpers/ajax_helper.rb
+++ b/actionpack/lib/action_view/helpers/ajax_helper.rb
@@ -80,21 +80,51 @@ module ActionView
script_decorator(attributes)
end
- def observe_field(name, options = {}, html_options = {})
- url = options.delete(:url)
- url = url_for(url) if url.is_a?(Hash)
+ def observe_field(name, options = {})
+ if options[:url]
+ options[:url] = options[:url].is_a?(Hash) ? url_for(options[:url]) : options[:url]
+ end
+
+ if options[:frequency]
+ case options[:frequency]
+ when 0
+ options.delete(:frequency)
+ else
+ options[:frequency] = options[:frequency].to_i
+ end
+ end
- frequency = options.delete(:frequency)
- if frequency && frequency > 0
- html_options[:"data-frequency"] = frequency
+ if options[:with] && (options[:with] !~ /[\{=(.]/)
+ options[:with] = "'#{options[:with]}=' + encodeURIComponent(value)"
+ else
+ options[:with] ||= 'value' unless options[:function]
+ end
+
+ if options[:function]
+ statements = options[:function] # || remote_function(options) # TODO: Need to implement remote function - BR
+ options[:function] = JSFunction.new(statements, "element", "value")
end
- html_options.merge!(:style => "display:none",
- :"data-observe-field" => name,
- :"data-observe" => true,
- :"data-url" => url)
+ options[:name] = name
+
+ <<-SCRIPT
+ <script type="application/json" data-rails-type="observe_field">
+ //<![CDATA[
+ #{options.to_json}
+ // ]]>
+ </script>
+ SCRIPT
+ end
+
+ # TODO: Move to javascript helpers - BR
+ class JSFunction
+ def initialize(statements, *arguments)
+ @statements, @arguments = statements, arguments
+ end
- tag(:div, html_options)
+ def as_json(options = nil)
+ "function(#{@arguments.join(", ")}) {#{@statements}}"
+ end
end
module Rails2Compatibility