Sha256: c788c289a19667da24b285d8688a3620addefcca27549807aa1d2f4a7d1805ce

Contents?: true

Size: 1.01 KB

Versions: 13

Compression:

Stored size: 1.01 KB

Contents

<%= content_tag :div,
  class: spree_variant_editor.css_classes,
  data: spree_variant_editor.data_attributes do %>
  <%= element_form.fields_for(:ingredients, spree_variant_editor.ingredient) do |f| %>
    <%= ingredient_label(spree_variant_editor, :variant_id) %>
    <%= f.text_field :variant_id,
      value: spree_variant_editor.variant&.id,
      id: spree_variant_editor.form_field_id(:variant_id),
      class: 'alchemy_selectbox full_width' %>
  <% end %>
<% end %>

<script>
  $('#<%= spree_variant_editor.form_field_id(:variant_id) %>').alchemyVariantSelect({
    placeholder: "<%= Alchemy.t(:search_variant, scope: 'solidus') %>",
    apiToken: "<%= current_alchemy_user.spree_api_key %>",
    baseUrl: "<%= spree.api_variants_path %>",
    query_params: <%== spree_variant_editor.settings[:query_params].to_json %>,
    <% if spree_variant_editor.variant %>
    initialSelection: {
      id: <%= spree_variant_editor.variant.id %>,
      text: "<%= spree_variant_editor.variant.name %>"
    }
    <% end %>
  })
</script>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
alchemy-solidus-7.1.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-7.0.1 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-7.0.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.3.2 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.3.1 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.3.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.2.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.1.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.0.1 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-6.0.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-5.0.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-4.1.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb
alchemy-solidus-4.0.0 app/views/alchemy/ingredients/_spree_variant_editor.html.erb