Sha256: cde96dedcb33630aa51173a3e859168378f38f8bee9e8b7be78c5fa32b257e9b

Contents?: true

Size: 706 Bytes

Versions: 82

Compression:

Stored size: 706 Bytes

Contents

<div class="w-full">
  <% if @resources.present?%>
    <table class="w-full px-4 overflow-hidden">
      <%= render partial: 'avo/partials/table_header', locals: {fields: @resource.get_fields(reflection: @reflection)} %>
      <tbody>
        <% @resources.each_with_index do |resource, index| %>
          <% cache_if Avo.configuration.cache_resources_on_index_view, resource.cache_hash(@parent_model) do %>
            <%= render Avo::Index::TableRowComponent.new(resource: resource, reflection: @reflection, parent_model: @parent_model) %>
          <% end %>
        <% end %>
      </tbody>
    </table>
  <% else %>
    <%= helpers.empty_state @resource.name.downcase.pluralize %>
  <% end %>
</div>

Version data entries

82 entries across 82 versions & 1 rubygems

Version Path
avo-1.2.4 app/components/avo/index/resource_table_component.html.erb
avo-1.2.3 app/components/avo/index/resource_table_component.html.erb
avo-1.3.0.pre.1 app/components/avo/index/resource_table_component.html.erb
avo-1.2.2 app/components/avo/index/resource_table_component.html.erb
avo-1.1.0 app/components/avo/index/resource_table_component.html.erb
avo-1.1.0.pre.1 app/components/avo/index/resource_table_component.html.erb
avo-1.0.5 app/components/avo/index/resource_table_component.html.erb
avo-1.0.4 app/components/avo/index/resource_table_component.html.erb
avo-1.0.2 app/components/avo/index/resource_table_component.html.erb
avo-1.0.1 app/components/avo/index/resource_table_component.html.erb
avo-1.0.0 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta15 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta14 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta13 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta12 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta11 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta10 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta9 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta8 app/components/avo/index/resource_table_component.html.erb
avo-0.5.0.beta7 app/components/avo/index/resource_table_component.html.erb