0
0
Fork 0

Togglable filter links (#4021)

* Togglable filter links

* Rename is_selected to selected?
This commit is contained in:
のら 2017-07-07 07:48:09 +09:00 committed by Eugen Rochko
parent 185b41beb4
commit 2d6128672f
2 changed files with 29 additions and 7 deletions

View file

@ -6,15 +6,21 @@ module Admin::FilterHelper
FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS
def filter_link_to(text, more_params)
new_url = filtered_url_for(more_params)
link_to text, new_url, class: filter_link_class(new_url)
def filter_link_to(text, link_to_params, link_class_params = link_to_params)
new_url = filtered_url_for(link_to_params)
new_class = filtered_url_for(link_class_params)
link_to text, new_url, class: filter_link_class(new_class)
end
def table_link_to(icon, text, path, options = {})
link_to safe_join([fa_icon(icon), text]), path, options.merge(class: 'table-action-link')
end
def selected?(more_params)
new_url = filtered_url_for(more_params)
filter_link_class(new_url) == 'selected' ? true : false
end
private
def filter_params(more_params)