Class: Avo::FiltersComponent

Inherits:
ViewComponent::Base
  • Object
show all
Includes:
ApplicationHelper
Defined in:
app/components/avo/filters_component.rb

Instance Method Summary collapse

Methods included from ApplicationHelper

#a_button, #a_link, #button_classes, #card_classes, #chart_color, #decode_filter_params, #empty_state, #encode_filter_params, #frame_id, #get_model_class, #input_classes, #mount_path, #number_to_social, #render_license_warning, #root_path_without_url, #svg, #white_panel_classes

Methods included from ResourcesHelper

#field_wrapper, #filter_wrapper, #index_field_wrapper, #item_select_all_input, #item_selector_init, #item_selector_input, #resource_grid, #resource_table

Constructor Details

#initialize(filters: [], resource: nil, applied_filters: [], parent_record: nil) ⇒ FiltersComponent

Returns a new instance of FiltersComponent.



6
7
8
9
10
11
# File 'app/components/avo/filters_component.rb', line 6

def initialize(filters: [], resource: nil, applied_filters: [], parent_record: nil)
  @filters = filters
  @resource = resource
  @applied_filters = applied_filters
  @parent_record = parent_record
end

Instance Method Details

#render?Boolean

Returns:

  • (Boolean)


13
14
15
# File 'app/components/avo/filters_component.rb', line 13

def render?
  @filters.present?
end

#reset_pathObject



17
18
19
20
21
22
23
24
# File 'app/components/avo/filters_component.rb', line 17

def reset_path
  # If come from a association page
  if @parent_record.present?
    helpers.related_resources_path(@parent_record, @parent_record, encoded_filters: nil, reset_filter: true, keep_query_params: true)
  else
    helpers.resources_path(resource: @resource, encoded_filters: nil, reset_filter: true, keep_query_params: true)
  end
end