eimermusic / hey_sorty

Sorting ActiveRecords like a champ

Home Page:http://purifyapp.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hey Sorty

Developed for use on Purify: Awesome Bug & Issue Tracking, Hey Sorty gives you simple column sorting for your Rails apps.

Installation

Install as a plugin:

script/plugin install git@github.com:purify/hey_sorty.git

Usage

Add sorty to your model:

class MyModel < ActiveRecord::Base
  sortable
end

You can optionally specify the default column to sort on, and the default order in which to sort (defaults to id asc):

class MyModel < ActiveRecord::Base
  sortable :updated_at, :desc
end

Next, add sorty to your controller:

class MyModelController < ApplicationController
  def index
    @my_models = MyModel.sorty(params).paginate(:per_page => 20, :page => params[:page])
  end
end

Finally, add the sortable links to your view:

<table>
  <thead>
    <tr>
      <th class="name"><%= sorty(:name, :label => 'Full Name') %></th>
      <th class="created_at"><%= sorty(:created_at, :label => 'Date') %></th>
      <th class="description"><%= sorty(:description) %></th>
    </tr>
  </thead>
  <tbody>
    <%= render @my_models %>
  </tbody>
</table>
<%= will_paginate @my_models %>

Contributors

License

License

(The MIT License)

Copyright © 2009-2010

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Sorting ActiveRecords like a champ

http://purifyapp.com

License:MIT License


Languages

Language:Ruby 100.0%