Sha256: b187968db034bbe1b1645d917951fc0079288ac472e2b8b4fbdd05d18e719b19

Contents?: true

Size: 1.22 KB

Versions: 9

Compression:

Stored size: 1.22 KB

Contents

<%= turbo_frame_tag 'attach_modal' do %>
  <%= form_with scope: 'fields',
    url: "/avo/resources/#{params[:resource_name]}/#{params[:id]}/#{params[:related_name]}/",
    data: {
      'turbo-frame': '_top'
    } do |form| %>
    <%= render Avo::ModalComponent.new do |c| %>
      <% c.with :heading do %>
        <%= t('avo.choose_item', { item: params[:related_name].downcase }) %>
      <% end %>

      <div class="flex-1 flex items-center justify-center px-8 text-lg mt-8 mb-12">
        <div class="flex-1 flex flex-col items-center justify-center px-24 text-base">
          <%= form.select :related_id, options_for_select(@options.map { |o| [o[:label], o[:value]] }, nil),
            {
              include_blank: t('avo.choose_an_option'),
            },
            {
              class: input_classes('w-full'),
            }
          %>
        </div>
      </div>

      <%#= form.hidden_field :resource_ids, value: params[:resource_ids], 'data-action-target': 'resourceIds' %>

      <% c.with :controls do %>
        <%= a_button t('avo.cancel'), 'data-action': 'click->modal#close', size: :sm %>
        <%= a_button t('avo.attach'), type: :submit, color: :green, size: :sm %>
      <% end %>
    <% end %>
  <% end %>
<% end %>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
avo-1.0.0 app/views/avo/relations/new.html.erb
avo-0.5.0.beta15 app/views/avo/relations/new.html.erb
avo-0.5.0.beta14 app/views/avo/relations/new.html.erb
avo-0.5.0.beta13 app/views/avo/relations/new.html.erb
avo-0.5.0.beta12 app/views/avo/relations/new.html.erb
avo-0.5.0.beta11 app/views/avo/relations/new.html.erb
avo-0.5.0.beta10 app/views/avo/relations/new.html.erb
avo-0.5.0.beta9 app/views/avo/relations/new.html.erb
avo-0.5.0.beta8 app/views/avo/relations/new.html.erb