Module: RespondToParent::ActionControllerMethods
- Defined in:
- lib/respond_to_parent/action_controller_methods.rb
Overview
Module containing the methods useful for child IFRAME to parent window communication
Instance Method Summary collapse
-
#responds_to_parent ⇒ Object
(also: #respond_to_parent)
Executes the response body as JavaScript in the context of the parent window.
Instance Method Details
#responds_to_parent ⇒ Object Also known as: respond_to_parent
Executes the response body as JavaScript in the context of the parent window. Use this method of you are posting a form to a hidden IFRAME or if you would like to use IFRAME base RPC.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/respond_to_parent/action_controller_methods.rb', line 7 def responds_to_parent yield if performed? # We're returning HTML instead of JS or XML now response.headers['Content-Type'] = 'text/html; charset=UTF-8' # Either pull out a redirect or the request body script = if response.headers['Location'] #TODO: erase_redirect_results is missing in rails 3.0 has to be implemented # erase redirect "document.location.href = #{location.to_s.inspect}" else response.body end # Escape quotes, linebreaks and slashes, maintaining previously escaped slashes # Suggestions for improvement? script = (script || ''). gsub('\\', '\\\\\\'). gsub(/\r\n|\r|\n/, '\\n'). gsub(/['"]/, '\\\\\&'). gsub('</script>','</scr"+"ipt>') # Clear out the previous render to prevent double render @_response_body = nil # Eval in parent scope and replace document location of this frame # so back button doesn't replay action on targeted forms # loc = document.location to be set after parent is updated for IE # with(window.parent) - pull in variables from parent window # setTimeout - scope the execution in the windows parent for safari # window.eval - legal eval for Opera render :text => "<html><body><script type='text/javascript' charset='utf-8'> var loc = document.location; with(window.parent) { setTimeout(function() { window.eval('#{script}'); if (typeof(loc) !== 'undefined') loc.replace('about:blank'); }, 1) }; </script></body></html>".html_safe end end |