mastodon/app/helpers/admin/filter_helper.rb

32 lines
859 B
Ruby
Raw Normal View History

2016-12-13 13:42:10 +01:00
# frozen_string_literal: true
module Admin::FilterHelper
2017-05-17 03:00:34 +02:00
ACCOUNT_FILTERS = %i(local remote by_domain silenced suspended recent username display_name email ip).freeze
REPORT_FILTERS = %i(resolved account_id target_account_id).freeze
FILTERS = ACCOUNT_FILTERS + REPORT_FILTERS
2016-12-13 13:42:10 +01:00
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)
2016-12-13 13:42:10 +01:00
end
def table_link_to(icon, text, path, options = {})
link_to safe_join([fa_icon(icon), text]), path, options.merge(class: 'table-action-link')
2016-12-13 13:42:10 +01:00
end
private
def filter_params(more_params)
params.permit(FILTERS).merge(more_params)
end
def filter_link_class(new_url)
filtered_url_for(params) == new_url ? 'selected' : ''
end
def filtered_url_for(params)
url_for filter_params(params)
end
end