Module: AjaxPagination::ControllerAdditions
- Defined in:
- lib/ajax_pagination/controller_additions.rb
Overview
This module is automatically added to all controllers
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
-
#ajax_pagination_redirect ⇒ Object
This after_filter method is automatically included by AJAX Paginate, and does not need to be included manually.
-
#ajax_respond(format, options = {}) ⇒ Object
Registers an ajax response in html format when a request is made by AJAX Pagination (in which case ajax_section.nil? is false).
-
#ajax_section ⇒ Object
Returns the name of the ajax section to be responded to, if present.
-
#ajax_section?(section_id = :global) ⇒ Boolean
Tests whether an AJAX Pagination partial might be displayed in the view.
Class Method Details
.included(base) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/ajax_pagination/controller_additions.rb', line 79 def self.included(base) base.extend ClassMethods if AjaxPagination.redirect_after_filter == true base.after_filter :ajax_pagination_redirect end base.before_filter do # simply manipulating querystring will not get ajax response (in production mode) if request.xhr? || Rails.env == 'development' @_ajax_section = request.GET[:ajax_section] @_ajax_section = @_ajax_section.to_sym unless @_ajax_section.nil? params.delete(:ajax_section) if request.get? end end end |
Instance Method Details
#ajax_pagination_redirect ⇒ Object
This after_filter method is automatically included by AJAX Paginate, and does not need to be included manually. However, it can be disabled in the initializer, and if desired, enabled in specific controllers by adding this method as an after_filter.
This after_filter method will intercept any redirects for AJAX calls by AJAX Paginate, and turn it into a Status 200 OK response, with an extra Location: header.
This is used because of the transparent redirection otherwise done by browsers on receiving a 30x status code. The AJAX code cannot then detect that the request was redirected, and is therefore unable to change the url in the History object. AJAX Pagination javascript code will detect any 200 OK responses with a Location header, and treat this as a redirection.
This filter should not affect other uses, because only AJAX calls trigger this. In addition, a ?pagination= parameter is required. Therefore other AJAX libraries or usage otherwise should not be affected.
207 208 209 210 211 |
# File 'lib/ajax_pagination/controller_additions.rb', line 207 def ajax_pagination_redirect if ajax_section && response.status==302 # alter redirect response so that it can be detected by the client javascript response.status = 200 # change response to OK, location header is preserved, so AJAX can get the new page manually end end |
#ajax_respond(format, options = {}) ⇒ Object
Registers an ajax response in html format when a request is made by AJAX Pagination (in which case ajax_section.nil? is false). AJAX Pagination uses this response to render only the content which has changed. When this format is triggered, a partial is passed back, and sent to AJAX Pagination as a function argument in javascript.
Call this method in a respond_to block, in a controller action:
class CommentsController < ApplicationController
def index
@comments = Comment.all
respond_to do |format|
format.html # index.html.erb
ajax_respond(format)
end
end
end
Options:
- :
section_id
-
Changes the AJAX section name triggering this response. Triggered when ajax_section == options [:section_id]. Defaults to “global”
- :
render
-
Changes the default template/partial that is rendered by this response. The value can be any object, and is rendered directly. The render behaviour is the same as the render method in controllers. If this option is not used, then the default is a partial of the same name as :section_id, if it exists, otherwise, if it does not, the default template is rendered (ie. the :controller/:action.:format view file). By default, no layout is used to render the template/partial. It can be set by passing in a layout key.
def welcome respond_to do |format| format.html ajax_respond format, :section_id => :menu, :render => {:file => "pages/welcome"} end end
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
# File 'lib/ajax_pagination/controller_additions.rb', line 137 def ajax_respond(format, = {}) if ajax_section == ([:section_id] || 'global').to_sym render = [:render] || {} if !render.empty? view = render # render non partial elsif lookup_context.find_all(controller_path + "/_" + ajax_section.to_s).any? view = {:partial => ajax_section.to_s} # render partial of the same name as section_id else # render usual view view = {} end view = { :layout => false }.merge(view); # set default of no layout rendered format.html { render view } return true else return false end end |
#ajax_section ⇒ Object
Returns the name of the ajax section to be responded to, if present. Otherwise this is not an AJAX Pagination request (ie. this is otherwise a normal full page request). When no specific ajax section is requested, returns nil.
98 99 100 |
# File 'lib/ajax_pagination/controller_additions.rb', line 98 def ajax_section @_ajax_section end |
#ajax_section?(section_id = :global) ⇒ Boolean
Tests whether an AJAX Pagination partial might be displayed in the view. If the response is not directly controlled by AJAX Pagination, it will return true, because the partial might be displayed. The response is handled by AJAX Pagination if the format is html, and the ajax_section parameter is set. If it is set, then it will return whether ajax_section == section_id (the name of the section, which defaults to page).
In effect, this method returns (ajax_section.nil? || ajax_section == section_id.to_sym)
This method is a convenience function so that the controller does not need to perform heavy computation which might only be required if only a certain section is displayed (for an AJAX request).
For example, suppose an index page contains two ajax_section containers, one for upcoming posts, and one for published posts, then you might use:
class PostsController < ApplicationController
def index
if ajax_section? :page do
@posts = Post.published
@posts.each do |post|
post.heavycomputation
end
end
if current_user.is_admin && ajax_section? :upcomingpage do
@upcomingposts = Post.upcoming
@upcomingposts.each do |post|
post.heavycomputation
end
end
respond_to do |format|
format.html # index.html.erb
ajax_respond format, :section_id => 'page'
ajax_respond format, :section_id => 'upcomingpage'
end
end
end
The heavy computation will only be performed on posts which will be displayed when AJAX Pagination only wants a partial.
191 192 193 |
# File 'lib/ajax_pagination/controller_additions.rb', line 191 def ajax_section?(section_id = :global) (ajax_section.nil?) || (ajax_section == section_id.to_sym) end |