noesya/osuny

View on GitHub
app/views/admin/communication/blocks/components/post/_edit.html.erb

Summary

Maintainability
Test Coverage

<%
posts = osuny_collection(
  block.about.website.posts,
  localized: true
) 
%>
<label  class="form-label <%= 'visually-hidden' if label.blank? %>"
        :for="<%= dom_id.html_safe %>">
  <%= label %>
</label>
<select :id="<%= dom_id.html_safe %>"
        class="form-select select"
        v-model="<%= model %>.<%= property %>">
  <% if placeholder %>
    <option value="" disabled><%= placeholder %></option>
  <% end %>
  <% posts.each do |post| %>
    <option value="<%= post.last %>"><%= post.first %></option>
  <% end %>
</select>