Sha256: 687bfb55fc6e60a1644cab8f313444a3a040aa77d222d4f2b0fab9b8c282080c

Contents?: true

Size: 1.11 KB

Versions: 36

Compression:

Stored size: 1.11 KB

Contents

<%= content_tag :div,
  data: {
    model_name: @resource.model_name.to_s,
    resource_name: @resource.class.to_s,
    record_id: @resource.record_param,
    selected_resources_name: @resource.model_key,
    selected_resources: [@resource.record_param],
    **@resource.stimulus_data_attributes
  } do %>
  <%= content_tag :div, class: 'space-y-12' do %>
    <%= render_cards_component %>
    <% @resource.get_items.each_with_index do |item, index| %>
      <%= render Avo::Items::SwitcherComponent.new(
        resource: @resource,
        reflection: @reflection,
        item: item,
        index: index + 1,
        view: @view,
        parent_resource: @parent_resource,
        parent_record: @parent_record,
        parent_component: self,
        actions: @actions
      )%>
    <% end %>
  <% end %>
  <% if should_display_invalid_fields_errors? %>
    <turbo-stream action="append" target="alerts">
      <template>
        <% @resource.invalid_fields.each do |error| %>
          <%= render Avo::AlertComponent.new :error, error[:message] %>
        <% end %>
      </template>
    </turbo-stream>
  <% end %>
<% end %>

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
avo-3.16.1 app/components/avo/views/resource_show_component.html.erb
avo-3.16.0 app/components/avo/views/resource_show_component.html.erb
avo-3.15.7 app/components/avo/views/resource_show_component.html.erb
avo-3.15.6 app/components/avo/views/resource_show_component.html.erb
avo-3.15.5 app/components/avo/views/resource_show_component.html.erb
avo-3.15.4 app/components/avo/views/resource_show_component.html.erb
avo-3.15.3 app/components/avo/views/resource_show_component.html.erb
avo-3.15.2 app/components/avo/views/resource_show_component.html.erb
avo-3.15.1 app/components/avo/views/resource_show_component.html.erb
avo-3.15.0 app/components/avo/views/resource_show_component.html.erb
avo-3.14.5 app/components/avo/views/resource_show_component.html.erb
avo-3.14.4 app/components/avo/views/resource_show_component.html.erb
avo-3.14.3 app/components/avo/views/resource_show_component.html.erb
avo-3.14.2 app/components/avo/views/resource_show_component.html.erb
avo-3.14.1 app/components/avo/views/resource_show_component.html.erb
avo-3.14.0 app/components/avo/views/resource_show_component.html.erb
avo-3.13.7 app/components/avo/views/resource_show_component.html.erb
avo-3.13.6 app/components/avo/views/resource_show_component.html.erb
avo-3.13.5 app/components/avo/views/resource_show_component.html.erb
avo-3.13.4 app/components/avo/views/resource_show_component.html.erb