grapple
Customizable data grid for Rails
Features
- Modular design
- Server side rendering
- Usable out of the box
- Sorting
- Searching/Filtering
- Pagination
- AJAX
Installation
# Gemfile for Rails 3+
gem 'grapple'/* app/assets/stylesheets/application.css */
*= require grappleDependencies
- Rails 3+
Optional Dependencies:
- will_paginate - for pagination support
- jQuery - for AJAX support
- history.js - for back button support when using the AJAX data table
Table Builders
HtmlTableBuilder - A basic HTML table builder
DataGridBuilder (default) - An HTML table builder with support for paging, filtering, sorting, and actions.
AjaxDataGridBuilder - DataGridBuilder that uses AJAX to retrieve results when sorting/filtering the table.
In an initializer set the default builder:
Grapple::Helpers::TableHelper.builder = Grapple::AjaxDataGridBuilderBasic Usage (DataGridBuilder)
app/controllers/posts_controller.rb
class PostsController < ApplicationController
def index
@posts = Post.all
end
endapp/views/posts/index.html.erb
<%
columns = [
{ label: 'Name' },
{ label: 'Title' },
{ label: 'Content' },
{ label: '' },
{ label: '' },
{ label: '' }
]
actions = [
{ label: 'New Post', url: new_posts_path }
]
%>
<%= table_for(columns, @posts) do |t| %>
<%= t.header do %>
<%= t.toolbar do %>
<%= t.actions actions %>
<% end %>
<%= t.column_headings %>
<% end %>
<%= t.body do |item| %>
<td><%= post.name %></td>
<td><%= post.title %></td>
<td><%= post.content %></td>
<td><%= link_to 'Show', post %></td>
<td><%= link_to 'Edit', edit_post_path(post) %></td>
<td><%= link_to 'Destroy', post, confirm: 'Are you sure?', method: :delete %></td>
<% end %>
<% end %>Sorting
Any column that includes a sort key will be rendered with a link that adds sorting parameters to the request.
The default sort parameters are sort for the field to sort and dir for the direction to sort the results (ASC or DESC).
app/views/posts/index.html.erb
<%
columns = [
{ label: "Name", sort: "name" },
{ label: "Description", sort: "description" },
{ label: "Created At", sort: "created_at" }
]
%>
<%= table_for(columns, @posts) do |t| %>
<%= t.header %>
<% end %>app/controllers/posts_controller.rb
def index
sort = (params[:sort] || "name") + " " + (params[:dir] || "asc")
@posts = Post.all.order(sort)
endPagination (requires will_paginate)
app/controllers/posts_controller.rb
def index
@posts = Post.paginate(page: params[:page] || 1, per_page: 10)
endapp/views/posts/index.html.erb
<%= table_for(columns, @posts) do |t| %>
<%= t.header %>
<%= t.footer do %>
<%= t.pagination %>
<% end %>
<% end %>Filtering/Searching
TODO
Actions
The Actions component can be used to generate buttons/links for actions related to the table. This can be used to provide links to export the data in the table or create new objects.
<%= table_for(columns, @posts) do |t| %>
<%= t.header do %>
<%= t.toolbar do %>
<%= t.actions [
{ label: :new_post, url: new_posts_path },
{ label: :export_posts, url: export_posts_path }
] %>
<% end %>
<%= t.column_headings %>
<% end %>
<% end %>AJAX
The AjaxDataGridBuilder generates tables that can update their content using AJAX rather than re-loading the page. jQuery is required.
// app/assets/javascripts/application.js
//= require grapple
//= require grapple-jquery# app/controllers/posts_controller.rb
class PostsController < ApplicationController
def index
@posts = table_results
end
# Method called by AJAX requests - renders the table without a layout
def table
@posts = table_results
render partial: 'table'
end
protected
def table_results
Post.paginate(page: params[:page] || 1, per_page: 10)
end
endCreate a container around the table that can be updated by the JavaScript
<%# app/views/posts/index.html.erb %>
<%= render partial: 'table' %>Render the table using table_for in app/views/posts/_table.html.erb
History w/AJAX (back button)
Uses the native window.history API by default. If History.js is present it will use that instead for compatibility with older browsers (https://github.com/browserstate/history.js/).
// app/assets/javascripts/application.js
//= require jquery-history
//= require grapple
//= require grapple-history
//= require grapple-jqueryCustomizing
TODO