Skip to content

Commit

Permalink
Took another stab at observe_field. Now implementing data only helper…
Browse files Browse the repository at this point in the history
…s as script elements.
  • Loading branch information
foobarfighter authored and stefanpenner committed Jan 27, 2010
1 parent d383f05 commit afdecbc
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 34 deletions.
52 changes: 41 additions & 11 deletions actionpack/lib/action_view/helpers/ajax_helper.rb
Expand Up @@ -80,21 +80,51 @@ def observe_field(name, options = {})
script_decorator(attributes) script_decorator(attributes)
end end


def observe_field(name, options = {}, html_options = {}) def observe_field(name, options = {})
url = options.delete(:url) if options[:url]
url = url_for(url) if url.is_a?(Hash) 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 options[:with] && (options[:with] !~ /[\{=(.]/)
if frequency && frequency > 0 options[:with] = "'#{options[:with]}=' + encodeURIComponent(value)"
html_options[:"data-frequency"] = frequency 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 end


html_options.merge!(:style => "display:none", options[:name] = name
:"data-observe-field" => name,
:"data-observe" => true, <<-SCRIPT
:"data-url" => url) <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 end


module Rails2Compatibility module Rails2Compatibility
Expand Down
51 changes: 28 additions & 23 deletions actionpack/test/javascript/ajax_test.rb
Expand Up @@ -112,6 +112,8 @@ class LegacyButtonToRemoteTest < ButtonToRemoteTest
end end
end end


# TODO: We need a better way to test JSON being returned from data only helpers - BR
# TODO: We might also need a lower level data only helper method??? - BR
class ObserveFieldTest < AjaxTestCase class ObserveFieldTest < AjaxTestCase
def protect_against_forgery? def protect_against_forgery?
false false
Expand All @@ -123,46 +125,49 @@ def field(options = {})


test "basic" do test "basic" do
assert_html field, assert_html field,
%w(div style="display:none" data-observe="true" data-observe-field="title") %w(script type="application/json" data-rails-type="observe_field")
end end


test "using a url string" do test "using a url string" do
assert_html field(:url => "/some/other/url"), assert_html field(:url => "/some/other/url"),
%w(data-url="/some/other/url") %w("url":"/some/other/url")
end end


test "using a url hash" do test "using a url hash" do
assert_html field(:url => {:controller => :blog, :action => :update}), assert_html field(:url => {:controller => :blog, :action => :update}),
%w(data-url="/url/hash") %w("url":"/url/hash")
end end


test "with a :frequency option" do test "using a :frequency option" do
assert_html field(:frequency => 5.minutes), assert_html field(:frequency => 5.minutes),
%w(data-frequency="300") %w("frequency":300)
end end


test "with a :frequency option of 0" do test "using a :frequency option of 0" do
assert_no_match /data-frequency/, field(:frequency => 0) assert_no_match /frequency/, field(:frequency => 0)
end end


# TODO: Finish when remote_function or some equivilent is finished -BR
# def test_observe_field # def test_observe_field
# assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/reorder_if_empty', {asynchronous:true, evalScripts:true, parameters:value})})\n//]]>\n</script>), # assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/reorder_if_empty', {asynchronous:true, evalScripts:true, parameters:value})})\n//]]>\n</script>),
# observe_field("glass", :frequency => 5.minutes, :url => { :action => "reorder_if_empty" }) # observe_field("glass", :frequency => 5.minutes, :url => { :action => "reorder_if_empty" })
# end # end
#
# def test_observe_field_using_with_option # TODO: Consider using JSON instead of strings. Is using 'value' as a magical reference to the value of the observed field weird? (Rails2 does this) - BR
# expected = %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/check_value', {asynchronous:true, evalScripts:true, parameters:'id=' + encodeURIComponent(value)})})\n//]]>\n</script>) test "using a :with option" do
# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => 'id') assert_html field(:with => "foo"),
# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => "'id=' + encodeURIComponent(value)") %w("with":"'foo=' + encodeURIComponent(value)")
# end assert_html field(:with => "'foo=' + encodeURIComponent(value)"),
# %w("with":"'foo=' + encodeURIComponent(value)")
# def test_observe_field_using_json_in_with_option end
# expected = %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {new Ajax.Request('http://www.example.com/check_value', {asynchronous:true, evalScripts:true, parameters:{'id':value}})})\n//]]>\n</script>)
# assert_dom_equal expected, observe_field("glass", :frequency => 5.minutes, :url => { :action => "check_value" }, :with => "{'id':value}") test "using json in a :with option" do
# end assert_html field(:with => "{'id':value}"),
# %w("with":"{'id':value}")
# def test_observe_field_using_function_for_callback end
# assert_dom_equal %(<script type=\"text/javascript\">\n//<![CDATA[\nnew Form.Element.Observer('glass', 300, function(element, value) {alert('Element changed')})\n//]]>\n</script>),
# observe_field("glass", :frequency => 5.minutes, :function => "alert('Element changed')") test "using :function for callback" do
# end assert_html field(:function => "alert('Element changed')"),
%w("function":"function(element, value) {alert('Element changed')}")
end
end end

0 comments on commit afdecbc

Please sign in to comment.