classic_pagination is not my friend
Dr. B. | Friday, October 19, 2007
I recently upgraded a nearly completed Ruby on Rails project to version 1.2.4, then to version 1.2.5. I worked through the deprecation warnings and everything seemed good to go.
Then, I ran into a snag with pagination -- something I didn't have covered in my functional tests. Because I'm caching this site, I have routes that include the :page property for the paginator in the URL. Otherwise, pages 2-n don't get cached.
After installing the classic_pagination plugin, I'd get an error when viewing pages with pagination code like this in the view:
This is the standard, recommended method for creating the Next and Previous links. The error said:
The confusing part was that when I removed the :page from the route and added ?page=2 back as a query string parameter, the error went away. In theory, the :page should be the :page whether it is on the query string or embedded in the URL, right?
Well, long story short, here's the fix. Unfortunately, I can't explain exactly why this is necessary, and don't have the time now to dig into the innards of classic_pagination and the supporting Rails infrastructure to find out. I just hope this post helps somebody.
Oh, the fix? Add the "number" method to the previous or next Page object reference, like so:
I'll probably consider classic_pagination my friend again once I get over being grumpy about this ... or, I may consider one of the other pagination contenders for a future application.
Doug Smith, Senior Developer, Barefoot
Then, I ran into a snag with pagination -- something I didn't have covered in my functional tests. Because I'm caching this site, I have routes that include the :page property for the paginator in the URL. Otherwise, pages 2-n don't get cached.
After installing the classic_pagination plugin, I'd get an error when viewing pages with pagination code like this in the view:
<%= link_to('« Previous', :page => @article_pages.current.previous) if @article_pages.current.previous %>
<%= link_to('Next »', :page => @article_pages.current.next) if @article_pages.current.next %>
This is the standard, recommended method for creating the Next and Previous links. The error said:
undefined method `paginator' for "2":String
. The top-most offending line of the stack trace was: vendor/plugins/classic_pagination/lib/pagination.rb:307:in `=='
.The confusing part was that when I removed the :page from the route and added ?page=2 back as a query string parameter, the error went away. In theory, the :page should be the :page whether it is on the query string or embedded in the URL, right?
Well, long story short, here's the fix. Unfortunately, I can't explain exactly why this is necessary, and don't have the time now to dig into the innards of classic_pagination and the supporting Rails infrastructure to find out. I just hope this post helps somebody.
Oh, the fix? Add the "number" method to the previous or next Page object reference, like so:
<%= link_to('« Previous', :page => @article_pages.current.previous.number) if @article_pages.current.previous %>
<%= link_to('Next »', :page => @article_pages.current.next.number) if @article_pages.current.next %>
I'll probably consider classic_pagination my friend again once I get over being grumpy about this ... or, I may consider one of the other pagination contenders for a future application.
Doug Smith, Senior Developer, Barefoot
2 comments
This fixed me right up (though I think the .number belongs before the "if")...
I thought I was going to have to set Typo on fire. Thanks!
Cool, thanks! You're right, I had the last .number in the wrong place. It's fixed now.
Post a Comment
« Home