Trk Datatables
This is a source for trk_datatables gem that is
used with trk_datatables npm package to render tables.
Instead of using Rails scaffold generator you can use advanced Datatables plug-in for jQuery library.
After installation
you can use one line command @datatable.render_html
to generate index page
that supports: global search, filtering and sorting, first page is prerendered
(so non-js crawlers can see it), map and other interesting features.
So instead of basic Rails scaffold
you can get something like
Currently supports:
Table of Contents
Installation
Let's first add Boostrap js package and https://www.npmjs.com/package/trk_datatables
yarn add trk_datatables bootstrap jquery popper.js
# app/javascript/packs/application.js
// node_modules
import 'bootstrap'
// our stuff
import 'stylesheet/application'
// attach jQuery so it is available for javascript included with asset pipeline
window.$ = window.jQuery = jQuery;
const trkDatatables = require('trk_datatables')
document.addEventListener('turbolinks:load', () => {
// this will initialise all data-datatables elements
trkDatatables.initialise()
})
# app/javascript/stylesheet/application.css
/* here we include other packages so postcss-import plugin will load css file from style attribute from package.json */
@import 'bootstrap'
# config/webpack/environment.js
const { environment } = require('@rails/webpacker')
const webpack = require('webpack');
environment.plugins.append('Provide', new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery',
Popper: ['popper.js', 'default']
}));
module.exports = environment
# app/views/layouts/application.html.erb
<%= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
<%# we need stylesheet for production server, locally it could work without stylesheet_pack_tag even in production mode %>
<%= stylesheet_pack_tag 'application', 'data-turbolinks-track': 'reload' %>
<%# we use jQuery from wepbacker so asset pipeline should be included later if you use asset pipeline %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
Than add a gem and sample PostsDatatable
# Gemfile
gem 'trk_datatables'
# in console you can use rails generator to generate app/datatables/xxx_datatable.rb
bundle
rails g trk_datatables post
vi app/datatables/posts_datatable.rb
# config/routes.rb
resources :posts do
collection do
post :search
end
end
# app/controllers/posts_controller.rb
def index
@datatable = PostsDatatable.new view_context
end
def search
render json: PostsDatatable.new(view_context)
end
# app/views/posts/index.html.erb
<h1>Posts</h1>
<%= @datatable.render_html search_posts_path(format: :json) %>
Usage example in Ruby on Rails
For a table you need to define columns
and rows
(well that is obvious 😌).
In datatable class you also need to define all_items
method which will be
used to populate rows
with paginated, sorted and filtered items (we will call
them filtered
)
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def columns
{
'posts.title': {},
'users.email': {},
}
end
def all_items
Post.left_joins(:user)
end
def rows(filtered) # rubocop:disable Metrics/MethodLength
filtered.map do |post|
[
@view.link_to(post.title, post),
post.user&.email,
]
end
end
end
In controller you need to initialize with view_context
# app/controllers/posts_controller.rb
class PostsController < ApplicationController
def index
@datatable = PostsDatatable.new view_context
end
def search
render json: PostsDatatable.new(view_context)
end
end
In controller add a route to :search
# config/routes.rb
Rails.application.routes.draw do
resources :posts do
collection do
post :search
end
end
end
And finally in a view, use render_html
to have first page show up prerendered
# app/views/posts/index.html
<h1>Posts</h1>
<%= @datatable.render_html search_posts_path(format: :json) %>
Configuration
Datatables will search all columns that you defined as keys in columns
using a
ILIKE
(ie .matches
in Arel ActiveRecord).
In datatables there are two types of search: global (search all columns) and
column search (search is done for specific columns).
Global search
You can add more columns to global search by overriding global_search_columns
method.
class PostsDatatable < TrkDatatables::ActiveRecord
def global_search_columns
# in addition to columns those fields will be used to match global search
# instead Post.all you should use Post.joins(:user) or
# Post.left_joins(:user) if user is optional. For has_many relations you
# need to join them since you will get multiple table rows
%w[posts.body users.name]
end
end
Column 'ILIKE' search with text input
All columns are by default casted to :string
(you can manually cast with
column_type_in_db: :string
) and ILIKE
is perfomed.
If you do not need any specific column configuration,
for example custom title
, than instead of defining columns as key/value
pairs, you can define them in one line as array of column_key.
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def columns
# instead of
# {
# id: {},
# title: {},
# body: {},
# }.each_with_object({}) { |(key, value), obj| obj["posts.#{key}"] = value }
# you can use one liner
# %w[posts.id posts.title posts.body]
# or even shorter using map
%i[id title body].map { |col| "posts.#{col}" }
end
end
For specific columns you can use following keys
title: 'My Title'
set up column headersearch: false
disable searching for this columnorder: false
disable ordering for this columnselect_options: Post.statuses
generate select box instead of text inputpredefined_ranges: {}
for datetime fiels add ranges to pick up fromhide: true
hide column with display none, for example { hide: @view.params[:user_id].present? }
, note that you should send that column data
anyway, just it will not be visibleclass_name: 'Admin::User'
use different class name than
table_name.classify
(in this case of admin_users
will be AdminUser
)column_type_in_db
one of the: :string
, :integer
, :date
, :datetime
,
:boolean
Column 'BETWEEN' search with js daterangepicker
For column search when search string contains BETWEEN_SEPARATOR (-
) and
column_type_in_db as one of the: :date
, :datetime
, :integer
and
:float
than BETWEEN
is perfomed.
For columns :date
there will be data-datatable-range='true'
attribute so data range picker will be
automatically loaded. For :datetime
you can enable time picker in addition to
date.
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def columns
{
'posts.created_at': { time_picker: true },
}
end
end
By default, predefined ranges are enabled. You can find source for
predefined_date_ranges
and predefined_datetime_ranges
in
base.rb
You can overwrite them in BaseTrkDatable or your trk datatable class.
You can disable or enable for specific columns like in this example:
class PostsDatatable < TrkDatatables::ActiveRecord
def predefined_datetime_ranges
{
'Today': Time.zone.now.beginning_of_day..Time.zone.now.end_of_day,
'Yesterday': [Time.zone.now.beginning_of_day - 1.day, Time.zone.now.end_of_day - 1.day],
'This Month': Time.zone.today.beginning_of_month...Time.zone.now.end_of_day,
'Last Month': Time.zone.today.prev_month.beginning_of_month...Time.zone.today.prev_month.end_of_month.end_of_day,
'This Year': Time.zone.today.beginning_of_year...Time.zone.today.end_of_day,
}.transform_values do |range|
# datepicker expects format 2020-11-29 11:59:59
range.first.strftime('%F %T')..range.last.strftime('%F %T')
end
end
def columns
{
'posts.created_at': {}, # this column will have predefined_datetime_ranges
'posts.published_on': { predefined_ranges: false },
'posts.updated_at': { predefined_ranges: { 'Today': Time.zone.now.beginning_of_day...Time.zone.now.end_of_day } },
}
end
end
We use
ActiveSupport::TimeZone
so if you use different than UTC you need to set Time.zone =
in your app example values. Whenever Time.parse is used (and we use Time.zone.parse
for params) it needs correct zone (in Rails you can set timezone in config.time_zone
or use browser timezone rails gem).
Column 'IN' search with select tag
You can use column_option select_options: [['name1', 'value1']]
so select box
will be loaded and match if col IN (value1|value2)
.
def columns
{
'posts.title': {},
'posts.status': { select_options: Post.statuses },
}
end
# in view
link_to 'Active', search_posts_path(PostsDatatable.param_set('posts.status',
Post.statues.values_at(:published, :promoted)))
Boolean column with checkbox
For column_type_in_db :boolean
it will generate checkbox and use
http://vanderlee.github.io/tristate/ so you can filter for true
, false
or
any
(in this case we ignore this column in filtering)
Action and non database columns
You can use one column for actions (so it is not related to any db column) just
use empty column_key
def columns
{
'posts.title': {},
'': { title: "<a href='#'>Check all</a>" },
}
end
def rows(filtered)
filtered.each do |post|
actions = @view.link_to('View', post)
[
post.title,
actions,
]
end
end
If you have more columns that are not actually columns in database (for example
links or Ruby calculated in ruby values) than you can not use empty column_key
since there could be only one (keys in the hash should be unique). When you
disable order
and search
than you can use any column name since that column
will not be used in queries. For example column key posts.body_size
is not in
database nor in Ruby code.
def columns
{
'posts.id': {},
'posts.body_size': { search: false, order: false},
}
end
def rows(filtered)
filtered.each do |post|
[
post.id,
post.body.size,
]
end
end
You can access filtered items for example
def totals
filter_by_columns all_items
filter_by_search_all filter_by_columns all_items # this is actually filtered_items
order_and_paginate_items filter_by_search_all filter_by_columns all_items # this is ordered_paginated_filtered_items
end
Values calculated in database
There are three types of calculated values (new custom fields that are
generated based on other columns):
- simple calculations like
SELECT *, quantity * price as full_price
- subqueries like
SELECT *, (SELECT COUNT(*) FROM posts WHERE users.id = posts.user_id) AS posts_count
- aggregate functions in joins/group_by
SELECT users.*, COUNT(posts.id) AS posts_count FROM "users" LEFT OUTER JOIN "posts" ON "posts"."user_id" = "users"."id" GROUP BY users.id
Simple calculations and subqueries works fine, you can search and order by them.
Note that when you use join with other table, than you should group by all
columns that you have used as columns which can be ordered by, for example
# app/datatables/member_profiles_datatable.rb
def columns
{
'member_profiles.full_name': {},
'users.email': {},
'users.current_sign_in_at': {},
}
end
def all_items
MemberProfile
.joins(:user)
.group("member_profiles.id")
.group("users.email")
.group("users.current_sign_in_at")
end
otherwise the error like
PG::GroupingError: ERROR: column "users.current_sign_in_at" must appear in the GROUP BY clause or be used in an aggregate function
You should test by searching and selecting each column as sortable column.
# test/controllers/admin/member_profiles_controller_test.rb
test "#search when order by is by each defined column" do
columns = MemberProfilesDatatable.new(OpenStruct.new(params: {})).columns
columns.each_with_index do |_column_key_option, index|
post search_superadmin_member_profiles_path(search: { value: "foo" }, order: { "0": { column: index, dir: "asc" } })
assert_response :success
end
end
Since in SQL you can not use aggregate functions in WHERE (we should repeat
calculation and subqueries), currently TrkDatatables does not support using
aggregate functions since it requires implementation of HAVING
so when you use
aggregate functions you need to disable search and order for those fields with
aggregate functions 'users.posts_count': { search: false, order: false }
).
You can use concatenation aggregate function: in postgres
STRING_AGG(comments.body, ' ') comments_body
, in mysql GROUP_CONCAT
so in
this case we search on real columns. For example let's we have
Post
.select(%(posts.*, GROUP_CONCAT(comments.body) AS comments_body))
.left_outer_joins(:comments)
.group('posts.id')
and that we have a row postName, comment1, comment2
than when we searh for
comment2
we will get a row postName, comment2
.
Simple calculations and subqueries works fine, just you have to use public
method to define calculation (that method is also used in filtering). Name of
method is the same as column name title_and_body
or comments_count
. For
table name you should use one of:
:string_calculated_in_db
, :integer_calculated_in_db
,
:date_calculated_in_db
, :datetime_calculated_in_db
or
:boolean_calculated_in_db
.
There is an issue in calling all.count
when you are using subquery, or
selecting two columns User.select(:id, :email).count
, or using star in string
User.select('users.*').count
(although User.select(Arel.star).count
works),
using AS User.select('users.id AS i').count
(here arel does not help, still
raise exception User.select(User.arel_table[:email].as('imejl')).count
).
We need to patch ActiveRecord to define returns_count_sum
:
# config/initializers/active_record_group_count.rb
# When you are using subquery or joins/group_by than all.count does not work
# so we need to wrap sql in returns_count_sum
# all.returns_count_sum.count # => 123
# https://stackoverflow.com/a/21031792/287166
# https://github.com/mrbrdo/active_record_group_count/blob/master/lib/active_record_group_count/scope.rb
module ActiveRecordGroupCount
module Scope
extend ActiveSupport::Concern
module ExtensionMethods
def count(*_args)
scope = except(:select).select('1')
scope_sql = if scope.klass.connection.respond_to?(:unprepared_statement)
scope.klass.connection.unprepared_statement { scope.to_sql }
else
scope.to_sql
end
query = "SELECT count(*) AS count_all FROM (#{scope_sql}) x"
first_result = ActiveRecord::Base.connection.execute(query).first
if first_result.is_a? Array
first_result.first
else
first_result['count_all']
end
end
end
module ClassMethods
def returns_count_sum
all.extending(ExtensionMethods)
end
end
end
end
# https://github.com/mrbrdo/active_record_group_count/blob/master/lib/active_record_group_count/railtie.rb
ActiveSupport.on_load :active_record do
include ActiveRecordGroupCount::Scope
end
So now we can use all_items.returns_count_sum.count
. Here is example of simple
calulation and subquery
class MostLikedPostsDatatable < TrkDatatables::ActiveRecord
def columns
{
'posts.id': {},
'string_calculated_in_db.title_and_body': {},
'integer_calculated_in_db.comments_count': {},
}
end
def all_items
Post.select(%(
posts.*,
#{title_and_body} AS title_and_body,
#{comments_count} AS comments_count
))
end
# This is used for filtering so you can move this to main query if
# you have { search: false }
def title_and_body
"concat(posts.title, ' ', posts.body)"
end
# This is used for filtering so you can move this to main query if
# you have { search: false }
def comments_count
<<~SQL
(
SELECT COUNT(*) FROM comments
WHERE comments.post_id = posts.id
)
SQL
end
def all_items_count
all_items.returns_count_sum.count
end
def filtered_items_count
filtered_items.returns_count_sum.count
end
def rows(filtered)
# you can use @view.link_to and other helpers
filtered.map do |post|
[
@view.link_to(post.id, post),
post.title_and_body,
post.comments_count,
]
end
end
# You can use this in config/initializers/trk_datatables.rb
# class TrkDatatables::ActiveRecord; def default_order;
# or put in specific datatable class like here
def default_order
[[columns.size - 1, :desc]]
end
end
Table less models
You can use raw sql to fetch the data and use it as a model.
Here is an example when there is no relations to other models
# app/models/table_less.rb
class TableLess < ApplicationRecord
self.abstract_class = true
def self.load_schema!
@columns_hash ||= {}
# From active_record/attributes.rb
attributes_to_define_after_schema_loads.each do |name, (type, options)|
type = ActiveRecord::Type.lookup(type, **options.except(:default)) if type.is_a?(Symbol)
define_attribute(name, type, **options.slice(:default))
# Improve Model#inspect output
@columns_hash[name.to_s] = ActiveRecord::ConnectionAdapters::Column.new(name.to_s, options[:default])
end
end
end
# app/models/translation.rb
class Translation < TableLess
self.table_name = :translations
attribute :translateable_type, :string, default: nil
attribute :translateable_id, :string, default: nil
attribute :column_name, :string, default: nil
attribute :column_value, :string, default: nil
belongs_to :translateable, polymorphic: true
end
# app/datatables/translations_datatable.rb
# rubocop:disable Layout/LineLength
class TranslationsDatatable < BaseDatatable
def columns
{
'translations.translateable_id': {},
'translations.translateable_type': {hide: true},
'translations.column_name': {},
'translations.column_value': {},
'': {},
}
end
def all_items
sql = <<~SQL.squish
(
(SELECT 'Activity' AS translateable_type, id AS translateable_id, 'name' AS column_name, name AS column_value FROM activities)
UNION
(SELECT 'Activity' AS translateable_type, id AS translateable_id, 'description' AS column_name, description AS column_value FROM activities)
) as translations
SQL
Translation.from([Arel.sql(sql)])
end
def rows(filtered)
filtered.map do |translation|
edit_link = @view.button_tag_open_modal(
@view.edit_translation_path(translation.translateable_id, translateable_type: translation.translateable_type, column_name: translation.column_name), title: @view.t_crud('edit', Translation)
)
[
@view.link_to(translation.translateable, translation.translateable),
translation.translateable_type,
translation.column_name,
translation.column_value,
edit_link,
]
end
end
end
# rubocop:enable Layout/LineLength
For column title we use table_class.human_attribute_name column_name
. When
calculated_ columns is used than it can not find translation so better is to:
'string_calculated_in_db.column_value_translated': {search: false, title: @view.t('activerecord.attributes.translation.column_value_translated')},
Note that when you have two associations to the same class, for example
Interest
has :from_member_profile
and :to_member_profile
you can use
search for the first column, but for the second you should use
string_calculated_in_db
and inside method use table name that is generated in
joins like to_member_profiles_interests
(trk_datatable can not determine which
class is this, in order to find its column)
# app/models/interest.rb
class Interest < ApplicationRecord
belongs_to :from_member_profile, class_name: 'MemberProfile'
belongs_to :to_member_profile, class_name: 'MemberProfile'
end
# app/datatables/interests_datatable.rb
class InterestsDatatable < TrkDatatables::ActiveRecord
def columns
{
'member_profiles.full_name': {},
'string_calculated_in_db.to_member_profiles_interests_full_name': {},
# if we want to search by this column than we can not use
# "to_member_profiles_interests.full_name": {},
# since we can not find that class and its arel_table
}
end
def to_member_profiles_interests_full_name
"to_member_profiles_interests.full_name"
end
def all_items
Interest
.joins(:from_member_profile) # this will be "member_profiles" table in sql
.joins(:to_member_profile) # this will be "to_member_profiles_interests"
end
end
Default order and page length
You can override default order (index and direction) and default page length so
if user did not request some order or page length (and if it is not found in
save preferences) and this default values will be used
# app/datatables/posts_datatable.rb
class PostsDatatable
# when we show invoice_no on first column, and that is reset every year
# on first april, than it is better is to use date column ordering
# column starts from zero 0, 1, 2, 3
def default_order
[[columns.size - 1, :desc]]
end
def default_page_length
20
end
end
Render html with additional css class and different DOM
To add additional styling to your datatable you can use :class
option when you
are calling @datatable.render_html url, options
for example
<%= @datatable.render_html search_posts_path(format: :json), class: 'table-hover' %>
Default DOM is
<"trk-global-search-wrapper"f>rtp<"trk-move-up"il>
which includes global
filtering, processing loader, table search, pagination, table
information and length changing control. To override you can use
<%= @datatable.render_html search_posts_path(format: :json), 'data-datatable-dom': 'rt' %>
Params
To set parameters that you can use for links to set column search value, use
this PostsDatatable.param_set 'users.email', 'my@email.com'
. For between
search you can use range Time.zone.today..(Time.zone.today + 1.year)
and for
in multiple values use array [Post.statuses[:draft]]
. Note that in Rails
Time.zone.now.to_s
usually returns seconds ('23:59:59') but if you change
default format like in config/initializers/time_formats.rb
with
Time::DATE_FORMATS[:default] = '%d-%b-%Y %I:%M %p'
than range
Time.zone.now.at_beginning_of_day..Time.zone.now.at_end_of_day
will not
include those at end of day since param will not include seconds ('23:59') so in
this case you can use range for strings
Time.zone.now.at_beginning_of_day.to_s..Time.zone.now.at_end_of_day.to_s(:with_seconds)
and config/initializers/time_formats.rb Time::DATE_FORMATS[:with_seconds] = '%d-%b-%Y %I:%M:%S %p'
(or use date Time.zone.today..Time.zone.today
but that will not populate
datetime fields in dateRangePicker correctly)
<%= link_to 'Active posts for my@email.com', \
posts_path(
PostsDatatable.param_set('users.email', 'my@email.com')
.deep_merge(PostsDatatable.param_set('posts.published_on', Date.parse('2019-10-20')..Date.parse('2019-10-22')))
.deep_merge(PostsDatatable.param_set('posts.status', Post.statuses.values_at(:published, :promoted))
.deep_merge(user_id: 1)
)
%>
This will fill proper column search values so you do not need to do it manually
(post_path(:columns=>{"3"=>{:search=>{:value=>"my@email.com"}}, "2"=>{:search=>{:value=>"1|2"}}}, :user_id=>1)
)
Please note that user_id is not inside datatable params so it will not be used
for next search params (all other search params are used with Datatables and
will remain on next search) so you need to manually add that param
<%= @datatable.render_html search_posts_path(user_id: params[:user_id], format: :json) %>
You can use generic name params[:non_table_filter]
and split with colon
user_id:123
but that is not needed.
For form fields you can use similar helper that will return name which points to
specific column, for example:
PostsDatatable.form_field_name('users.email'`) # => 'columns[3][search][value]'
Usefull when you want to provide a form for a user to search on specific column
<%= form_tag url: posts_path, method: :get do |f| %>
<%= f.text_field PostsDatatable.form_field_name('users.email'), 'my@email.com' %>
<%= f.submit 'Search' %>
<% end %>
For global search you can use [search][value]
for example
<%= form_tag url: posts_path, method: :get do |f| %>
<%= f.text_field '[search][value]', 'my@email.com' %>
<%= f.submit 'Search' %>
<% end %>
If you need, you can fetch params with this helper and for example, show the
link for that record
if @datatable.param_get("locations.name").present? &&
(location = Location.find_by(name: @datatable.param_get("locations.name")))
page_description "For <a href='#{location_path(location)}'>#{location.name}</a>"
breadcrumb "Dashboard": dashboard_path, location.name => location_path(location), "Package Sales": nil
else
breadcrumb "Dashboard": dashboard_path, "Package Sales": nil
end
For other filter params which are not in columns you can use non table params
# on dashboard
<%= link_to 'Locations', isp_locations_path(non_table_filter: "reseller_operator_id:#{@reseller_operator.id}") %>
# on index
if params[:non_table_filter].present? &&
(reseller_operator = ResellerOperator.find(params[:non_table_filter].split(":").second))
page_description "For <a href='#{reseller_operator_path(reseller_operator)}'>#{reseller_operator.company_name}</a>"
breadcrumb 'Dashboard' => isp_dashboard_path, reseller_operator.company_name => reseller_operator_path(reseller_operator), 'Locations' => nil
else
breadcrumb 'Dashboard' => isp_dashboard_path, 'Locations' => nil
end
# in datatables
case @view.params[:non_table_filter].to_s.split(':').first
when 'reseller_operator_id'
reseller_operator = ResellerOperator.find @view.params[:non_table_filter].split(':').second
all_isp_locations = all_isp_locations.where(reseller_operator: reseller_operator)
end
You can set filters on datatable even params are blank, for example
def index
view_context.params.merge! PostsDatatable.param_set 'posts.start_date', Time.zone.today..(Time.zone.today + 1.year)
@datatable = PostsDatatable.new view_context
end
Inside datatable you can access params using @view.params
To set the order (custom sort) in a link you can use:
<%= link_to 'Sort by email', \
posts_path(
PostsDatatable.order_set('users.email', :desc)
)
%>
Saved Preferences (optional)
You can save column order and page length in User.preferences field so
next time user navigate to same page will see the same order and page length. It
can be string
or text
, or some advance hstore
or jsonb
.
rails g migration add_preferences_to_users preferences:string
# app/models/user.rb
class User
# no need to serialize if it is hstore or jsonb
serialize :preferences, Hash
end
# app/datatables/posts_datatable.rb
class PostsDatatable
def preferences_holder
@view.current_user
end
def preferences_field
# this is default so do not need to define unless you use different field
:preferences
end
end
It will store order and page length inside dt_preferences
on
user.preferences
.
Additional data to json response
You can override additional_data_for_json
that will be included in json
response
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def additional_data_for_json
{ columns: columns }
end
end
Different response for mobile app
You can use condition to provide different data, for example let's assume
@view.api_user?
returns true for json requests from mobile app. Here is
example that provides different columns for normal and api_user.
Note that when you are using different columns for some reason in @view
you
need to provide view in param_set
so it can check the same conditionals.
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def columns
@view.api_user? ? columns_for_api : columns_for_html
end
def columns_for_html
balance = @view.current_location
{}
else
{ 'integer_calculated_in_db.balance_amount_in_cents': { search: false, title: 'Balance' } }
end
{
'subscribers.subscriberid': {},
**balance,
'subscribers.name': {},
}
end
def columns_for_api
{
'subscribers.id': {},
'subscribers.subscriberid': {},
'subscribers.name': {},
}
end
def rows(filtered)
@view.api_user? ? rows_for_api(filtered) : rows_for_html(filtered)
end
def rows_for_html(filtered)
filtered.map do |subscriber|
balance = if Constant.STILL_WITH_OLD_CODE
[]
else
[@view.humanized_money_with_symbol(Money.new(location.balance_amount_in_cents)) : 'NA']
end
[
@view.link_to(subscriber.subscriberid, subscriber),
*balance,
subscriber.name,
]
end
end
def rows_for_api(filtered)
filtered.map do |subscriber|
[
subscriber.id,
subscriber.subscriberid,
subscriber.name,
]
end
end
def additional_data_for_json
@view.api_user? ? columns_for_api : nil
end
end
# On some dashboard page provide @view using `self` to param_set
link_to 'Active', search_posts_path(PostsDatatable.param_set('posts.status',
:active, self))
Test your datatables
Here is example how you can test
# test/datatables/posts_datatable_test.rb
require 'test_helper'
class PostsDatatableTest < ActiveSupport::TestCase
def sample_view_params(params = {})
OpenStruct.new(
params: params
)
end
test 'find kayaking posts' do
results = PostsDatatable.new(sample_view_params(activity_names: [activities(:kayaking).name])).all_items
assert_includes results, posts(:kayak_regata)
refute_includes results, posts(:half_marathon)
end
end
You can also write controller test
# test/controllers/posts_controller_test.rb
require 'test_helper'
class PostsControllerTest < ActiveSupport::TestCase
test "#index" do
get posts_path
assert_response :success
end
test "#search" do
post = posts(:post)
post search_posts_path(search: { value: post.title })
assert_response :success
response_json = JSON.parse response.body
assert_equal 1, response_json["data"].size
end
end
Exceptions
To catch errors from TrkDatables you can
# app/controllers/application_controller.rb
rescue_from TrkDatatables::Error do |exception|
respond_to do |format|
format.html { redirect_to root_path, alert: exception.message }
format.json { render json: { error_message: exception.message, error_status: :bad_request }, status: :bad_request }
end
end
Debug
You can override some of the methos and put byebug, for example
# app/datatables/posts_datatable.rb
class PostsDatatable < TrkDatatables::ActiveRecord
def as_json(_ = nil)
byebug
super
end
end
Neo4j
User .as(:users)
so we know which node us used
class UsersDatatable < TrkDatatables::Neo4j
def columns
{
'users.email': {},
'users.created_at': {},
}
end
def all_items
User
.as(:users)
.with_associations(moves: { from_group: [:location], to_groups: [:location] })
end
def rows(filtered)
filtered.map do |user|
[
@view.link_to(user.email, @view.admin_user_path(user)),
user.created_at.to_s(:long),
]
end
end
end
Alternatives
There are alternatives, for example:
Development
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run all tests.
# all
rake
# specific file
ruby -I test test/trk_datatables/base_test.rb
# specific test that matches additional
ruby -I test test/trk_datatables/base_test.rb -n /additional/
You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To
release a new version, update the version number and then publish with
vi lib/trk_datatables/version.rb
bundle
git commit -am'...'
bundle exec rake release
which will create a git tag for the version, push git commits and tags, and deploy the
.gem
file to rubygems.org.
Instead of installing you can point directly to your path
# Gemfile
# for index, ordering, pagination and searching
# gem 'trk_datatables', '~>0.1'
# no need to `bundle update trk_datatables` when switch to local
gem 'trk_datatables', path: '~/gems/trk_datatables'
To generate docs you can run
yard server
# clear cache
rm -rf .yardoc/
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/trkin/trk_datatables. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
TODOs
Column filtering with dropdowns https://datatables.net/extensions/searchpanes/examples/advanced/columnFilter.html
Adding graphs https://datatables.net/forums/discussion/comment/123621/#Comment_123621
https://datatables.net/examples/api/highcharts.html
Run custom JS on next page or search, for example load tooltip.
Check issue when we use param_set for select_options field since select option
does not get selected and next page will show all items instead of only ones
with selected field.
License
The gem is available as open source under the terms of the MIT License.
Code of Conduct
Everyone interacting in the TrkDatatables project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.