Sha256: 187d264878645683d9626b16b9332454280e6a0f662c422534216ad451890bc6

Contents?: true

Size: 1.94 KB

Versions: 4

Compression:

Stored size: 1.94 KB

Contents

<div>
  <% @resource.panels.each do |resource_panel| %>
    <%= form_with model: @resource.model,
      scope: @resource.form_scope,
      url: helpers.resources_path(
        resource: @resource,
        via_relation_class: params[:via_relation_class],
        via_relation: params[:via_relation],
        via_resource_id: params[:via_resource_id]
      ),
      local: true,
      multipart: true do |form| %>
      <%= render Avo::ReferrerParamsComponent.new back_path: back_path %>
      <%= render Avo::PanelComponent.new(title: resource_panel[:name], description: @resource.resource_description, display_breadcrumbs: true) do |c| %>
        <% c.tools do %>
          <div class="flex justify-end space-x-2">
            <%= a_link back_path, icon: 'arrow-left' do %>
              <%= t('avo.cancel').capitalize %>
            <% end %>
            <% if can_see_the_save_button? %>
              <%= a_button color: 'green', spinner: true, type: :submit, icon: 'save' do %>
                <%= t('avo.save').capitalize %>
              <% end %>
            <% end %>
          </div>
        <% end %>
        <% if Avo.configuration.buttons_on_form_footers %>
          <% c.footer_tools do %>
            <%= a_link back_path, icon: 'arrow-left' do %>
              <%= t('avo.cancel').capitalize %>
            <% end %>
            <% if can_see_the_save_button? %>
              <%= a_button color: :green, spinner: true, type: :submit, icon: 'save' do %>
                <%= t('avo.save').capitalize %>
              <% end %>
            <% end %>
          <% end %>
        <% end %>
        <% c.body do %>
          <div class="divide-y">
            <% @resource.get_fields.each_with_index do |field, index| %>
              <%= render field.component_for_view(:edit).new(field: field, resource: @resource, index: index, form: form) unless field.computed %>
            <% end %>
          </div>
        <% end %>
      <% end %>
    <% end %>
  <% end %>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
avo-2.1.2.pre2 app/components/avo/views/resource_new_component.html.erb
avo-2.1.2.pre1 app/components/avo/views/resource_new_component.html.erb
avo-2.1.1 app/components/avo/views/resource_new_component.html.erb
avo-2.1.0 app/components/avo/views/resource_new_component.html.erb