%= content_tag :div,
class: class_names("index-#{@index_params[:view_type]}-view", {"has-record-selector": @resource.record_selector}),
data: {
component_name: self.class.to_s.underscore,
model_name: @resource.model_name.to_s,
resource_name: @resource.class.to_s,
**@resource.stimulus_data_attributes
} do %>
<%= render_cards_component %>
<%= render Avo::PanelComponent.new(
description: description,
cover_photo: resource.cover_photo,
data: {component: "resources-index"},
display_breadcrumbs: (@reflection.blank? && @parent_resource.blank?) || (@reflection.present? && !helpers.turbo_frame_request?)
) do |c| %>
<% c.with_name_slot do %>
<%= render Avo::PanelNameComponent.new name: title, url: (params[:turbo_frame].present? && linkable?) ? field.frame_url(add_turbo_frame: false) : nil, target: :_blank do |panel_name_component| %>
<% panel_name_component.with_body do %>
<% if reloadable %>
<%= button_tag data: { controller: "panel-refresh", action: "click->panel-refresh#refresh" } do %>
<%= svg "heroicons/outline/arrow-path", class: "ml-2 text-2xl h-6 " %>
<% end %>
<% end %>
<% end %>
<% end %>
<% end %>
<% c.with_tools do %>
<% @resource.render_index_controls(item: singular_resource_name.downcase).each do |control| %>
<%= render_control control %>
<% end %>
<% end %>
<% c.with_body do %>
<%= render scopes_list if can_render_scopes? %>
">
<% if show_search_input %>
<%= render partial: "avo/partials/resource_search", locals: {resource: @resource.route_key, via_reflection: via_reflection} %>
<% else %>
<%# Offset for the space-y-2 property when the search is missing %>
<% end %>
<%= render_dynamic_filters_button %>
<%= render Avo::FiltersComponent.new filters: @filters, resource: @resource, applied_filters: @applied_filters, parent_record: @parent_record %>
<%= render partial: "avo/partials/view_toggle_button", locals: { available_view_types: available_view_types, view_type: view_type, turbo_frame: @turbo_frame } %>
<% if has_dynamic_filters? %>
<%= render Avo::DynamicFilters::FiltersComponent.new resource: resource, turbo_frame: @turbo_frame, dynamic_filters_component_id: dynamic_filters_component_id, parent_record: @parent_record, parent_resource: @parent_resource %>
<% end %>
<% if view_type.to_sym == :table %>
<% if @resources.present? %>
<%= render(@resource.resolve_component(Avo::Index::ResourceTableComponent).new(resources: @resources, resource: @resource, reflection: @reflection, parent_record: @parent_record, parent_resource: @parent_resource, pagy: @pagy, query: @query, actions: @actions)) %>
<% else %>
<%= helpers.empty_state by_association: params[:related_name].present?, view_type: view_type, add_background: true %>
<% end %>
<% end %>
<% end %>
<% c.with_bare_content do %>
<% if view_type.to_sym == :map %>
<% if @resources.present? %>
<%= render(@resource.resolve_component(Avo::Index::ResourceMapComponent).new(resources: @resources, resource: @resource, reflection: @reflection, parent_record: @parent_record, parent_resource: @parent_resource, pagy: @pagy, query: @query)) %>
<% else %>
<%= helpers.empty_state by_association: params[:related_name].present?, view_type: view_type, add_background: true %>
<% end %>
<% end %>
<% if view_type.to_sym == :table || view_type.to_sym == :map %>
<% if @records.present? %>
<%= render Avo::PaginatorComponent.new pagy: @pagy, turbo_frame: @turbo_frame, index_params: @index_params, resource: @resource, parent_record: @parent_record, discreet_pagination: field&.discreet_pagination %>
<% end %>
<% end %>
<% if view_type.to_sym == :grid %>
<%= render Avo::Index::ResourceGridComponent.new(resources: @resources, resource: @resource, reflection: @reflection, parent_record: @parent_record, parent_resource: @parent_resource, actions: @actions) %>
<%= render Avo::PaginatorComponent.new pagy: @pagy, turbo_frame: @turbo_frame, index_params: @index_params, resource: @resource, parent_record: @parent_record, discreet_pagination: field&.discreet_pagination %>
<% end %>
<% end %>
<% end %>
<% end %>