ActiveAdminFiltersVisibility
ActiveAdmin plugin allows to hide any filter from Filters Sidebar.
Useful when page has many filters, but admin user needs only some of them.
Every filter saves its state using browser's LocalStorage.
Also you can use drag&drop to change filters order
Install
In Gemfile add
gem 'active_admin_filters_visibility', git: 'https://github.com/activeadmin-plugins/active_admin_filters_visibility'
in the
app/assets/javascript/active_admin.coffee
and
#= require active_admin_filters_visibility
and initialize it with:
$(document).ready(function() {
$('#filters_sidebar_section').activeAdminFiltersVisibility();
});
Customization
$('.jquery-selector').activeAdminFiltersVisibility(options)
ActiveAdminFiltersVisibility is a standard jQuery Plugin, and accepts some "options" as a hash.
Default is:
{
sidebarUniqId: function() {
return window.location.pathname;
},
icon: '☶',
iconClass: '',
iconStyle: '',
skipDefaultCss: false,
title: 'Visibility:',
ordering: false,
orderHint: 'Drag&Drop to reorder filters',
resetButtonTitle: 'Reset'
}
You can change icon - this is a HTML text or symbol. You can pass empty string and customize it with your CSS.
Or you can set class("iconClass") for icon or inline styles("iconStyle").
This plugin has minimal CSS styling.
In case you want to use custom CSS, default styling can be ignored:
set skipDefaultCss
to true
Ordering
By default ordering is disabled. You can turn it: set option ordering
to true
.
Texts
Change text in options: title
, orderHint
and resetButtonTitle
Dont hide filters which has selected value
If filter has selected value - that filter will not be hidden on page reload. Even if "visibility checkbox" is unchecked.
This was made for preventing unpredictable filtering: for example when user came to page by some link with predefined filtering params.
All default filters types(string, numeric, date range, etc.) are implemented.
But if you have some specific filter, you need to add custom handler.
For example you have customized filter by ID.
And you want to consider "1" as default value and allow hiding it.
In this case you should add uniq class to wrapper.
filter :id, wrapper_html: { class: 'filter_customized_id' }
$.fn.activeAdminFiltersVisibility.registerFilterType('customized_id', function(elWrapper) {
var inputValue = elWrapper.find('input').val();
return inputValue != '1';
});
Saving state
Plugin saves list of hidden filters in LocalStorage, using jQuery plugin "Lockr" https://github.com/tsironis/lockr
If you need to save this in cookies or user profile, you should write your own implementation - rewrite "$.fn.activeAdminFiltersVisibility.storage".
For example:
$.fn.activeAdminFiltersVisibility.storage = function(storageUniqId) {
var myStorage = new MyCustomizedStorage(storageUniqId);
return {
add: function(labelText) {
myStorage.add(labelText);
},
remove: function(labelText) {
myStorage.remove(labelText);
},
has: function(labelText) {
return myStorage.find(labelText) ? true : false;
},
all: function() {
return myStorage.getAll();
},
any: function() {
return this.all().length > 0;
}
}
};