Sha256: 411099057295b137abaedc48a4738ab3361ffc55295e25a5e243308cc243c26f

Contents?: true

Size: 1.11 KB

Versions: 63

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.id,
    selected_resources_name: @resource.model_key,
    selected_resources: [@resource.record.to_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

63 entries across 63 versions & 1 rubygems

Version Path
avo-3.10.10 app/components/avo/views/resource_show_component.html.erb
avo-3.10.9 app/components/avo/views/resource_show_component.html.erb
avo-3.10.8 app/components/avo/views/resource_show_component.html.erb
avo-3.10.7 app/components/avo/views/resource_show_component.html.erb
avo-3.10.6 app/components/avo/views/resource_show_component.html.erb
avo-3.10.5 app/components/avo/views/resource_show_component.html.erb
avo-3.10.4 app/components/avo/views/resource_show_component.html.erb
avo-3.10.3 app/components/avo/views/resource_show_component.html.erb
avo-3.10.2 app/components/avo/views/resource_show_component.html.erb
avo-3.10.1 app/components/avo/views/resource_show_component.html.erb
avo-3.10.0 app/components/avo/views/resource_show_component.html.erb
avo-3.9.2 app/components/avo/views/resource_show_component.html.erb
avo-3.9.1 app/components/avo/views/resource_show_component.html.erb
avo-3.8.2 app/components/avo/views/resource_show_component.html.erb
avo-3.9.0 app/components/avo/views/resource_show_component.html.erb
avo-3.8.1 app/components/avo/views/resource_show_component.html.erb
avo-3.8.0 app/components/avo/views/resource_show_component.html.erb
avo-3.6.4 app/components/avo/views/resource_show_component.html.erb
avo-3.6.3 app/components/avo/views/resource_show_component.html.erb
avo-3.6.2 app/components/avo/views/resource_show_component.html.erb