kaminari--kaminari/README.rdoc

172 lines
5.4 KiB
Plaintext
Raw Normal View History

2011-02-06 05:28:11 +00:00
= Kaminari
2011-02-05 13:32:10 +00:00
A Scope & Engine based, clean, powerful, customizable and sophisticated paginator for Rails 3
2011-02-05 13:32:10 +00:00
2011-02-06 05:28:11 +00:00
== Features
=== Clean
2011-02-19 12:59:27 +00:00
Does not globally pollute +Array+, +Hash+, +Object+ or <tt>AR::Base</tt>.
2011-02-06 05:28:11 +00:00
=== Easy to use
Just bundle the gem, then your models are ready to be paginated. No configuration required. Don't have to define anything in your models or helpers.
2011-02-06 05:28:11 +00:00
=== Simple scope-based API
2011-02-13 04:51:41 +00:00
Everything is method chainable with less "Hasheritis". You know, that's the Rails 3 way.
2011-02-19 12:59:27 +00:00
No special collection class or anything for the paginated values, instead using a general <tt>AR::Relation</tt> instance. So, of course you can chain any other conditions before or after the paginator scope.
2011-02-06 05:28:11 +00:00
=== Customizable engine-based I18n-aware helper
As the whole pagination helper is basically just a collection of links and non-links, Kaminari renders each of them through its own partial template inside the Engine. So, you can easily modify their behaviour, style or whatever by overriding partial templates.
2011-02-06 05:28:11 +00:00
=== ORM & template engine agnostic
2011-02-18 06:36:05 +00:00
Kaminari supports multiple ORMs (ActiveRecord, Mongoid) and multiple template engines (ERB, Haml).
=== Modern
The pagination helper outputs the HTML5 <nav> tag by default. Plus, the helper supports Rails 3 unobtrusive Ajax.
2011-02-08 02:58:41 +00:00
2011-02-06 05:28:11 +00:00
2011-02-18 06:36:05 +00:00
== Supported versions
* Ruby 1.8.7, 1.9.2, 1.9.3
2011-02-18 06:36:05 +00:00
* Rails 3.0.x, 3.1
2011-02-06 05:28:11 +00:00
2011-02-18 06:36:05 +00:00
* Haml 3
2011-02-06 05:28:11 +00:00
2011-02-18 06:36:05 +00:00
* Mongoid 2 (beta)
2011-02-06 05:28:11 +00:00
== Install
Put this line in your Gemfile:
gem 'kaminari'
Then bundle:
% bundle
== Usage
2011-02-07 02:58:53 +00:00
=== Query Basics
2011-02-19 12:59:27 +00:00
* the +:page+ scope
To fetch the 7th page of users (default +per_page+ is 25)
User.page(7)
2011-02-06 05:28:11 +00:00
2011-02-19 12:59:27 +00:00
* the +:per+ scope
To show a lot more users per each page (change the +per_page+ value)
User.page(7).per(50)
Note that the +:per+ scope is not directly defined on the models but is just a method defined on the page scope. This is absolutely reasonable because you will never actually use +per_page+ without specifying the +page+ number.
2011-02-07 02:58:53 +00:00
2011-02-19 12:59:27 +00:00
=== Configuring default +per_page+ value for each model
2011-02-11 16:20:48 +00:00
2011-02-19 12:59:27 +00:00
* +paginates_per+
You can specify default +per_page+ value per each model using the following declarative DSL.
class User < ActiveRecord::Base
paginates_per 50
end
2011-02-11 16:20:48 +00:00
2011-02-07 02:58:53 +00:00
=== Controllers
2011-02-05 13:32:10 +00:00
2011-02-19 12:59:27 +00:00
* the page parameter is in <tt>params[:page]</tt>
Typically, your controller code will look like this:
@users = User.order(:name).page params[:page]
2011-02-06 05:28:11 +00:00
2011-02-07 02:58:53 +00:00
=== Views
2011-02-09 15:29:48 +00:00
* the same old helper method
Just call the +paginate+ helper:
<%= paginate @users %>
This will render several <tt>?page=N</tt> pagination links surrounded by an HTML5 <+nav+> tag.
2011-02-06 05:28:11 +00:00
2011-02-08 02:58:41 +00:00
=== Helper Options
2011-02-06 05:28:11 +00:00
2011-02-09 15:29:48 +00:00
* specifing the "inner window" size (4 by default)
This would output something like <tt>... 5 6 7 8 9 ...</tt> when 7 is the current page.
<%= paginate @users, :window => 2 %>
2011-02-06 05:28:11 +00:00
2011-02-09 15:29:48 +00:00
* specifing the "outer window" size (1 by default)
This would output something like <tt>1 2 3 4 ...(snip)... 17 18 19 20</tt> while having 20 pages in total.
<%= paginate @users, :outer_window => 3 %>
2011-02-06 05:28:11 +00:00
2011-02-19 12:59:27 +00:00
* outer window can be separetely specified by +left+ +right+ (1 by default)
This would output something like <tt>1 ...(snip)... 18 19 20</tt> while having 20 pages in total.
<%= paginate @users, :left => 0, :right => 2 %>
2011-02-06 05:28:11 +00:00
2011-02-19 12:59:27 +00:00
* extra parameters (+:params+) for the links
This would modify each link's +url_option+. +:controller+ and +:action+ might be the keys in common.
<%= paginate @users, :params => {:controller => 'foo', :action => 'bar'}
2011-02-13 09:46:55 +00:00
2011-02-07 12:18:21 +00:00
* Ajax links (crazy simple, but works perfectly!)
This would add <tt>data-remote="true"</tt> to all the links inside.
<%= paginate @users, :remote => true %>
2011-02-07 12:18:21 +00:00
2011-02-12 21:27:42 +00:00
=== I18n and labels
2011-02-13 04:51:41 +00:00
The default labels for 'previous', '...' and 'next' are stored in the I18n yaml inside the engine, and rendered through I18n API. You can switch the label value per I18n.locale for your internationalized application.
2011-02-19 12:59:27 +00:00
Keys and the default values are the following. You can override them by adding to a YAML file in your <tt>Rails.root/config/locales</tt> directory.
2011-02-12 21:27:42 +00:00
en:
views:
pagination:
previous: "&laquo; Prev"
next: "Next &raquo;"
truncate: "..."
2011-02-07 02:58:53 +00:00
=== Customizing the pagination helper
2011-02-09 13:06:41 +00:00
Kaminari includes a handy template generator.
2011-02-06 05:28:11 +00:00
2011-02-09 15:29:48 +00:00
* to edit your paginator
Run the generator first,
2011-02-21 10:46:33 +00:00
% rails g kaminari:views default
2011-02-06 05:28:11 +00:00
then edit the partials in your app's <tt>app/views/kaminari/</tt> directory.
2011-02-07 02:58:53 +00:00
2011-02-09 15:29:48 +00:00
* for Haml users
Haml templates generator is also available by adding the <tt>-e haml</tt> option (this is automatically invoked when the default template_engine is set to Haml).
2011-02-09 13:06:41 +00:00
2011-02-21 10:46:33 +00:00
% rails g kaminari:views default -e haml
2011-02-09 13:06:41 +00:00
* themes
The generator has the ability to fetch several sample template themes from
the external repository (https://github.com/amatsuda/kaminari_themes) in
addition to the bundled "default" one, which will help you creating a nice
looking paginator.
% rails g kaminari:views THEME
To see the full list of avaliable themes, take a look at the themes repository,
or just hit the generator without specifying +THEME+ argument.
% rails g kaminari:views
2011-02-09 13:06:41 +00:00
2011-02-11 22:43:28 +00:00
== For more information
2011-02-12 21:27:42 +00:00
Check out Kaminari recipes on the GitHub Wiki for more advanced tips and techniques.
2011-02-11 22:43:28 +00:00
https://github.com/amatsuda/kaminari/wiki/Kaminari-recipes
== Questions, Feedback
2011-02-07 02:58:53 +00:00
2011-02-09 15:29:48 +00:00
Feel free to message me on Github (amatsuda) or Twitter (@a_matsuda) ☇☇☇ :)
2011-02-07 02:58:53 +00:00
2011-02-06 05:28:11 +00:00
== Contributing to Kaminari
* Fork, fix, then send me a pull request.
== Copyright
2011-02-05 13:32:10 +00:00
2011-02-06 05:28:11 +00:00
Copyright (c) 2011 Akira Matsuda. See LICENSE.txt for further details.