Files
danbooru/app/views/pool_orders/edit.html.erb
evazion 1b30b71a07 posts: refactor post previews to use ViewComponent.
Refactor the post preview html to use the ViewComponent framework. This
lets us encapsulate all the HTML, CSS, and helper methods for a UI
component in a single place.

See https://viewcomponent.org.
2021-01-14 21:17:57 -06:00

31 lines
976 B
Plaintext

<% page_title "Order Pool" %>
<%= render "pools/secondary_links" %>
<div id="c-pool-orders">
<div id="a-edit">
<h1>Order Pool: <%= @pool.pretty_name %></h1>
<%= edit_form_for(@pool, format: :js, html: { id: "ordering-form" }) do |f| %>
<% if @pool.post_count <= Pool::POOL_ORDER_LIMIT %>
<p>Drag and drop the list below to determine ordering.</p>
<%= render "posts/partials/common/inline_blacklist" %>
<ul id="sortable">
<% @pool.posts.each do |post| %>
<li class="ui-state-default" id="pool[post_ids]_<%= post.id %>">
<%= post_preview(post, show_deleted: true).presence || "Hidden: Post ##{post.id}" %>
</li>
<% end %>
</ul>
<% else %>
<p>Reorder the post IDs in the text box below to reorder the pool.</p>
<%= f.input :post_ids_string, as: :text, label: "Posts" %>
<% end %>
<%= f.submit "Save" %>
<% end %>
</div>
</div>