I've been trying to learn Ruby & RoR for a while now but I'm stumped on a problem with maintaining sort on pagination links. I've got the MVC architecture part down since I used similar architecture in PHP applications. I've inherited an application from another group of developers that contains an error I need to correct.
On a page listing customers for a given user there is pagination to split the list into pages of 20. Each column can be used to sort the table of data. Once the page is sorted by an alternate column, clicking one of the pagination links will go to that page but revert the sort order to the default order.
So, the general idea is that i need to maintain the GET parameters of the current page (specifying the sort order) in the pagination links.
Some Sample URLs:
- Default: http://website.com/users/34/customers
- Sorted By Name: http://website.com/users/34/customers?customer%5Bsearch%5D%5Border_by%5D=first_name%2C+last_name&customer%5Bsearch%5D%5Border_direction%5D=ASC&customer%5Bsearch%5D%5Bname%5D=&customer%5Bsearch%5D%5Blocation_id%5D=&commit=Search
- Click Page 2: website.com/users/34/customers?page=2
Here are the code bits I think might be relevant.
Controller: controllers/customer_controller.rb
def index
@customer = Customer.new(params[:customer])
@customer.user_id = (current_user.sales_director? || current_user.admin?) ? params[:user_id] : current_user.id
@customer_pages, @customers = paginate :customers,
:joins => "INNER JOIN sources ON customers.source_id=sources.id INNER JOIN locations ON customers.location_id=locations.id",
:select => "customers.*, sources.name AS source_name, locations.name AS location_name",
:conditions => @customer.search_conditions,
:per_page => 20,
:order => @customer.search_order
end
View: views/customers/index.haml
%h1=User.find(params[:user_id]).full_name + "'s Customers"
.action_links
- if !current_user.viewer?
= link_to '+ Add New Customer', new_customer_path
|
= link_to 'View Follow Up Reminders', reminders_user_path(@user)
=render :partial => 'search_form'
%br/
- if @customer_pages.page_count > 1
.pagination_links
Go to page:
= link_to '<', pagination_prev_link if pagination_prev_link
= pagination_links @customer_pages, :window_size => 5, :params => flatten_hash(params.dup.delete(:page))
= link_to '>', pagination_next_link(@customer_pages.page_count) if pagination_next_link(@customer_pages.page_count)
- if @customers.size > 0
= render :partial => 'search_results'
- else
%p.no_results No customers matching your search criteria were found. Please try searching again.
- if @customer_pages.page_count > 1
.pagination_links
Go to page:
= link_to '<', pagination_prev_link if pagination_prev_link
= pagination_links @customer_pages, :window_size => 5, :params => flatten_hash(params.dup.delete(:page))
= link_to '>', pagination_next_link(@customer_pages.page_count) if pagination_next_link(@customer_pages.page_count)
I'd really appreciate any assistance I could get on how I could modify this to make this happen. If any other code samples is necessary, just let me know.
Thanks!
EDIT: HERE IS THE CODE FOR THE PREVIOUS AND NEXT PAGE LINKS (THESE WORK FINE). HOPEFULLY THERE IS A WAY THAT CAN BE HELPFUL IN FINDING A WAY TO GET THE # LINKS TO WORK AS WELL.
#module ApplicationHelper
# Took these next 2 methods from a blog post I found here: http://marklunds.com/articles/one/314
# to help deal with a nested hash in params
def flatten_hash(hash = params, ancestor_names = [])
return if !hash
flat_hash = {}
hash.each do |k, v|
names = Array.new(ancestor_names)
names << k
if v.is_a?(Hash)
flat_hash.merge!(flatten_hash(v, names))
else
key = flat_hash_key(names)
key += "[]" if v.is_a?(Array)
flat_hash[key] = v
end
end
flat_hash
end
def flat_hash_key(names)
names = Array.new(names)
name = names.shift.to_s.dup
names.each do |n|
name << "[#{n}]"
end
name
end
# pagination link helpers (because default one is kinda broken)
def pagination_prev_link
prev_link = params.clone
if params[:page].to_i - 1 > 0
prev_link[:page] = prev_link[:page].to_i - 1
flatten_hash(prev_link)
else
false
end
end
def pagination_next_link(max)
next_link = params.clone
if params[:page].to_i < max
next_link[:page] = 1 if next_link[:page].to_i == 0
next_link[:page] = next_link[:page].to_i + 1
flatten_hash(next_link)
else
false
end
end
will_paginatecan take arguments from a form with hidden fields (get request though) – apneadiving Aug 7 '11 at 9:12pagination_linkshelper. But, since this code has already proven itself to be hard to debug & maintain, I sincerely suggest you throw it all away after you fixed it and switch to will_paginate. – mislav Aug 7 '11 at 12:41