Sha256: 0d627c6abfd86142a78e8a11e2e6e4ba515e76e2dd00008e54b91ac55ce6c915

Contents?: true

Size: 1.92 KB

Versions: 11

Compression:

Stored size: 1.92 KB

Contents

module ActiveScaffold
  # Module containing the methods useful for child IFRAME to parent window communication
  module RespondsToParent
    # 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.
    def responds_to_parent(&block)
      yield

      if performed?
        # Either pull out a redirect or the request body
        script =  if response.headers['Location']
                    #TODO: erase_redirect_results is missing in rails 3.0
                    "document.location.href = '#{self.class.helpers.escape_javascript location.to_s}'"
                  else
                    response.body || ''
                  end

        # 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
        script = "<html><body><script type='text/javascript' charset='utf-8'>
          var loc = document.location;
          with(window.parent) { setTimeout(function() { window.eval('#{self.class.helpers.escape_javascript script}'); window.loc && loc.replace('about:blank'); }, 1) }
        </script></body></html>"

        # We're returning HTML instead of JS or XML now
        response.headers['Content-Type'] = 'text/html; charset=UTF-8'

        # Clear out the previous render to prevent double render and then render
        if respond_to?(:erase_results, true)
          erase_results
        else
          instance_variable_set(:@_response_body, nil)
        end

        render :text => script
      end
    end
    alias respond_to_parent responds_to_parent
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
active_scaffold-3.4.10 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.9 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.8 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.7 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.5 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.4 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.3 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.2 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.1 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.0.1 lib/active_scaffold/responds_to_parent.rb
active_scaffold-3.4.0 lib/active_scaffold/responds_to_parent.rb