Giter Site home page Giter Site logo

bray / will_paginate Goto Github PK

View Code? Open in Web Editor NEW

This project forked from mislav/will_paginate

1.0 2.0 0.0 873 KB

Adaptive pagination plugin for web frameworks and other applications

Home Page: http://github.com/mislav/will_paginate/wikis

License: MIT License

Ruby 100.00%

will_paginate's Introduction

The will_paginate Ruby library

Pagination is just limiting the number of records loaded and displayed. Why should you let it get in your way while developing?

This is how you paginate on an ActiveRecord model:

Post.paginate :page => 1, :order => 'created_at DESC'

Most of the time it’s as simple as replacing “find” with “paginate” and specifying the page you want.

Some resources to get you started:

I’m not using Rails; can I still use will_paginate?

Absolutely – although will_paginate started off as a Rails plugin, now it is a completely framework-agnostic library with support for Rails and Merb built-in. The core library doesn’t have any dependences and you can safely use it in any Ruby code.

When will_paginate is loaded in an environment where ActiveRecord and ActionView are present, it automatically hooks into these frameworks to provide easy pagination on your models and in your views. The same mechanism works for Merb applications, too. But, if no known framework is present then you have absolute control over what parts of will_paginate do you want to load and where you want them mixed in.

Installation

In your Gemfile (if using Bundler):

gem 'will_paginate', '~> 3.0.beta'

There are extensive {installation instructions}[http://github.com/mislav/will_paginate/wikis/installation] on {the wiki}[http://github.com/mislav/will_paginate/wikis].

Example usage

Typical usage involves a paginating find in the controller:

@posts = Post.paginate :page => params[:page], :order => 'updated_at DESC'

It’s true: paginate works just like find – it just doesn’t fetch all the records. Don’t forget to tell it which page you want, or it will complain! Read more in WillPaginate::Finders.

Render the posts in your view like you would normally do, and when you need to render pagination, just stick this in:

<%= will_paginate @posts %>

You’re done. Read more in WillPaginate::ViewHelpers::Base.

How does it know how much items to fetch per page? It asks your model by calling its per_page class method. You can define it like this:

class Post < ActiveRecord::Base
  self.per_page = 50
end

… or don’t worry about it at all. WillPaginate defines it to be <strong>30</strong> by default. You can always specify the count explicitly when calling paginate:

Post.paginate :page => params[:page], :per_page => 50

The paginate finder wraps the original finder and returns your result set that now has some new properties. You can use the collection as you would use any other array. WillPaginate view helpers also need that collection object to be able to render pagination:

<ol>
  <% for post in @posts -%>
    <li>Render `post` in some nice way.</li>
  <% end -%>
</ol>

<p>Now let's render us some pagination!</p>
<%= will_paginate @posts %>

Authors and credits

The original author of will_paginate was PJ Hyett, who later handed over development to Mislav Marohnić. (The library was completely rewritten since then.)

All these people helped making will_paginate what it is now with their code contributions or just simply awesome ideas:

Chris Wanstrath, Dr. Nic Williams, K. Adam Christensen, Mike Garey, Bence Golda, Matt Aimonetti, Charles Brian Quinn, Desi McAdam, James Coglan, Matijs van Zuijlen, Maria, Brendan Ribera, Todd Willey, Bryan Helmkamp, Jan Berkel, Lourens Naudé, Rick Olson, Russell Norris, Piotr Usewicz, Chris Eppstein, Brandon Arbini, Denis Barushev, Paul Barry, Ben Pickles, Ken Collins, Lida Tang and Pieter Noordhuis.

Usable pagination in the UI

There are example CSS styles to get you started on the will_paginate project page.

More reading about pagination as design pattern:

Want to discuss, request features, ask questions? Join the Google group.

will_paginate's People

Contributors

benpickles avatar bray avatar chriseppstein avatar denis avatar dhh avatar flyingmachine avatar kamal avatar lifo avatar mattetti avatar matthuhiggins avatar metaskills avatar mislav avatar pietern avatar pjb3 avatar pusewicz avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.